summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/canned-wks/mkefidisk.wks
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-09-02 13:58:01 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-02 23:46:49 +0100
commitd281a65a81f369fc8d75023b8f911ce4106969c1 (patch)
tree2d943e71b76ddab11d5f64b52526709dac35cefa /scripts/lib/image/canned-wks/mkefidisk.wks
parent3278af2266a078351a4f614c79bfbea2514566a1 (diff)
downloadopenembedded-core-d281a65a81f369fc8d75023b8f911ce4106969c1.tar.gz
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/mkefidisk.wks')
-rw-r--r--scripts/lib/image/canned-wks/mkefidisk.wks4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/image/canned-wks/mkefidisk.wks b/scripts/lib/image/canned-wks/mkefidisk.wks
index 58d42e61eb..696e94e3d7 100644
--- a/scripts/lib/image/canned-wks/mkefidisk.wks
+++ b/scripts/lib/image/canned-wks/mkefidisk.wks
@@ -4,8 +4,8 @@
part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --ondisk sda --label msdos --active --align 1024
-part / --source rootfs --ondisk sda --fstype=ext3 --label platform --align 1024
+part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024
part swap --ondisk sda --size 44 --label swap1 --fstype=swap
-bootloader --timeout=10 --append="rootwait rootfstype=ext3 console=ttyPCH0,115200 console=tty0 vmalloc=256MB snd-hda-intel.enable_msi=0"
+bootloader --timeout=10 --append="rootwait rootfstype=ext4 console=ttyPCH0,115200 console=tty0 vmalloc=256MB snd-hda-intel.enable_msi=0"