Fabio Estevam | e2d282a | 2013-03-15 10:43:48 +0000 | [diff] [blame^] | 1 | U-Boot for Wandboard |
| 2 | -------------------- |
| 3 | |
| 4 | This file contains information for the port of U-Boot to the Wandboard. |
| 5 | |
| 6 | Wandboard is a development board that has two variants: one version based |
| 7 | on mx6 dual lite and another one based on mx6 solo. |
| 8 | |
| 9 | For more details about Wandboard, please refer to: |
| 10 | http://www.wandboard.org/ |
| 11 | |
| 12 | Building U-boot for Wandboard |
| 13 | ----------------------------- |
| 14 | |
| 15 | To build U-Boot for the Wandboard Dual Lite version: |
| 16 | |
| 17 | $ make wanboard_dl_config |
| 18 | $ make |
| 19 | |
| 20 | To build U-Boot for the Wandboard Solo version: |
| 21 | |
| 22 | $ make wanboard_solo_config |
| 23 | $ make |
| 24 | |
| 25 | Flashing U-boot into the SD card |
| 26 | -------------------------------- |
| 27 | |
| 28 | - After the 'make' command completes, the generated 'u-boot.imx' binary must be |
| 29 | flashed into the SD card; |
| 30 | |
| 31 | $ sudo dd if=u-boot.imx of=/dev/mmcblk0 bs=512 seek=2; sync |
| 32 | |
| 33 | (Note - the SD card node may vary, so adjust this as needed). |
| 34 | |
| 35 | - Insert the SD card into the slot located in the bottom of the board (same side |
| 36 | as the mx6 processor) |
| 37 | |
| 38 | - Connect the serial cable to the host PC |
| 39 | |
| 40 | - Power up the board and U-boot messages will appear in the serial console. |