mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 13:59:40 +01:00
This commit adds macros for fbdev & modesetting X driver packages. (From OE-Core rev: c412a4eaf17fa29a4f2280f8be1dcf95346217a6) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
54 lines
1.2 KiB
PHP
54 lines
1.2 KiB
PHP
#
|
|
# base machine settings for ia32-architecture BSPs
|
|
#
|
|
|
|
#
|
|
# common settings for Intel-based machines
|
|
#
|
|
MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
|
|
acpi serial usbgadget alsa"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += "kernel-modules eee-acpi-scripts"
|
|
MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "grub"
|
|
|
|
IMAGE_FSTYPES += "ext3 cpio.gz live"
|
|
|
|
KERNEL_IMAGETYPE ?= "bzImage"
|
|
|
|
SERIAL_CONSOLE ?= "115200 ttyS0"
|
|
|
|
#
|
|
# kernel-related variables
|
|
#
|
|
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ??= "3.0%"
|
|
|
|
#
|
|
# XSERVER subcomponents, used to build the XSERVER variable
|
|
#
|
|
XSERVER_IA32_BASE = "xserver-xorg \
|
|
xf86-input-mouse \
|
|
xf86-input-keyboard \
|
|
xf86-input-evdev \
|
|
xf86-input-synaptics \
|
|
"
|
|
|
|
XSERVER_IA32_EXT = " \
|
|
xserver-xorg-extension-glx \
|
|
xserver-xorg-module-libint10 \
|
|
"
|
|
|
|
XSERVER_IA32_I915 = "xf86-video-intel \
|
|
mesa-dri-driver-i915 \
|
|
"
|
|
|
|
XSERVER_IA32_I965 = "xf86-video-intel \
|
|
mesa-dri-driver-i965 \
|
|
"
|
|
|
|
XSERVER_IA32_VESA = "xf86-video-vesa"
|
|
|
|
XSERVER_IA32_FBDEV = "xf86-video-fbdev"
|
|
|
|
XSERVER_IA32_MODESETTING = "xf86-video-modesetting"
|