xref: /OK3568_Linux_fs/buildroot/board/synopsys/hsdk/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image boot.vfat {
2	vfat {
3		files = {
4			"uImage"
5		}
6
7		file uboot.env {
8			image = "uboot-env.bin"
9		}
10	}
11
12	size = 20M
13}
14
15image sdcard.img {
16	hdimage {
17	}
18
19	partition boot {
20		partition-type = 0xC
21		bootable = "true"
22		image = "boot.vfat"
23	}
24
25	partition rootfs {
26		partition-type = 0x83
27		image = "rootfs.ext4"
28	}
29}
30