readme.txt 1.2 KB

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