genimage.cfg 427 B

12345678910111213141516171819202122232425262728293031
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "uImage",
  5. "meson-gxbb-nexbox-a95x.dtb",
  6. "meson-gxl-s905x-nexbox-a95x.dtb",
  7. "boot.scr"
  8. }
  9. }
  10. size = 32M
  11. }
  12. image sdcard.img {
  13. hdimage {
  14. # for root=PARTUUID support
  15. disk-signature = 0xfeedc0de
  16. }
  17. partition boot {
  18. partition-type = 0xC
  19. bootable = "true"
  20. image = "boot.vfat"
  21. }
  22. partition rootfs {
  23. partition-type = 0x83
  24. image = "rootfs.ext4"
  25. size = 512M
  26. }
  27. }