README 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. U-Boot for Wandboard
  2. --------------------
  3. This file contains information for the port of U-Boot to the Wandboard.
  4. Wandboard is a development board that has two variants: one version based
  5. on mx6 dual lite and another one based on mx6 solo.
  6. For more details about Wandboard, please refer to:
  7. http://www.wandboard.org/
  8. Building U-boot for Wandboard
  9. -----------------------------
  10. To build U-Boot for the Wandboard Dual Lite version:
  11. $ make wandboard_dl_config
  12. $ make
  13. To build U-Boot for the Wandboard Solo version:
  14. $ make wandboard_solo_config
  15. $ make
  16. Flashing U-boot into the SD card
  17. --------------------------------
  18. - After the 'make' command completes, the generated 'u-boot.imx' binary must be
  19. flashed into the SD card;
  20. $ sudo dd if=u-boot.imx of=/dev/mmcblk0 bs=512 seek=2; sync
  21. (Note - the SD card node may vary, so adjust this as needed).
  22. - Insert the SD card into the slot located in the bottom of the board (same side
  23. as the mx6 processor)
  24. - Connect the serial cable to the host PC
  25. - Power up the board and U-boot messages will appear in the serial console.