mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-04 16:10:06 +00:00
Various changes to configuration, including wifi, nftables, virtualbox, bluetooth, and smp options. Signed-off-by: Ismo Puustinen <ismo.puustinen@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 ?= "c7475df230529efcf75575b968ac3aaa962903e0"
|
|
SRCREV_meta ?= "de57de86e23493d9356fc4cc0e92a3df58a29032"
|
|
|
|
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 = ""
|