mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-04 16:10:06 +00:00
Using the default assignment operator (?=) requires the including recipes to ensure to assign the Linux kernel provider and version prior to including ia32-base.inc. By use the weak default assignment operator (??=), the assignment can come after the inclusion, which avoids confusion and can lead to a more natural recipe structure. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tom.zanussi@intel.com>
67 lines
1.5 KiB
HTML
67 lines
1.5 KiB
HTML
#
|
|
# 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"
|
|
|
|
#
|
|
# glibc-related variables
|
|
#
|
|
GLIBC_ADDONS ?= "nptl"
|
|
GLIBC_EXTRA_OECONF += "--with-tls"
|
|
|
|
#
|
|
# 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 \
|
|
mesa-dri \
|
|
"
|
|
|
|
XSERVER_IA32_EXT = "xserver-xorg-extension-dri \
|
|
xserver-xorg-extension-dri2 \
|
|
xserver-xorg-extension-glx \
|
|
xserver-xorg-extension-extmod \
|
|
xserver-xorg-extension-dbe \
|
|
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_EMGD = "emgd-driver-bin \
|
|
libva-x11 \
|
|
libva-tpi \
|
|
libva-glx \
|
|
libva-egl \
|
|
"
|
|
|
|
XSERVER_IA32_VESA = "xf86-video-vesa"
|