1image 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 11 size = 32M 12} 13 14image sdcard.img { 15 hdimage { 16 # for root=PARTUUID support 17 disk-signature = 0xfeedc0de 18 } 19 20 partition boot { 21 partition-type = 0xC 22 bootable = "true" 23 image = "boot.vfat" 24 } 25 26 partition rootfs { 27 partition-type = 0x83 28 image = "rootfs.ext4" 29 size = 512M 30 } 31} 32