]> code.ossystems Code Review - openembedded-core.git/commitdiff
x86-base.inc: enable live image type
authorEd Bartosh <ed.bartosh@linux.intel.com>
Sun, 30 Jul 2017 10:30:56 +0000 (13:30 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 9 Aug 2017 08:24:03 +0000 (09:24 +0100)
live image type was replaced by hddimg recently. This made
NOHDD and NOISO options ineffective as they only influence
live builds. It also causes image building failure for
image sizes >4Gb

Returned back live image type and disabled building iso image.
This doesn't change result (hddimg is built), but it makes
NOHDD and NOISO working as expected.

[YOCTO #11842]

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/conf/machine/include/x86-base.inc

index a29641aec44d61d161783e857f59fb8116981999..bc0c27b73eb04e9e611b6655e30d7e55fc62c284 100644 (file)
@@ -10,7 +10,8 @@ MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
 
 MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
 
-IMAGE_FSTYPES ?= "hddimg"
+IMAGE_FSTYPES ?= "live"
+NOISO ?= "1"
 
 KERNEL_IMAGETYPE ?= "bzImage"