1image boot.vfat {
2	vfat {
3		files = {
4			"Image",
5			"meson-g12b-a311d-khadas-vim3.dtb",
6			"extlinux"
7		}
8
9		label = "boot"
10	}
11
12	size = 64M
13}
14
15image sdcard.img {
16	hdimage {
17	}
18
19	partition boot {
20		partition-type = 0xC
21		bootable = "true"
22		image="boot.vfat"
23		size = 64M
24		offset = 2M
25	}
26
27	partition rootfs {
28		partition-type = 0x83
29		image = "rootfs.ext2"
30		size = 128M
31		offset = 0
32	}
33}
34