mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-01 13:58:05 +00:00
Previously, some recipes hard set it to empty, and some recipes did not set it at all. So in some cases, it acted like a global variable you could modify, and in others you could only append to it. This behavior made it difficult to use (which I doubt anyone was doing). This patch changes the variable to be soft set to empty across all recipes. This way it can be used to globally change meta-intel kernels through a conf file, or individually in the different versioned recipes should the need arise. Signed-off-by: California Sullivan <california.l.sullivan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
43 lines
1.6 KiB
BlitzBasic
43 lines
1.6 KiB
BlitzBasic
|
|
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
# Skip processing of this recipe if it is not explicitly specified as the
|
|
# PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying
|
|
# to build multiple virtual/kernel providers, e.g. as dependency of
|
|
# core-image-rt-sdk, core-image-rt.
|
|
python () {
|
|
if d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-intel-rt":
|
|
raise bb.parse.SkipPackage("Set PREFERRED_PROVIDER_virtual/kernel to linux-intel-rt to enable it")
|
|
}
|
|
|
|
KBRANCH = "base-rt"
|
|
SRCREV_machine ?= "f51f4b9a23e0bebb841124b1a96a5734abfeef27"
|
|
SRCREV_meta ?= "803b8d600e45afa0375459bf599fe365571a3866"
|
|
|
|
SRC_URI = "git://github.com/01org/linux-intel-4.9.git;protocol=https;name=machine;branch=${KBRANCH}; \
|
|
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.9;destsuffix=${KMETA}"
|
|
|
|
LINUX_VERSION ?= "4.9.20"
|
|
LINUX_VERSION_EXTENSION ?= "-intel-pk-${LINUX_KERNEL_TYPE}"
|
|
|
|
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
KMETA = "kernel-meta"
|
|
KCONF_BSP_AUDIT_LEVEL = "2"
|
|
|
|
LINUX_KERNEL_TYPE = "preempt-rt"
|
|
KERNEL_FEATURES_INTEL_COMMON ?= ""
|
|
|
|
COMPATIBLE_MACHINE_core2-32-intel-common = "${MACHINE}"
|
|
KMACHINE_core2-32-intel-common = "intel-core2-32"
|
|
KERNEL_FEATURES_append_core2-32-intel-common = "${KERNEL_FEATURES_INTEL_COMMON}"
|
|
|
|
COMPATIBLE_MACHINE_corei7-64-intel-common = "${MACHINE}"
|
|
KMACHINE_corei7-64-intel-common = "intel-corei7-64"
|
|
KERNEL_FEATURES_append_corei7-64-intel-common = "${KERNEL_FEATURES_INTEL_COMMON}"
|
|
|
|
COMPATIBLE_MACHINE_i586-nlp-32-intel-common = "${MACHINE}"
|
|
KMACHINE_i586-nlp-32-intel-common = "intel-quark"
|
|
KERNEL_FEATURES_append_i586-nlp-32-intel-common = ""
|