From: Joshua Watt Date: Tue, 30 Apr 2019 13:51:09 +0000 (-0500) Subject: qemux86: Allow higher tunes X-Git-Tag: uninative-2.5~277 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=0be64e54a0e67472eaff9c794a33d76971c9b1a3;p=openembedded-core.git qemux86: Allow higher tunes Allows the qemux86 machine to be tuned all the way up to an i7 if desired by overriding DEFAULTTUNE. The default if unspecified is left at i586. This can be useful for enabling advanced processor features like SSE if desired or required by various packages. Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie --- diff --git a/meta/conf/machine/qemux86.conf b/meta/conf/machine/qemux86.conf index ae5187cbd5..f2434a4b5f 100644 --- a/meta/conf/machine/qemux86.conf +++ b/meta/conf/machine/qemux86.conf @@ -8,7 +8,9 @@ PREFERRED_PROVIDER_virtual/libgles1 ?= "mesa" PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa" require conf/machine/include/qemu.inc -require conf/machine/include/tune-i586.inc +DEFAULTTUNE ?= "i586" +X86ARCH32 ?= "i586" +require conf/machine/include/tune-corei7.inc require conf/machine/include/qemuboot-x86.inc UBOOT_MACHINE ?= "qemu-x86_defconfig"