genimage.cfg 403 B

123456789101112131415161718192021222324252627282930
  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. }
  10. partition grub {
  11. in-partition-table = "no"
  12. image = "grub.img"
  13. offset = 512
  14. }
  15. partition root {
  16. partition-type = 0x83
  17. image = "rootfs.ext"
  18. size = 64M
  19. }
  20. partition cfgfs {
  21. partition-type = 0x88
  22. image = "cfgfs.img"
  23. }
  24. }