1e2d282a1SFabio EstevamU-Boot for Wandboard 2e2d282a1SFabio Estevam-------------------- 3e2d282a1SFabio Estevam 4e2d282a1SFabio EstevamThis file contains information for the port of U-Boot to the Wandboard. 5e2d282a1SFabio Estevam 6e2d282a1SFabio EstevamWandboard is a development board that has two variants: one version based 7e2d282a1SFabio Estevamon mx6 dual lite and another one based on mx6 solo. 8e2d282a1SFabio Estevam 9e2d282a1SFabio EstevamFor more details about Wandboard, please refer to: 10e2d282a1SFabio Estevamhttp://www.wandboard.org/ 11e2d282a1SFabio Estevam 12e2d282a1SFabio EstevamBuilding U-boot for Wandboard 13e2d282a1SFabio Estevam----------------------------- 14e2d282a1SFabio Estevam 15e2d282a1SFabio EstevamTo build U-Boot for the Wandboard Dual Lite version: 16e2d282a1SFabio Estevam 17*8c498377SLuka Perkov$ make wandboard_dl_config 18e2d282a1SFabio Estevam$ make 19e2d282a1SFabio Estevam 20e2d282a1SFabio EstevamTo build U-Boot for the Wandboard Solo version: 21e2d282a1SFabio Estevam 22*8c498377SLuka Perkov$ make wandboard_solo_config 23e2d282a1SFabio Estevam$ make 24e2d282a1SFabio Estevam 25e2d282a1SFabio EstevamFlashing U-boot into the SD card 26e2d282a1SFabio Estevam-------------------------------- 27e2d282a1SFabio Estevam 28e2d282a1SFabio Estevam- After the 'make' command completes, the generated 'u-boot.imx' binary must be 29e2d282a1SFabio Estevamflashed into the SD card; 30e2d282a1SFabio Estevam 31e2d282a1SFabio Estevam$ sudo dd if=u-boot.imx of=/dev/mmcblk0 bs=512 seek=2; sync 32e2d282a1SFabio Estevam 33e2d282a1SFabio Estevam(Note - the SD card node may vary, so adjust this as needed). 34e2d282a1SFabio Estevam 35e2d282a1SFabio Estevam- Insert the SD card into the slot located in the bottom of the board (same side 36e2d282a1SFabio Estevamas the mx6 processor) 37e2d282a1SFabio Estevam 38e2d282a1SFabio Estevam- Connect the serial cable to the host PC 39e2d282a1SFabio Estevam 40e2d282a1SFabio Estevam- Power up the board and U-boot messages will appear in the serial console. 41