blob: 648cf2fe8f69ac2e39dcf57e08e2db6620cd0b33 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#@TYPE: Machine
Brad Bishop19323692019-04-05 15:28:33 -04002#@NAME: QEMU x86-64 machine
3#@DESCRIPTION: Machine configuration for running an x86-64 system on QEMU
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004
5PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
6PREFERRED_PROVIDER_virtual/libgl ?= "mesa"
7PREFERRED_PROVIDER_virtual/libgles1 ?= "mesa"
8PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa"
9
10require conf/machine/include/qemu.inc
11DEFAULTTUNE ?= "core2-64"
12require conf/machine/include/tune-core2.inc
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013require conf/machine/include/qemuboot-x86.inc
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080015UBOOT_MACHINE ?= "qemu-x86_64_defconfig"
16
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017KERNEL_IMAGETYPE = "bzImage"
18
Brad Bishop37a0e4d2017-12-04 01:01:44 -050019SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
Brad Bishop79641f22019-09-10 07:20:22 -040021# Install swrast and glx if opengl is in DISTRO_FEATURES and x32 is not in use.
22# This is because gallium swrast driver was found to crash X server on startup in qemu x32.
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023XSERVER = "xserver-xorg \
Brad Bishop79641f22019-09-10 07:20:22 -040024 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', \
25 bb.utils.contains('TUNE_FEATURES', 'mx32', '', 'mesa-driver-swrast xserver-xorg-extension-glx', d), '', d)} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026 xf86-video-cirrus \
27 xf86-video-fbdev \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028 xf86-video-vmware \
29 xf86-video-modesetting \
Brad Bishop79641f22019-09-10 07:20:22 -040030 xf86-video-vesa \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060031 xserver-xorg-module-libint10 \
32 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034MACHINE_FEATURES += "x86 pci"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035
36MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "v86d"
Brad Bishop37a0e4d2017-12-04 01:01:44 -050037
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080038MACHINE_EXTRA_RRECOMMENDS = "kernel-module-snd-ens1370 kernel-module-snd-rawmidi"
39
Brad Bishopd7bf8c12018-02-25 22:55:05 -050040KERNEL_MODULE_AUTOLOAD += "uvesafb"
41KERNEL_MODULE_PROBECONF += "uvesafb"
42module_conf_uvesafb = "options uvesafb mode_option=${UVESA_MODE}"
43
Brad Bishopd5ae7d92018-06-14 09:52:03 -070044WKS_FILE ?= "qemux86-directdisk.wks"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050045do_image_wic[depends] += "syslinux:do_populate_sysroot syslinux-native:do_populate_sysroot mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot"
Brad Bishop08902b02019-08-20 09:16:51 -040046
47#For runqemu
48QB_SYSTEM_NAME = "qemu-system-x86_64"