summaryrefslogtreecommitdiff
path: root/adk/genimage
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-02-19 13:43:01 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-02-23 03:09:27 +0100
commit0fdcbb4efc907387aef61f79d1b35679eb38f00e (patch)
tree6eee4d46eae5a8f2afc6e49df459e36c88e1458b /adk/genimage
parentc0201ae0fe67e757bd77af4eade95a214d8ae6ee (diff)
fallback to generic genimage config, the size of partition and filesystem still need to be made configurable
Diffstat (limited to 'adk/genimage')
-rw-r--r--adk/genimage/genimage-dual.cfg23
-rw-r--r--adk/genimage/genimage.cfg17
2 files changed, 40 insertions, 0 deletions
diff --git a/adk/genimage/genimage-dual.cfg b/adk/genimage/genimage-dual.cfg
new file mode 100644
index 000000000..80ea64a84
--- /dev/null
+++ b/adk/genimage/genimage-dual.cfg
@@ -0,0 +1,23 @@
+image disk.img {
+
+ hdimage {
+ }
+
+ partition root1 {
+ partition-type = 0x83
+ image = "rootfs.ext"
+ size = 64M
+ }
+
+ partition root2 {
+ partition-type = 0x83
+ image = "rootfs.ext"
+ size = 64M
+ }
+
+ partition cfgfs {
+ partition-type = 0x88
+ image = "cfgfs.img"
+ }
+
+}
diff --git a/adk/genimage/genimage.cfg b/adk/genimage/genimage.cfg
new file mode 100644
index 000000000..9e17390b1
--- /dev/null
+++ b/adk/genimage/genimage.cfg
@@ -0,0 +1,17 @@
+image disk.img {
+
+ hdimage {
+ }
+
+ partition root {
+ partition-type = 0x83
+ image = "rootfs.ext"
+ size = 64M
+ }
+
+ partition cfgfs {
+ partition-type = 0x88
+ image = "cfgfs.img"
+ }
+
+}