genimage-efi-dual.cfg 475 B

12345678910111213141516171819202122232425262728293031323334353637
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. }
  7. size = 32M
  8. }
  9. image disk.img {
  10. hdimage {
  11. }
  12. partition boot {
  13. partition-type = 0xEF
  14. image = "efi-part.vfat"
  15. }
  16. partition root1 {
  17. partition-type = 0x83
  18. image = "rootfs.ext"
  19. size = 128M
  20. }
  21. partition root2 {
  22. partition-type = 0x83
  23. image = "rootfs.ext"
  24. size = 128M
  25. }
  26. partition cfgfs {
  27. partition-type = 0x88
  28. image = "cfgfs.img"
  29. }
  30. }