xref: /OK3568_Linux_fs/buildroot/board/acmesystems/acqua-a5/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# Minimal SD card image for the Acme Systems Acqua A5
2
3image boot.vfat {
4	vfat {
5		files = {
6			"boot.bin",
7			"zImage",
8			"at91-sama5d3_acqua.dtb"
9		}
10	}
11
12	size = 16M
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