xref: /OK3568_Linux_fs/buildroot/board/beaglebone/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image boot.vfat {
2	vfat {
3		files = {
4			"MLO",
5			"u-boot.img",
6			"zImage",
7			"uEnv.txt",
8			"am335x-evm.dtb",
9			"am335x-evmsk.dtb",
10			"am335x-bone.dtb",
11			"am335x-boneblack.dtb",
12			"am335x-bonegreen.dtb",
13		}
14	}
15
16	size = 16M
17}
18
19image sdcard.img {
20	hdimage {
21	}
22
23	partition u-boot {
24		partition-type = 0xC
25		bootable = "true"
26		image = "boot.vfat"
27	}
28
29	partition rootfs {
30		partition-type = 0x83
31		image = "rootfs.ext4"
32		size = 512M
33	}
34}
35