summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2023-02-21 15:44:44 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-23 12:11:29 +0000
commit9e0145df7a9d18b97edc617d1321dc361648bb04 (patch)
tree65e50e5e4829bdf4c99435bd1ff3e9865f26923e /meta/conf/machine/include
parent84f3d39dd24c8a814cf974aa390ffa558421eebd (diff)
downloadpoky-9e0145df7a9d18b97edc617d1321dc361648bb04.tar.gz
QB_SMP: allow user modification
Allow a user to override the QM_SMP value giving them the opportunity to select for themselves the number of CPUs to use in qemu. (From OE-Core rev: 70a91e6d0357149c00b97f7e66e16cbc52997a92) Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include')
-rw-r--r--meta/conf/machine/include/riscv/qemuriscv.inc2
-rw-r--r--meta/conf/machine/include/x86/qemuboot-x86.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/machine/include/riscv/qemuriscv.inc b/meta/conf/machine/include/riscv/qemuriscv.inc
index 1d32b4a582..c977a266ca 100644
--- a/meta/conf/machine/include/riscv/qemuriscv.inc
+++ b/meta/conf/machine/include/riscv/qemuriscv.inc
@@ -26,7 +26,7 @@ UBOOT_ENTRYPOINT:riscv32 = "0x80400000"
26UBOOT_ENTRYPOINT:riscv64 = "0x80200000" 26UBOOT_ENTRYPOINT:riscv64 = "0x80200000"
27 27
28# qemuboot options 28# qemuboot options
29QB_SMP = "-smp 4" 29QB_SMP ?= "-smp 4"
30QB_KERNEL_CMDLINE_APPEND = "earlycon=sbi" 30QB_KERNEL_CMDLINE_APPEND = "earlycon=sbi"
31QB_MACHINE = "-machine virt" 31QB_MACHINE = "-machine virt"
32QB_DEFAULT_BIOS = "fw_jump.elf" 32QB_DEFAULT_BIOS = "fw_jump.elf"
diff --git a/meta/conf/machine/include/x86/qemuboot-x86.inc b/meta/conf/machine/include/x86/qemuboot-x86.inc
index 3953679366..dd7e7c9384 100644
--- a/meta/conf/machine/include/x86/qemuboot-x86.inc
+++ b/meta/conf/machine/include/x86/qemuboot-x86.inc
@@ -1,6 +1,6 @@
1# For runqemu 1# For runqemu
2IMAGE_CLASSES += "qemuboot" 2IMAGE_CLASSES += "qemuboot"
3QB_SMP = "-smp 4" 3QB_SMP ?= "-smp 4"
4QB_CPU:x86 = "-cpu IvyBridge -machine q35,i8042=off" 4QB_CPU:x86 = "-cpu IvyBridge -machine q35,i8042=off"
5QB_CPU_KVM:x86 = "-cpu IvyBridge -machine q35,i8042=off" 5QB_CPU_KVM:x86 = "-cpu IvyBridge -machine q35,i8042=off"
6 6