mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

The gst-ffmpeg recipe in oe-core had LICENSE_FLAGS added to make it "commercial", so to avoid build errors the BSPs that use it (via the gst-va-intel VA_FEATURE) should only include it if the user has added "commercial" to LICENSE_FLAGS_WHITELIST when building. This adds a conditional to detect that, along with a NOTE in the README to explain the need for the flag. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
32 lines
896 B
Plaintext
32 lines
896 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: sys940x
|
|
|
|
#@DESCRIPTION: Machine configuration for Inforce SYS940x systems
|
|
# i.e. E660 + EG20T
|
|
|
|
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.2%"
|
|
|
|
XSERVER ?= "${XSERVER_IA32_BASE} \
|
|
${XSERVER_IA32_EXT} \
|
|
${XSERVER_IA32_EMGD} \
|
|
"
|
|
|
|
PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
|
|
PREFERRED_VERSION_mesa-dri ?= "7.11"
|
|
PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyS0"
|
|
APPEND += "console=ttyS0,115200 console=tty0"
|
|
|
|
VA_FEATURES = "${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", \
|
|
"commercial", "gst-va-intel va-intel", "va-intel", d)}"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += "${VA_FEATURES}"
|