summaryrefslogtreecommitdiffstats
path: root/configs/platform-mipsel/config/images/malta.config
blob: 07125bea4c886017d82e2eec609a8430d494f4f5 (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
image @IMAGE@ {
	hdimage {
		align = 1M
		disk-signature = 0x74823abf
	}
	partition root-A {
		image = root.ext2
		partition-type = 0x83
		size = 512M
	}
	partition data {
		partition-type = 0x83
		size = 512M
	}
	/* 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. work around this by adding an empty
	 * partition at the end.
	 */
	partition end {
		image = /dev/null
		size = 1M
		offset = 1025M
		in-partition-table = false
	}
}

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