readme.txt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. ***************************
  2. Freescale i.MX8MQ EVK board
  3. ***************************
  4. This file documents the Buildroot support for the Freescale i.MX8MQ
  5. EVK board.
  6. Build
  7. =====
  8. First, configure Buildroot for the i.MX8MQ EVK board:
  9. make freescale_imx8mqevk_defconfig
  10. Build all components:
  11. make
  12. You will find in output/images/ the following files:
  13. - bl31.bin
  14. - boot.vfat
  15. - fsl-imx8mq-evk.dtb
  16. - Image
  17. - imx8-boot-sd.bin
  18. - lpddr4_pmu_train_fw.bin
  19. - rootfs.ext2
  20. - rootfs.ext4
  21. - rootfs.tar
  22. - sdcard.img
  23. - signed_hdmi_imx8m.bin
  24. - u-boot.bin
  25. - u-boot.imx
  26. - u-boot-nodtb.bin
  27. - u-boot-spl-ddr.bin
  28. Create a bootable SD card
  29. =========================
  30. To determine the device associated to the SD card have a look in the
  31. /proc/partitions file:
  32. cat /proc/partitions
  33. Buildroot prepares a bootable "sdcard.img" image in the output/images/
  34. directory, ready to be dumped on a SD card. Launch the following
  35. command as root:
  36. dd if=output/images/sdcard.img of=/dev/<your-sd-device>
  37. *** WARNING! This will destroy all the card content. Use with care! ***
  38. For details about the medium image layout, see the definition in
  39. board/freescale/common/imx/genimage.cfg.template_imx8.
  40. Boot the i.MX8MQ EVK board
  41. ==========================
  42. To boot your newly created system:
  43. - insert the SD card in the SD slot of the board;
  44. - Configure the switches as follows:
  45. SW801: ON ON OFF OFF
  46. SW802: ON OFF
  47. - put a micro USB cable into the Debug USB Port and connect using a terminal
  48. emulator at 115200 bps, 8n1;
  49. - power on the board.
  50. Enable HDMI output
  51. ==================
  52. To enable HDMI output at boot you must provide the video kernel boot
  53. argument. To set the video boot argument from U-Boot run after
  54. stopping in U-Boot prompt:
  55. setenv mmcargs 'setenv bootargs console=${console} root=${mmcroot} video=HDMI-A-1:1920x1080-32@60'
  56. saveenv
  57. reset
  58. Change screen resolution to suit your connected display.
  59. Enjoy!