From f8e08ecdab7c16352fe2d1d1e12557be213889b1 Mon Sep 17 00:00:00 2001 From: California Sullivan Date: Wed, 10 May 2017 14:59:04 -0700 Subject: recipes-kernel/linux/*: Standardize use of KERNEL_FEATURES_INTEL_COMMON 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 Signed-off-by: Saul Wold --- common/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend') diff --git a/common/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend b/common/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend index 98d42bf3..28741825 100644 --- a/common/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend +++ b/common/recipes-kernel/linux/linux-yocto-tiny_4.10.bbappend @@ -1,5 +1,7 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" +KERNEL_FEATURES_INTEL_COMMON ?= "" + COMPATIBLE_MACHINE_i586-nlp-32-intel-common = "${MACHINE}" COMPATIBLE_MACHINE_core2-32-intel-common = "${MACHINE}" COMPATIBLE_MACHINE_corei7-64-intel-common = "${MACHINE}" -- cgit v1.2.3-54-g00ecf