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>
13 lines
557 B
Plaintext
13 lines
557 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
KERNEL_FEATURES_INTEL_COMMON ?= ""
|
|
|
|
LINUX_VERSION_i586-nlp-32-intel-common = "4.1.39"
|
|
SRCREV_meta_i586-nlp-32-intel-common = "a867edab415f0ddc1a0d8da6ddb43c8afa9611dd"
|
|
SRCREV_machine_i586-nlp-32-intel-common = "17e44fa855e657b2fd7bd810c42615fe6318c99b"
|
|
|
|
COMPATIBLE_MACHINE_i586-nlp-32-intel-common = "${MACHINE}"
|
|
KBRANCH_i586-nlp-32-intel-common = "standard/tiny/intel/base"
|
|
KMACHINE_i586-nlp-32-intel-common = "intel-quark"
|
|
KERNEL_FEATURES_append_i586-nlp-32-intel-common = "${KERNEL_FEATURES_INTEL_COMMON}"
|