1image boot.vfat { 2 vfat { 3 files = { 4 "Image", 5 "sun50i-h5-nanopi-neo2.dtb", 6 "boot.scr" 7 } 8 } 9 10 size = 64M 11} 12 13image sdcard.img { 14 hdimage { 15 } 16 17 partition spl { 18 in-partition-table = "no" 19 image = "sunxi-spl.bin" 20 offset = 8K 21 } 22 23 partition u-boot { 24 in-partition-table = "no" 25 image = "u-boot.itb" 26 offset = 40K 27 size = 1M # 1MB - 40K 28 } 29 30 partition boot { 31 partition-type = 0xC 32 bootable = "true" 33 image = "boot.vfat" 34 } 35 36 partition rootfs { 37 partition-type = 0x83 38 image = "rootfs.ext4" 39 } 40} 41