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		holes = {"(440; 512)"}
22	}
23
24	partition u-boot {
25		in-partition-table = "no"
26		image = "uboot-odc2.img"
27		offset = 49664 # 48KB + 512B
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