xref: /OK3568_Linux_fs/buildroot/board/pine64/rock64/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image sdcard.img {
2	hdimage {
3	}
4
5	partition uboot-spl {
6		in-partition-table = "no"
7		image = "u-boot-tpl-spl.img"
8		offset = 32K # 512 * 0x40 from start of sd card
9	}
10
11	partition uboot {
12		in-partition-table = "no"
13		image = "u-boot.itb"
14		offset = 256K # 512 * 0x200 from start of sd card
15	}
16
17	partition rootfs {
18		partition-type = 0x83
19		bootable = "yes"
20		image = "rootfs.ext2"
21		size = 500M
22	}
23}
24