genimage.cfg 585 B

12345678910111213141516171819202122232425262728
  1. # Minimal SD card image for the Starfive VisionFive2 board
  2. image sdcard.img {
  3. hdimage {
  4. partition-table-type = "gpt"
  5. }
  6. partition spl {
  7. partition-type-uuid = 2E54B353-1271-4842-806F-E436D6AF6985
  8. image = "u-boot-spl.bin.normal.out"
  9. }
  10. partition uboot {
  11. partition-type-uuid = BC13C2FF-59E6-4262-A352-B275FD6F7172
  12. image = "u-boot.itb"
  13. }
  14. partition rootfs {
  15. partition-type-uuid = 0FC63DAF-8483-4772-8E79-3D69D8477DE4
  16. bootable = true
  17. image = "rootfs.ext"
  18. }
  19. partition cfgfs {
  20. partition-type-uuid = 0FC63DAF-8483-4772-8E79-3D69D8477DE4
  21. image = "cfgfs.img"
  22. }
  23. }