genimage.cfg 366 B

12345678910111213141516171819202122232425262728
  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. }
  15. partition boot {
  16. partition-type = 0xC
  17. bootable = "true"
  18. image = "boot.vfat"
  19. }
  20. partition rootfs {
  21. partition-type = 0x83
  22. image = "rootfs.ext4"
  23. size = 512M
  24. }
  25. }