genimage.cfg 560 B

12345678910111213141516171819202122232425262728293031323334
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. file Image {
  7. image = "Image"
  8. }
  9. }
  10. size = 64M
  11. }
  12. image disk.img {
  13. hdimage {
  14. partition-table-type = "gpt"
  15. }
  16. partition boot {
  17. image = "efi-part.vfat"
  18. partition-type-uuid = U
  19. offset = 32K
  20. bootable = true
  21. }
  22. partition root {
  23. # For partition-type-uuid value, see:
  24. # https://uapi-group.org/specifications/specs/discoverable_partitions_specification/
  25. # SD_GPT_ROOT_RISCV64
  26. partition-type-uuid = 72ec70a6-cf74-40e6-bd49-4bda08e8f224
  27. image = "rootfs.ext2"
  28. }
  29. }