From bf97ece14e1444e3898798599a4299ad1c7556c6 Mon Sep 17 00:00:00 2001 From: Nitin A Kamble Date: Tue, 17 Jun 2014 17:47:44 -0700 Subject: linux-yocto recipes: fix use of module_autoload_* vars oecore/poky layer changed, needing replacement of all the module_autoload_* recipe variables by the KERNEL_MODULE_AUTOLOAD variable. This fixes these kind of buildtime errors coming from the meta-intel layer: ERROR: KERNEL_MODULE_AUTOLOAD has replaced module_autoload_iwlwifi, please replace it! Addresses bug: [YOCTO #6460] Signed-off-by: Nitin A Kamble Signed-off-by: Tom Zanussi --- common/recipes-kernel/linux/linux-yocto_3.14.bbappend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/recipes-kernel/linux/linux-yocto_3.14.bbappend') diff --git a/common/recipes-kernel/linux/linux-yocto_3.14.bbappend b/common/recipes-kernel/linux/linux-yocto_3.14.bbappend index 3c34f095..139c1f0a 100644 --- a/common/recipes-kernel/linux/linux-yocto_3.14.bbappend +++ b/common/recipes-kernel/linux/linux-yocto_3.14.bbappend @@ -20,7 +20,7 @@ KBRANCH_corei7-64-intel-common = "standard/base" KERNEL_FEATURES_append_corei7-64-intel-common = "${KERNEL_FEATURES_INTEL_COMMON}" # For Crystalforest and Romley -module_autoload_uio = "uio" +KERNEL_MODULE_AUTOLOAD += "uio" # For FRI2, NUC -module_autoload_iwlwifi = "iwlwifi" +KERNEL_MODULE_AUTOLOAD += "iwlwifi" -- cgit v1.2.3-54-g00ecf