1image boot.vfat { 2 vfat { 3 files = { 4 "Image", 5 "meson-gxbb-odroidc2.dtb", 6 "boot.scr" 7 } 8 } 9 10 size = 64M 11} 12 13image sdcard.img { 14 hdimage { 15 } 16 17 partition bl1 { 18 in-partition-table = "no" 19 image = "bl1.bin.hardkernel" 20 offset = 0 21 } 22 23 partition u-boot { 24 in-partition-table = "no" 25 image = "uboot-odc2.img" 26 offset = 49664 # 48KB + 512B 27 } 28 29 partition boot { 30 partition-type = 0xC 31 bootable = "true" 32 image = "boot.vfat" 33 } 34 35 partition rootfs { 36 partition-type = 0x83 37 image = "rootfs.ext4" 38 } 39} 40