summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/config/images/vexpress.config
blob: 17fcf5ec414c4f8869f0d783ee404970875d7a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
image @IMAGE@ {
	hdimage {
		align = 1M
		disk-signature = 0x74823abf
	}
	partition root-A {
		image = root.ext2
		partition-type = 0x83
		size = 64M
	}
	partition data {
		partition-type = 0x83
		size = 63M
	}
	/* genimage does not write zeros at the end of an image to save space,
	 * but the kernel in qemu will complain if the image file is smaller
	 * than the partition sizes, and qemu will complain if the SD card size
	 * is not a power of 2. work around this issues by adding an empty
	 * partition at the end.
	 */
	partition end {
		image = /dev/null
		size = 1M
		offset = 128M
		in-partition-table = false
	}
}

/* vim: set tabstop=8 noexpandtab : */