xref: /OK3568_Linux_fs/buildroot/board/acmesystems/aria-g25/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# Minimal SD card image for the Acmesystems Aria G25
2
3image boot.vfat {
4	vfat {
5		file zImage {
6			image = "zImage"
7		}
8
9		file at91-ariag25.dtb {
10			image = "at91-ariag25.dtb"
11		}
12
13		file boot.bin {
14			image = "at91sam9x5_aria-sdcardboot-linux-zimage-dt-3.10.3.bin"
15		}
16	}
17
18	size = 16M
19}
20
21image sdcard.img {
22	hdimage {
23	}
24
25	partition boot {
26		partition-type = 0xC
27		bootable = "true"
28		image = "boot.vfat"
29	}
30
31	partition rootfs {
32		partition-type = 0x83
33		image = "rootfs.ext4"
34		size = 512M
35	}
36}
37