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