mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 04:03:03 +01:00
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>
24 lines
668 B
Plaintext
24 lines
668 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: QEMU PPC64 machine
|
|
#@DESCRIPTION: Machine configuration for running a PPC system on QEMU
|
|
|
|
require conf/machine/include/qemu.inc
|
|
require conf/machine/include/powerpc/tune-power9.inc
|
|
|
|
KERNEL_IMAGETYPE = "vmlinux"
|
|
|
|
SERIAL_CONSOLES ?= "115200;hvc0"
|
|
|
|
# For runqemu
|
|
QB_SYSTEM_NAME = "qemu-system-ppc64"
|
|
QB_MACHINE = "-machine pseries"
|
|
QB_CPU = "-cpu POWER9"
|
|
QB_SMP ?= "-smp 2"
|
|
|
|
QB_NFSROOTFS_EXTRA_OPT = "wsize=524288,rsize=524288"
|
|
QB_KERNEL_CMDLINE_APPEND = "console=hvc0 nohugevmalloc"
|
|
#QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd"
|
|
QB_OPT_APPEND = "-usb -device usb-tablet"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += " kernel-modules"
|