genimage.cfg 323 B

123456789101112131415161718192021222324252627
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "MLO",
  5. "u-boot.img",
  6. "uEnv.txt",
  7. }
  8. }
  9. size = 16M
  10. }
  11. image disk.img {
  12. hdimage {
  13. }
  14. partition u-boot {
  15. partition-type = 0xC
  16. bootable = "true"
  17. image = "boot.vfat"
  18. }
  19. partition rootfs {
  20. partition-type = 0x83
  21. image = "rootfs.ext"
  22. size = 512M
  23. }
  24. }