diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-09-02 13:58:01 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-02 23:46:49 +0100 |
commit | d281a65a81f369fc8d75023b8f911ce4106969c1 (patch) | |
tree | 2d943e71b76ddab11d5f64b52526709dac35cefa /scripts/lib/image/canned-wks/mkhybridiso.wks | |
parent | 3278af2266a078351a4f614c79bfbea2514566a1 (diff) | |
download | openembedded-core-d281a65a81f369fc8d75023b8f911ce4106969c1.tar.gz openembedded-core-d281a65a81f369fc8d75023b8f911ce4106969c1.tar.bz2 openembedded-core-d281a65a81f369fc8d75023b8f911ce4106969c1.zip |
wic: use ext4 in canned .wks files
Latest kernel doesn't have ext3 compiled in. Wic images produced
from canned .wks can't boot because of that. Switching to ext4
fixes this issue.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/image/canned-wks/mkhybridiso.wks')
-rw-r--r-- | scripts/lib/image/canned-wks/mkhybridiso.wks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/image/canned-wks/mkhybridiso.wks b/scripts/lib/image/canned-wks/mkhybridiso.wks index b443c15e07..9d34e9b477 100644 --- a/scripts/lib/image/canned-wks/mkhybridiso.wks +++ b/scripts/lib/image/canned-wks/mkhybridiso.wks @@ -2,6 +2,6 @@ # long-description: Creates an EFI and legacy bootable hybrid ISO image # which can be used on optical media as well as USB media. -part /boot --source isoimage-isohybrid --sourceparams="loader=grub-efi,image_name=HYBRID_ISO_IMG" --ondisk cd --label HYBRIDISO --fstype=ext3 +part /boot --source isoimage-isohybrid --sourceparams="loader=grub-efi,image_name=HYBRID_ISO_IMG" --ondisk cd --label HYBRIDISO --fstype=ext4 bootloader --timeout=15 --append="" |