readme.txt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ****************************
  2. Technexion i.MX7D Pico board
  3. ****************************
  4. This file documents the Buildroot support for the Technexion i.MX7D Pico board.
  5. Build
  6. =====
  7. First, configure Buildroot for the i.MX7D Pico board:
  8. make imx7dpico_defconfig
  9. Build all components:
  10. make
  11. You will find in output/images/ the following files:
  12. - imx7d-pico.dtb
  13. - rootfs.ext4
  14. - rootfs.tar
  15. - sdcard.img
  16. - u-boot.imx
  17. - zImage
  18. Flash the eMMC
  19. ==============
  20. In the U-Boot prompt lauch:
  21. => ums 0 mmc 0
  22. This will mount the eMMC content in the host PC as a mass storage device.
  23. To determine the device associated to the eMMC card have a look in the
  24. /proc/partitions file:
  25. cat /proc/partitions
  26. Buildroot prepares a bootable "sdcard.img" image in the output/images/
  27. directory, ready to be dumped on the eMMC card. Launch the following
  28. command as root:
  29. dd if=output/images/sdcard.img of=/dev/<your-sd-device>
  30. *** WARNING! This will destroy all the eMMC content. Use with care! ***
  31. For details about the medium image layout, see the definition in
  32. board/freescale/common/imx/genimage.cfg.template.
  33. Boot the i.MX7D Pico board
  34. ==========================
  35. To boot your newly created system:
  36. - put a micro USB cable into the Debug USB Port and connect using a terminal
  37. emulator at 115200 bps, 8n1;
  38. - power on the board.
  39. Enjoy!