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