mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
To try and help with the inermittent rcu stalls and boot issues with qemu add some kernel commandline options commonly used with qemu instances which were suggested may help. (From OE-Core rev: d75cb16ecb3a55fd7631bf7720663e4b196421ee) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
450 B
HTML
15 lines
450 B
HTML
# For runqemu
|
|
IMAGE_CLASSES += "qemuboot"
|
|
QB_SMP = "-smp 4"
|
|
QB_CPU_x86 = "-cpu IvyBridge -machine q35"
|
|
QB_CPU_KVM_x86 = "-cpu IvyBridge -machine q35"
|
|
|
|
QB_CPU_x86-64 = "-cpu IvyBridge -machine q35"
|
|
QB_CPU_KVM_x86-64 = "-cpu IvyBridge -machine q35"
|
|
|
|
QB_AUDIO_DRV = "alsa"
|
|
QB_AUDIO_OPT = "-soundhw ac97,es1370"
|
|
QB_KERNEL_CMDLINE_APPEND = "oprofile.timer=1 tsc=reliable no_timer_check rcupdate.rcu_expedited=1"
|
|
QB_OPT_APPEND = "-usb -device usb-tablet"
|
|
|