genimage.cfg 430 B

12345678910111213141516171819202122232425262728293031
  1. image disk.img {
  2. hdimage {
  3. }
  4. partition boot {
  5. in-partition-table = "no"
  6. image = "boot.img"
  7. offset = 0
  8. size = 512
  9. holes = {"(440; 512)"}
  10. }
  11. partition grub {
  12. in-partition-table = "no"
  13. image = "grub.img"
  14. offset = 512
  15. }
  16. partition root {
  17. partition-type = 0x83
  18. image = "rootfs.ext"
  19. size = 64M
  20. }
  21. partition cfgfs {
  22. partition-type = 0x88
  23. image = "cfgfs.img"
  24. }
  25. }