xref: /OK3568_Linux_fs/buildroot/board/hardkernel/odroidxu4/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image boot.vfat {
2	vfat {
3		files = {
4			"boot.ini",
5			"zImage",
6			"exynos5422-odroidxu4.dtb"
7		}
8	}
9
10	size = 32M
11}
12
13image sdcard.img {
14	hdimage {
15	}
16
17	partition bl1 {
18		in-partition-table = "no"
19		image = "bl1.bin.hardkernel"
20		offset = 512
21		size = 15K
22	}
23
24	partition bl2 {
25		in-partition-table = "no"
26		image = "bl2.bin.hardkernel.720k_uboot"
27		offset = 15872 # 15KB + 512B
28		size = 16K
29	}
30
31	partition u-boot {
32		in-partition-table = "no"
33		image = "u-boot-dtb.bin"
34		offset = 32256 # 31KB + 512B
35		size = 720K
36	}
37
38	partition tzsw {
39		in-partition-table = "no"
40		image = "tzsw.bin.hardkernel"
41		offset = 769536 # 751KB + 512B
42		size = 256K
43	}
44
45	partition vfat {
46		partition-type = 0xC
47		image = "boot.vfat"
48		offset = 2M
49	}
50
51	partition rootfs {
52		partition-type = 0x83
53		image = "rootfs.ext4"
54	}
55}
56