xref: /OK3568_Linux_fs/buildroot/board/engicam/icorem6/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image boot.vfat {
2	vfat {
3		files = {
4			"uImage",
5			"imx6dl-icore.dtb",
6			"imx6q-icore.dtb",
7			"imx6q-icore-ofcap10.dtb",
8			"imx6q-icore-ofcap12.dtb"
9		}
10	}
11
12	size = 64M
13}
14
15image sdcard.img {
16	hdimage {
17	}
18
19	partition SPL {
20		in-partition-table = "no"
21		image = "SPL"
22		offset = 1K
23	}
24
25	partition u-boot-dtb {
26		in-partition-table = "no"
27		image = "u-boot-dtb.img"
28		offset = 69K
29	}
30
31	partition boot {
32		partition-type = 0xC
33		bootable = "true"
34		image = "boot.vfat"
35		offset = 8M
36	}
37
38	partition rootfs {
39		partition-type = 0x83
40		image = "rootfs.ext2"
41	}
42}
43