From: Ed Bartosh Date: Sun, 30 Jul 2017 10:30:56 +0000 (+0300) Subject: x86-base.inc: enable live image type X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~20503 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c787dcdd55bc55c6c64dec21b251706615114fe7;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git x86-base.inc: enable live image type 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 Signed-off-by: Ross Burton --- diff --git a/meta/conf/machine/include/x86-base.inc b/meta/conf/machine/include/x86-base.inc index a29641aec44..bc0c27b73eb 100644 --- a/meta/conf/machine/include/x86-base.inc +++ b/meta/conf/machine/include/x86-base.inc @@ -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"