summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/qemux86.conf
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-04-30 08:51:09 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-01 09:08:58 +0100
commitb89e99f927d472292abeee7b2ec95d5f8cf25db1 (patch)
tree8ad72459ec13408a05a6e412a28217fbc9d4bdd3 /meta/conf/machine/qemux86.conf
parent0c4fb7826f1ce02614ffc316b40fdb37a7848116 (diff)
downloadpoky-b89e99f927d472292abeee7b2ec95d5f8cf25db1.tar.gz
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. (From OE-Core rev: 0be64e54a0e67472eaff9c794a33d76971c9b1a3) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/qemux86.conf')
-rw-r--r--meta/conf/machine/qemux86.conf4
1 files changed, 3 insertions, 1 deletions
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"
8PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa" 8PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa"
9 9
10require conf/machine/include/qemu.inc 10require conf/machine/include/qemu.inc
11require conf/machine/include/tune-i586.inc 11DEFAULTTUNE ?= "i586"
12X86ARCH32 ?= "i586"
13require conf/machine/include/tune-corei7.inc
12require conf/machine/include/qemuboot-x86.inc 14require conf/machine/include/qemuboot-x86.inc
13 15
14UBOOT_MACHINE ?= "qemu-x86_defconfig" 16UBOOT_MACHINE ?= "qemu-x86_defconfig"