blob: c6c01322b64cd2a11d47b9443f63a43b3449b960 [file] [log] [blame]
Fabio Estevame2d282a2013-03-15 10:43:48 +00001U-Boot for Wandboard
2--------------------
3
4This file contains information for the port of U-Boot to the Wandboard.
5
Fabio Estevamc93addb2013-09-26 23:10:56 -03006Wandboard is a development board that has three variants based on the following
7SoCs: mx6 quad, mx6 dual lite and mx6 solo.
Fabio Estevame2d282a2013-03-15 10:43:48 +00008
9For more details about Wandboard, please refer to:
10http://www.wandboard.org/
11
12Building U-boot for Wandboard
13-----------------------------
14
Fabio Estevam0d1ea052015-05-11 20:50:22 -030015To build U-Boot for the Wandboard:
Fabio Estevame2d282a2013-03-15 10:43:48 +000016
Fabio Estevam0d1ea052015-05-11 20:50:22 -030017$ make wandboard_config
Tapani Utriainen491f2942013-06-26 17:51:49 +080018$ make
19
Fabio Estevame2d282a2013-03-15 10:43:48 +000020Flashing U-boot into the SD card
21--------------------------------
22
Fabio Estevam0d1ea052015-05-11 20:50:22 -030023- After the 'make' command completes, the generated 'SPL' binary must be
Fabio Estevame2d282a2013-03-15 10:43:48 +000024flashed into the SD card;
25
Fabio Estevam0d1ea052015-05-11 20:50:22 -030026$ sudo dd if=SPL of=/dev/mmcblk0 bs=1k seek=1; sync
Fabio Estevame2d282a2013-03-15 10:43:48 +000027
28(Note - the SD card node may vary, so adjust this as needed).
29
Fabio Estevam0d1ea052015-05-11 20:50:22 -030030- Flash the u-boot.img image into the SD card:
31
32sudo dd if=u-boot.img of=/dev/mmcblk0 bs=1k seek=69; sync
33
Fabio Estevame2d282a2013-03-15 10:43:48 +000034- Insert the SD card into the slot located in the bottom of the board (same side
35as the mx6 processor)
36
37- Connect the serial cable to the host PC
38
39- Power up the board and U-boot messages will appear in the serial console.