genimage.cfg 390 B

123456789101112131415161718192021222324252627282930313233
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "Image",
  5. "meson-g12b-a311d-khadas-vim3.dtb",
  6. "extlinux"
  7. }
  8. label = "boot"
  9. }
  10. size = 64M
  11. }
  12. image sdcard.img {
  13. hdimage {
  14. }
  15. partition boot {
  16. partition-type = 0xC
  17. bootable = "true"
  18. image="boot.vfat"
  19. size = 64M
  20. offset = 2M
  21. }
  22. partition rootfs {
  23. partition-type = 0x83
  24. image = "rootfs.ext2"
  25. size = 128M
  26. offset = 0
  27. }
  28. }