summaryrefslogtreecommitdiffstats
path: root/configs/platform-mipsel/config/images/malta.config
diff options
context:
space:
mode:
Diffstat (limited to 'configs/platform-mipsel/config/images/malta.config')
-rw-r--r--configs/platform-mipsel/config/images/malta.config28
1 files changed, 28 insertions, 0 deletions
diff --git a/configs/platform-mipsel/config/images/malta.config b/configs/platform-mipsel/config/images/malta.config
new file mode 100644
index 0000000..07125be
--- /dev/null
+++ b/configs/platform-mipsel/config/images/malta.config
@@ -0,0 +1,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 : */