1How to use and build U-Boot on mx6sabreauto 2------------------------------------------- 3 4mx6sabreauto_defconfig target supports mx6q/mx6dl/mx6qp sabreauto variants. 5 6In order to build it: 7 8$ make mx6sabreauto_defconfig 9 10$ make 11 12This will generate the SPL and u-boot.img binaries. 13 14- Flash the SPL binary into the SD card: 15 16$ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync 17 18- Flash the u-boot.img binary into the SD card: 19 20$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync 21