diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-07-22 14:01:11 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-23 21:59:16 +0100 |
commit | 063ee04d47d3aea5de2220a0090a173d4d82b662 (patch) | |
tree | 5a79cdfaef7b5f25359f94054640ec7d172d8869 | |
parent | aec05b6bf834169bcb7040e89ce63c47a6a393e9 (diff) | |
download | poky-063ee04d47d3aea5de2220a0090a173d4d82b662.tar.gz |
wic: Remove fstype from mkefidisk canned wks
The bootimg-efi plugin specifies the fstype internally, so remove it
from the partition definition.
(From OE-Core rev: e9365e9d9e8a8696849fda182ec260398059089a)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/image/canned-wks/mkefidisk.wks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/image/canned-wks/mkefidisk.wks b/scripts/lib/image/canned-wks/mkefidisk.wks index e976bc80dd..db86caaac6 100644 --- a/scripts/lib/image/canned-wks/mkefidisk.wks +++ b/scripts/lib/image/canned-wks/mkefidisk.wks | |||
@@ -2,7 +2,7 @@ | |||
2 | # long-description: Creates a partitioned EFI disk image that the user | 2 | # long-description: Creates a partitioned EFI disk image that the user |
3 | # can directly dd to boot media. | 3 | # can directly dd to boot media. |
4 | 4 | ||
5 | part /boot --source bootimg-efi --ondisk sda --fstype=msdos --label msdos --active --align 1024 | 5 | part /boot --source bootimg-efi --ondisk sda --label msdos --active --align 1024 |
6 | 6 | ||
7 | part / --source rootfs --ondisk sda --fstype=ext3 --label platform --align 1024 | 7 | part / --source rootfs --ondisk sda --fstype=ext3 --label platform --align 1024 |
8 | 8 | ||