On Fri, Jul 17, 2015 at 5:31 PM, cleeds <[email protected]> wrote: > I changed the oscillator on my BBB from 24MHz to 25MHz, so had to rebuild > u-boot in order to modify the PLL registers. Hence, I have a new MLO and > u-boot.img. I am running the recent debian 3.8.13-bone70. The kernel and > file system are fine as-is in emmc. If I look at /boot/uboot/ it appears > empty. How do I update just the MLO and u-boot.img in the boot partition of > emmc?
sudo dd if=./u-boot/MLO of=/dev/mmcblk1 count=1 seek=1 bs=128k sudo dd if=./u-boot/u-boot.img of=/dev/mmcblk1 count=2 seek=1 bs=384k Regards, -- Robert Nelson https://rcn-ee.com/ -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
