Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1 | # For runqemu |
| 2 | IMAGE_CLASSES += "qemuboot" |
Andrew Geissler | 6aa7eec | 2023-03-03 12:41:14 -0600 | [diff] [blame] | 3 | QB_SMP ?= "-smp 4" |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 4 | QB_CPU:x86 ?= "-cpu IvyBridge -machine q35,i8042=off" |
| 5 | QB_CPU_KVM:x86 ?= "-cpu IvyBridge -machine q35,i8042=off" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 6 | |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 7 | QB_CPU:x86-64 ?= "-cpu IvyBridge -machine q35,i8042=off" |
| 8 | QB_CPU_KVM:x86-64 ?= "-cpu IvyBridge -machine q35,i8042=off" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 9 | |
| 10 | QB_AUDIO_DRV = "alsa" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 11 | QB_AUDIO_OPT = "-device AC97" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 12 | QB_KERNEL_CMDLINE_APPEND = "oprofile.timer=1 tsc=reliable no_timer_check rcupdate.rcu_expedited=1" |
Patrick Williams | 03907ee | 2022-05-01 06:28:52 -0500 | [diff] [blame] | 13 | QB_OPT_APPEND = "-usb -device usb-tablet -usb -device usb-kbd" |