blob: dd7e7c93841330e45731dd745c573a2036c5fed0 [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001# For runqemu
2IMAGE_CLASSES += "qemuboot"
Andrew Geissler6aa7eec2023-03-03 12:41:14 -06003QB_SMP ?= "-smp 4"
Patrick Williams03907ee2022-05-01 06:28:52 -05004QB_CPU:x86 = "-cpu IvyBridge -machine q35,i8042=off"
5QB_CPU_KVM:x86 = "-cpu IvyBridge -machine q35,i8042=off"
Patrick Williamsc0f7c042017-02-23 20:41:17 -06006
Patrick Williams03907ee2022-05-01 06:28:52 -05007QB_CPU:x86-64 = "-cpu IvyBridge -machine q35,i8042=off"
8QB_CPU_KVM:x86-64 = "-cpu IvyBridge -machine q35,i8042=off"
Patrick Williamsc0f7c042017-02-23 20:41:17 -06009
10QB_AUDIO_DRV = "alsa"
Andrew Geissler9aee5002022-03-30 16:27:02 +000011QB_AUDIO_OPT = "-device AC97"
William A. Kennington IIIac69b482021-06-02 12:28:27 -070012QB_KERNEL_CMDLINE_APPEND = "oprofile.timer=1 tsc=reliable no_timer_check rcupdate.rcu_expedited=1"
Patrick Williams03907ee2022-05-01 06:28:52 -050013QB_OPT_APPEND = "-usb -device usb-tablet -usb -device usb-kbd"