diff options
-rw-r--r-- | target/x86_64/asus-p5bvm/genimage-dual.cfg | 34 | ||||
-rw-r--r-- | target/x86_64/asus-p5bvm/genimage.cfg | 29 |
2 files changed, 63 insertions, 0 deletions
diff --git a/target/x86_64/asus-p5bvm/genimage-dual.cfg b/target/x86_64/asus-p5bvm/genimage-dual.cfg new file mode 100644 index 000000000..82d6dc2c2 --- /dev/null +++ b/target/x86_64/asus-p5bvm/genimage-dual.cfg @@ -0,0 +1,34 @@ +image disk.img { + + hdimage { + } + + partition boot { + in-partition-table = "no" + image = "boot.img" + offset = 0 + size = 512 + } + + partition grub { + in-partition-table = "no" + image = "grub.img" + offset = 512 + } + + partition root1 { + partition-type = 0x83 + image = "rootfs.ext" + } + + partition root2 { + partition-type = 0x83 + image = "rootfs.ext" + } + + partition cfgfs { + partition-type = 0x88 + image = "cfgfs.img" + } + +} diff --git a/target/x86_64/asus-p5bvm/genimage.cfg b/target/x86_64/asus-p5bvm/genimage.cfg new file mode 100644 index 000000000..0b8992731 --- /dev/null +++ b/target/x86_64/asus-p5bvm/genimage.cfg @@ -0,0 +1,29 @@ +image disk.img { + + hdimage { + } + + partition boot { + in-partition-table = "no" + image = "boot.img" + offset = 0 + size = 512 + } + + partition grub { + in-partition-table = "no" + image = "grub.img" + offset = 512 + } + + partition root { + partition-type = 0x83 + image = "rootfs.ext" + } + + partition cfgfs { + partition-type = 0x88 + image = "cfgfs.img" + } + +} |