mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-04 16:10:06 +00:00
We want to use emgd-1.14 & emgd-1.16 recipe interchangeably. As the some of the generated package names include versions which will be different in the emgd-1.16 recipe, this version part is stripped from the package names so that it will match with the emgd-1.16 recipe package names. All the BSP configuration which were using these package names also change accordingly to avoid any build issues. Also with the 2 versions of emgd recipes make sure that BSPs don't start using the emgd-1.16 version until they have been validated to work by specifying the preferred emgd recipe version for the relevant BSPs. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Acked-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: sys940x
|
|
|
|
#@WEBTITLE: Intel Atom E6xx Processor with Intel EG20T Controller Hub Development Kit (Queens Bay) with Proprietary IEMGD Accelerated Graphics
|
|
|
|
#@DESCRIPTION: Machine configuration for Inforce SYS940x systems
|
|
|
|
require conf/machine/include/tune-atom.inc
|
|
require conf/machine/include/ia32-base.inc
|
|
require conf/machine/include/meta-intel.inc
|
|
|
|
# Add "pcbios" if you have a non-efi version of the firmware
|
|
MACHINE_FEATURES += "efi pcbios gst-va-mixvideo"
|
|
|
|
PREFERRED_VERSION_linux-yocto ?= "3.4%"
|
|
|
|
XSERVER ?= "${XSERVER_IA32_BASE} \
|
|
${XSERVER_IA32_EXT} \
|
|
${XSERVER_IA32_EMGD} \
|
|
"
|
|
|
|
PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
|
|
PREFERRED_VERSION_mesa-dri ?= "8.0.4"
|
|
PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
|
|
PREFERRED_VERSION_emgd-driver-bin ?= "1.14"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyS0"
|
|
APPEND += "console=ttyS0,115200 console=tty0"
|
|
|
|
# Some of the EMGD components have dependency on libx11.
|
|
# Add these only when Xserver is enabled with the EMGD driver
|
|
# Otherwise unwanted X components will start showing up in the non-X images
|
|
VA_FEATURES ?= "gst-va-intel va-intel \
|
|
${@bb.utils.contains("XSERVER", "emgd-driver-bin", "emgd-driver-video emgd-gst-plugins-va emgd-gst-plugins-mixvideo", "", d)}"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += "${VA_FEATURES}"
|