diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-07-30 13:30:56 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-09 09:24:03 +0100 |
commit | c787dcdd55bc55c6c64dec21b251706615114fe7 (patch) | |
tree | c52ae3791a4d6645570016f535b09be8c4ce37f5 | |
parent | e681e25fb8fb97a8592df69180d2fd85d136352c (diff) | |
download | openembedded-core-c787dcdd55bc55c6c64dec21b251706615114fe7.tar.gz openembedded-core-c787dcdd55bc55c6c64dec21b251706615114fe7.tar.bz2 openembedded-core-c787dcdd55bc55c6c64dec21b251706615114fe7.zip |
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 <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/conf/machine/include/x86-base.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/machine/include/x86-base.inc b/meta/conf/machine/include/x86-base.inc index a29641aec4..bc0c27b73e 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" |