blob: 495418fa04b3b4ca10d500e13954893930c08e3f [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001# For runqemu
2IMAGE_CLASSES += "qemuboot"
Brad Bishop393846f2019-05-20 12:24:11 -04003QB_CPU_x86 = "-cpu core2duo"
4QB_CPU_KVM_x86 = "-cpu core2duo"
Patrick Williamsc0f7c042017-02-23 20:41:17 -06005
Patrick Williamsc0f7c042017-02-23 20:41:17 -06006QB_CPU_x86-64 = "-cpu core2duo"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007QB_CPU_KVM_x86-64 = "-cpu core2duo"
Patrick Williamsc0f7c042017-02-23 20:41:17 -06008
9QB_AUDIO_DRV = "alsa"
10QB_AUDIO_OPT = "-soundhw ac97,es1370"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050011QB_KERNEL_CMDLINE_APPEND = "vga=0 uvesafb.mode_option=${UVESA_MODE} oprofile.timer=1 uvesafb.task_timeout=-1"
Brad Bishop79641f22019-09-10 07:20:22 -040012QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013# Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy
Brad Bishop19323692019-04-05 15:28:33 -040014QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016UVESA_MODE ?= "640x480-32"