1image boot.vfat { 2 vfat { 3 files = { 4 "Image", 5 "rk3399pro-rock-pi-n10.dtb", 6 "extlinux" 7 } 8 } 9 10 size = 112M 11} 12 13image sdcard.img { 14 hdimage { 15 gpt = true 16 } 17 18 partition loader1 { 19 image = "idbloader.img" 20 offset = 32K 21 } 22 23 partition loader2 { 24 image = "u-boot.itb" 25 offset = 8M 26 } 27 28 partition boot { 29 partition-type = 0xC 30 bootable = "true" 31 image = "boot.vfat" 32 offset = 16M 33 } 34 35 partition rootfs { 36 partition-type = 0x83 37 image = "rootfs.ext4" 38 } 39} 40