30 lines
705 B
Plaintext
30 lines
705 B
Plaintext
|
#@TYPE: Machine
|
||
|
#@NAME: common_pc
|
||
|
#@DESCRIPTION: Machine configuration for running a common x86
|
||
|
|
||
|
PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
|
||
|
|
||
|
require conf/machine/include/tune-i586.inc
|
||
|
require conf/machine/include/qemu.inc
|
||
|
|
||
|
MACHINE_FEATURES += "x86"
|
||
|
|
||
|
KERNEL_IMAGETYPE = "bzImage"
|
||
|
|
||
|
SERIAL_CONSOLE = "115200 ttyS0"
|
||
|
|
||
|
# We bypass swrast but we need it to be present for X to load correctly
|
||
|
XSERVER ?= "xserver-xorg \
|
||
|
mesa-dri-driver-swrast \
|
||
|
xf86-input-vmmouse \
|
||
|
xf86-input-keyboard \
|
||
|
xf86-input-evdev \
|
||
|
xf86-video-vmware \
|
||
|
qemugl"
|
||
|
|
||
|
GLIBC_ADDONS = "nptl"
|
||
|
GLIBC_EXTRA_OECONF = "--with-tls"
|
||
|
|
||
|
MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "v86d"
|
||
|
|