2
1

readme.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ******************************************
  2. Xilinx VCK190 board - Versal
  3. ******************************************
  4. This document describes the Buildroot support for the VCK190
  5. board by Xilinx, based on Versal. It has been tested with the
  6. VCK190 production board.
  7. Evaluation board features can be found here with the link below.
  8. VCK190:
  9. https://www.xilinx.com/products/boards-and-kits/vck190.html
  10. How to build it
  11. ===============
  12. Configure Buildroot:
  13. $ make versal_vck190_defconfig
  14. Compile everything and build the rootfs image:
  15. $ make
  16. Result of the build
  17. -------------------
  18. After building, you should get a tree like this:
  19. output/images/
  20. +-- boot.bin
  21. +-- boot.vfat
  22. +-- Image
  23. +-- rootfs.ext2
  24. +-- rootfs.ext4 -> rootfs.ext2
  25. +-- sdcard.img
  26. +-- system.dtb -> versal-vck190-rev1.1.dtb
  27. `-- versal-vck190-rev1.1.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.