aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/canned-wks/directdisk.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/directdisk.wks
parent3278af2266a078351a4f614c79bfbea2514566a1 (diff)
downloadopenembedded-core-contrib-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/directdisk.wks')
-rw-r--r--scripts/lib/image/canned-wks/directdisk.wks4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/image/canned-wks/directdisk.wks b/scripts/lib/image/canned-wks/directdisk.wks
index 62dcab15ce..af4c9eadaf 100644
--- a/scripts/lib/image/canned-wks/directdisk.wks
+++ b/scripts/lib/image/canned-wks/directdisk.wks
@@ -4,7 +4,7 @@
part /boot --source bootimg-pcbios --ondisk sda --label boot --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
-bootloader --timeout=0 --append="rootwait rootfstype=ext3 video=vesafb vga=0x318 console=tty0"
+bootloader --timeout=0 --append="rootwait rootfstype=ext4 video=vesafb vga=0x318 console=tty0"