summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/config/images
diff options
context:
space:
mode:
Diffstat (limited to 'configs/platform-v7a/config/images')
-rw-r--r--configs/platform-v7a/config/images/vexpress-nor.config29
-rw-r--r--configs/platform-v7a/config/images/vexpress.config22
2 files changed, 51 insertions, 0 deletions
diff --git a/configs/platform-v7a/config/images/vexpress-nor.config b/configs/platform-v7a/config/images/vexpress-nor.config
new file mode 100644
index 0000000..18e53ed
--- /dev/null
+++ b/configs/platform-v7a/config/images/vexpress-nor.config
@@ -0,0 +1,29 @@
+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
+ }
+}
diff --git a/configs/platform-v7a/config/images/vexpress.config b/configs/platform-v7a/config/images/vexpress.config
new file mode 100644
index 0000000..2c23576
--- /dev/null
+++ b/configs/platform-v7a/config/images/vexpress.config
@@ -0,0 +1,22 @@
+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
+ }
+ /* expand image size to 64 MiB; dummy size, results in 0 bytes length */
+ partition end {
+ image = /dev/null
+ size = 1M
+ offset = 1025M
+ in-partition-table = false
+ }
+}