xref: /OK3568_Linux_fs/buildroot/board/licheepi/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image boot.vfat {
2	vfat {
3		files = {
4			"zImage",
5			"sun8i-v3s-licheepi-zero-dock.dtb",
6			"sun8i-v3s-licheepi-zero.dtb",
7			"boot.scr"
8		}
9	}
10
11	size = 8M
12}
13
14image sdcard.img {
15	hdimage {
16	}
17
18	partition u-boot {
19		in-partition-table = "no"
20		image = "u-boot-sunxi-with-spl.bin"
21		offset = 8K
22		size = 504K # 512KB - 8KB
23	}
24
25	partition boot {
26		partition-type = 0xC
27		bootable = "true"
28		image = "boot.vfat"
29	}
30
31	partition rootfs {
32		partition-type = 0x83
33		image = "rootfs.ext4"
34		size = 0
35	}
36}
37