summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/config/images/vexpress-nor.config
blob: 38c446418cd1ee1e662b7541cbf038320f868336 (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
30
31
image @IMAGE@ {
	hdimage {
		partition-table = false
	}
	partition barebox {
		image = barebox.bin-vexpress
		offset = 0
		in-partition-table = false
	}
	partition barebox-environment {
		/* empty environment -> use barebox builtin */
		image = barebox-zero-env-vexpress
		offset = 0x80000 /* 512 KiB */
		in-partition-table = false
	}
	partition barebox-state {
		image = /dev/null
		offset = 0x100000 /* 1 MiB */
		in-partition-table = false
		size = 0x100000 /* 1 MiB */
	}
	/* expand image size to 64 MiB; dummy size, results in 0 bytes length */
	partition end {
		image = /dev/null
		offset = 64M
		size = 1M
		in-partition-table = false
	}
}

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