| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| readme.txt | H A D | 05-Jun-2025 | 1.8 KiB | 74 | 55 |
readme.txt
1*************************** 2Freescale i.MX8MN EVK board 3*************************** 4 5This file documents the Buildroot support for the i.MX8M Nano EVK board. 6 7Build 8===== 9 10First, configure Buildroot for the i.MX8MN EVK board: 11 12 make freescale_imx8mnevk_defconfig 13 14Build all components: 15 16 make 17 18You will find in output/images/ the following files: 19 - bl31.bin 20 - boot.vfat 21 - ddr4_201810_fw.bin 22 - ddr_fw.bin 23 - fsl-imx8mn-ddr4-evk.dtb 24 - Image 25 - imx8-boot-sd.bin 26 - rootfs.ext2 27 - rootfs.ext4 28 - rootfs.tar 29 - sdcard.img 30 - u-boot.bin 31 - u-boot.imx 32 - u-boot.itb 33 - u-boot-nodtb.bin 34 - u-boot-spl.bin 35 - u-boot-spl-ddr.bin 36 37Create a bootable SD card 38========================= 39 40To determine the device associated to the SD card have a look in the 41/proc/partitions file: 42 43 cat /proc/partitions 44 45Buildroot prepares a bootable "sdcard.img" image in the output/images/ 46directory, ready to be dumped on a SD card. Launch the following 47command as root: 48 49 dd if=output/images/sdcard.img of=/dev/<your-sd-device> 50 51*** WARNING! This will destroy all the card content. Use with care! *** 52 53For details about the medium image layout, see the definition in 54board/freescale/common/imx/genimage.cfg.template_imx8. 55 56Boot the i.MX8MN EVK board 57========================== 58 59To boot your newly created system (refer to the i.MX8MNano EVK Quick Start Guide 60[1] for guidance): 61- insert the SD card in the SD slot of the board; 62- Configure the switches as follows (X = "don't care"): 63SW1101: 1100XXXXXX [D1-D10] 64SW1102: XXXXXXXXXX [D1-D10] 65- put a micro USB cable into the Debug USB Port and connect using a terminal 66 emulator at 115200 bps, 8n1; 67- power on the board. 68 69Enjoy! 70 71References 72========== 73[1] https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/evaluation-kit-for-the-i-mx-8m-nano-applications-processor:8MNANOD4-EVK 74