2013-03-15 10:43:48 +00:00
|
|
|
U-Boot for Wandboard
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
This file contains information for the port of U-Boot to the Wandboard.
|
|
|
|
|
2013-09-27 02:10:56 +00:00
|
|
|
Wandboard is a development board that has three variants based on the following
|
|
|
|
SoCs: mx6 quad, mx6 dual lite and mx6 solo.
|
2013-03-15 10:43:48 +00:00
|
|
|
|
|
|
|
For more details about Wandboard, please refer to:
|
|
|
|
http://www.wandboard.org/
|
|
|
|
|
2016-02-06 03:30:11 +00:00
|
|
|
Building U-Boot for Wandboard
|
2013-03-15 10:43:48 +00:00
|
|
|
-----------------------------
|
|
|
|
|
2015-05-11 23:50:22 +00:00
|
|
|
To build U-Boot for the Wandboard:
|
2013-03-15 10:43:48 +00:00
|
|
|
|
2015-05-11 23:50:22 +00:00
|
|
|
$ make wandboard_config
|
2013-06-26 09:51:49 +00:00
|
|
|
$ make
|
|
|
|
|
2016-02-06 03:30:11 +00:00
|
|
|
Flashing U-Boot into the SD card
|
2013-03-15 10:43:48 +00:00
|
|
|
--------------------------------
|
|
|
|
|
2015-05-11 23:50:22 +00:00
|
|
|
- After the 'make' command completes, the generated 'SPL' binary must be
|
2013-03-15 10:43:48 +00:00
|
|
|
flashed into the SD card;
|
|
|
|
|
2015-05-11 23:50:22 +00:00
|
|
|
$ sudo dd if=SPL of=/dev/mmcblk0 bs=1k seek=1; sync
|
2013-03-15 10:43:48 +00:00
|
|
|
|
|
|
|
(Note - the SD card node may vary, so adjust this as needed).
|
|
|
|
|
2015-05-11 23:50:22 +00:00
|
|
|
- Flash the u-boot.img image into the SD card:
|
|
|
|
|
|
|
|
sudo dd if=u-boot.img of=/dev/mmcblk0 bs=1k seek=69; sync
|
|
|
|
|
2013-03-15 10:43:48 +00:00
|
|
|
- Insert the SD card into the slot located in the bottom of the board (same side
|
|
|
|
as the mx6 processor)
|
|
|
|
|
|
|
|
- Connect the serial cable to the host PC
|
|
|
|
|
2016-02-06 03:30:11 +00:00
|
|
|
- Power up the board and U-Boot messages will appear in the serial console.
|