diff options
Diffstat (limited to 'adk')
-rw-r--r-- | adk/genimage/genimage-dual.cfg | 23 | ||||
-rw-r--r-- | adk/genimage/genimage.cfg | 17 |
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" + } + +} |