Vanessa Maegima | d7c1150 | 2017-06-29 09:33:46 -0300 | [diff] [blame^] | 1 | How to use and build U-Boot on mx6sabreauto |
| 2 | ------------------------------------------- |
| 3 | |
| 4 | mx6sabreauto_defconfig target supports mx6q/mx6dl/mx6qp sabreauto variants. |
| 5 | |
| 6 | In order to build it: |
| 7 | |
| 8 | $ make mx6sabreauto_defconfig |
| 9 | |
| 10 | $ make |
| 11 | |
| 12 | This 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 |