genimage.cfg 309 B

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