README 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. To build U-Boot for the Wandboard Quad version:
  17. $ make wandboard_quad_config
  18. $ make
  19. Flashing U-boot into the SD card
  20. --------------------------------
  21. - After the 'make' command completes, the generated 'u-boot.imx' binary must be
  22. flashed into the SD card;
  23. $ sudo dd if=u-boot.imx of=/dev/mmcblk0 bs=512 seek=2; sync
  24. (Note - the SD card node may vary, so adjust this as needed).
  25. - Insert the SD card into the slot located in the bottom of the board (same side
  26. as the mx6 processor)
  27. - Connect the serial cable to the host PC
  28. - Power up the board and U-boot messages will appear in the serial console.