summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/canned-wks/mkgummidisk.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-03 12:43:24 +0100
commit77561e719181d58289687373eebadce764f838a7 (patch)
tree2d2536db0169ab35368be16767be67c9a0cef1cf /scripts/lib/image/canned-wks/mkgummidisk.wks
parent2e7e720cff745f9338217bfc9076451e34941268 (diff)
downloadpoky-77561e719181d58289687373eebadce764f838a7.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. (From OE-Core rev: d281a65a81f369fc8d75023b8f911ce4106969c1) 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/mkgummidisk.wks')
-rw-r--r--scripts/lib/image/canned-wks/mkgummidisk.wks4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/image/canned-wks/mkgummidisk.wks b/scripts/lib/image/canned-wks/mkgummidisk.wks
index f81cbdfb84..66a22f60bd 100644
--- a/scripts/lib/image/canned-wks/mkgummidisk.wks
+++ b/scripts/lib/image/canned-wks/mkgummidisk.wks
@@ -4,8 +4,8 @@
4 4
5part /boot --source bootimg-efi --sourceparams="loader=gummiboot" --ondisk sda --label msdos --active --align 1024 5part /boot --source bootimg-efi --sourceparams="loader=gummiboot" --ondisk sda --label msdos --active --align 1024
6 6
7part / --source rootfs --ondisk sda --fstype=ext3 --label platform --align 1024 7part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024
8 8
9part swap --ondisk sda --size 44 --label swap1 --fstype=swap 9part swap --ondisk sda --size 44 --label swap1 --fstype=swap
10 10
11bootloader --timeout=10 --append="rootwait rootfstype=ext3 console=ttyPCH0,115200 console=tty0 vmalloc=256MB snd-hda-intel.enable_msi=0" 11bootloader --timeout=10 --append="rootwait rootfstype=ext4 console=ttyPCH0,115200 console=tty0 vmalloc=256MB snd-hda-intel.enable_msi=0"