[U-Boot] MKIMAGE u-boot.imx build error
Fabio Estevam
festevam at gmail.com
Wed Oct 29 15:18:32 CET 2014
On Wed, Oct 29, 2014 at 11:52 AM, DaveKucharczyk
<david.kucharczyk at gmail.com> wrote:
> I’ve triple checked the pads and flash header. I dd the resulting,
> non-padded, u-boot.imx image to sd card by “dd if=u-boot.imx of=/dev/sdd
> seek=2 && sync”, but I get no life.
This command is not correct. You missed the bs=512 part.
It should be:
dd if=u-boot.imx of=/dev/sdX bs=512 seek=2; sync
More information about the U-Boot
mailing list