readme.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. *****************************
  2. Technexion i.MX6UL Pico board
  3. *****************************
  4. This file documents the Buildroot support for the Technexion i.MX6UL Pico board.
  5. Build
  6. =====
  7. First, configure Buildroot for the i.MX6UL Pico board:
  8. make imx6ulpico_defconfig
  9. Build all components:
  10. make
  11. You will find in output/images/ the following files:
  12. - imx6ul-pico-hobbit.dtb
  13. - rootfs.ext4
  14. - rootfs.tar
  15. - sdcard.img
  16. - u-boot.imx
  17. - zImage
  18. Create a bootable SD card
  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 card 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.MX6UL 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. Using Wifi
  40. ==========
  41. # modprobe brcmfmac
  42. # iwconfig wlan0 essid ACCESSPOINTNAME
  43. # wpa_passphrase ACCESSPOINTNAME > /etc/wpa.conf
  44. (enter the wifi password and press enter)
  45. # wpa_supplicant -Dwext -iwlan0 -c /etc/wpa.conf &
  46. # udhcpc -i wlan0
  47. # ping buildroot.org
  48. Enjoy!