diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-02 17:02:04 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-11 23:55:38 +0100 |
commit | 3d3dad40f3f51070a33e2ba28c0fc14ffcc3c2a5 (patch) | |
tree | 17d96245744f890cf7023f6c4c2dcfe35d4c2d3a /scripts/lib/image/canned-wks | |
parent | 72599b5500ebdd0c418a0ef1e2c93c833bd31d75 (diff) | |
download | openembedded-core-3d3dad40f3f51070a33e2ba28c0fc14ffcc3c2a5.tar.gz openembedded-core-3d3dad40f3f51070a33e2ba28c0fc14ffcc3c2a5.tar.bz2 openembedded-core-3d3dad40f3f51070a33e2ba28c0fc14ffcc3c2a5.zip |
wic: create directdisk-gpt.wks
directdisk-gpt is the same as directdisk with only one difference:
it uses GPT partition table.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
create mode 100644 scripts/lib/image/canned-wks/directdisk-gpt.wks
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/lib/image/canned-wks')
-rw-r--r-- | scripts/lib/image/canned-wks/directdisk-gpt.wks | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/lib/image/canned-wks/directdisk-gpt.wks b/scripts/lib/image/canned-wks/directdisk-gpt.wks new file mode 100644 index 0000000000..76fda1f194 --- /dev/null +++ b/scripts/lib/image/canned-wks/directdisk-gpt.wks @@ -0,0 +1,10 @@ +# short-description: Create a 'pcbios' direct disk image +# long-description: Creates a partitioned legacy BIOS disk image that the user +# can directly dd to boot media. + + +part /boot --source bootimg-pcbios --ondisk sda --label boot --active --align 1024 +part / --source rootfs --ondisk sda --fstype=ext3 --label platform --align 1024 + +bootloader --ptable gpt --timeout=0 --append="rootwait rootfstype=ext3 video=vesafb vga=0x318 console=tty0" + |