summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-11 10:50:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-13 18:09:10 +0100
commite8997d869bdee77f3eb4dbafb72e5adc480a6c3e (patch)
treea8e6c5cbb6309dde003fe55542fc9a3876dfc0db /meta/conf/machine
parent34e1bea0e846b88200e933c96a539fb440dec4df (diff)
downloadpoky-e8997d869bdee77f3eb4dbafb72e5adc480a6c3e.tar.gz
qemuboot-x86: Switch to IvyBridge and q35 instead of pc
Move from 1996 to 2009 by swapping machine 'pc' for 'q35'. Also move to a CPU which is SMP capable and doesn't have tsc bugs. IvyBridge matches what we're using on the autobuilder. The intent here is to try and improve on some of the intermittent autobuilder issues we're seeing. I'm told that nobody else runs with config this old and it could well be contributing to our issues. Having reliable testing is key to the project and justifies updating this IMO. (From OE-Core rev: 6d9f25782bd585e89c5aaf7046266c848f1e581b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r--meta/conf/machine/include/qemuboot-x86.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/conf/machine/include/qemuboot-x86.inc b/meta/conf/machine/include/qemuboot-x86.inc
index 9b1e1c4975..0038540027 100644
--- a/meta/conf/machine/include/qemuboot-x86.inc
+++ b/meta/conf/machine/include/qemuboot-x86.inc
@@ -1,11 +1,11 @@
1# For runqemu 1# For runqemu
2IMAGE_CLASSES += "qemuboot" 2IMAGE_CLASSES += "qemuboot"
3QB_SMP = "-smp 4" 3QB_SMP = "-smp 4"
4QB_CPU_x86 = "-cpu core2duo" 4QB_CPU_x86 = "-cpu IvyBridge -machine q35"
5QB_CPU_KVM_x86 = "-cpu core2duo" 5QB_CPU_KVM_x86 = "-cpu IvyBridge -machine q35"
6 6
7QB_CPU_x86-64 = "-cpu core2duo" 7QB_CPU_x86-64 = "-cpu IvyBridge -machine q35"
8QB_CPU_KVM_x86-64 = "-cpu core2duo" 8QB_CPU_KVM_x86-64 = "-cpu IvyBridge -machine q35"
9 9
10QB_AUDIO_DRV = "alsa" 10QB_AUDIO_DRV = "alsa"
11QB_AUDIO_OPT = "-soundhw ac97,es1370" 11QB_AUDIO_OPT = "-soundhw ac97,es1370"