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