1image boot.vfat {
2	vfat {
3		files = {
4			"boot.bin",
5			"u-boot.itb",
6			"system.dtb",
7			"Image"
8		}
9		file extlinux/extlinux.conf {
10			image = extlinux.conf
11		}
12	}
13
14	size = 32M
15}
16
17image sdcard.img {
18	hdimage {
19	}
20
21	partition boot {
22		partition-type = 0xC
23		bootable = "true"
24		image = "boot.vfat"
25	}
26
27	partition rootfs {
28		partition-type = 0x83
29		image = "rootfs.ext4"
30	}
31}
32