genimage.cfg 507 B

123456789101112131415161718192021222324252627282930313233343536
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. file kernel {
  7. image = "kernel"
  8. }
  9. }
  10. size = 128M
  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. partition-type-uuid = root-loongarch64
  24. image = "rootfs.ext"
  25. }
  26. partition cfgfs {
  27. partition-type-uuid = 0FC63DAF-8483-4772-8E79-3D69D8477DE4
  28. image = "cfgfs.img"
  29. }
  30. }