readme.txt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ******************************************
  2. Xilinx ZCU102 / ZCU106 boards - ZynqMP SoC
  3. ******************************************
  4. This document describes the Buildroot support for the ZCU102 and
  5. ZCU106 boards by Xilinx, based on the Zynq UltraScale+ MPSoC (aka
  6. ZynqMP). It has been tested with the ZCU102 and ZCU106 production
  7. boards.
  8. Evaluation board features can be found here with the links below.
  9. ZCU102:
  10. https://www.xilinx.com/products/boards-and-kits/zcu102.html
  11. ZCU106:
  12. https://www.xilinx.com/products/boards-and-kits/zcu106.html
  13. How to build it
  14. ===============
  15. Configure Buildroot:
  16. $ make zynqmp_zcu106_defconfig
  17. Compile everything and build the rootfs image:
  18. $ make
  19. Result of the build
  20. -------------------
  21. After building, you should get a tree like this:
  22. output/images/
  23. +-- atf-uboot.ub
  24. +-- bl31.bin
  25. +-- boot.bin
  26. +-- boot.vfat
  27. +-- Image
  28. +-- rootfs.ext2
  29. +-- rootfs.ext4 -> rootfs.ext2
  30. +-- sdcard.img
  31. +-- system.dtb -> zynqmp-zcu106-revA.dtb
  32. +-- u-boot.itb
  33. `-- zynqmp-zcu106-revA.dtb
  34. How to write the SD card
  35. ========================
  36. WARNING! This will destroy all the card content. Use with care!
  37. The sdcard.img file is a complete bootable image ready to be written
  38. on the boot medium. To install it, simply copy the image to an SD
  39. card:
  40. # dd if=output/images/sdcard.img of=/dev/sdX
  41. Where 'sdX' is the device node of the SD.
  42. Eject the SD card, insert it in the board, and power it up.