aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Werner <ken.werner@linaro.org>2012-05-16 10:03:12 +0200
committerKen Werner <ken.werner@linaro.org>2012-05-16 10:03:12 +0200
commit4985a5f4af8492cddecddf0475809afaf6c33198 (patch)
tree4af7cbfdd24a011f346ea1834a587a78c791942e
parent5f38ba6ae16467d5a4d76dfdba8a5ae2d6ebadcf (diff)
Fix typo and simplify the FILESEXTRAPATHS
This change fixes the COMPATIBLE_MACHINE typo and backports 79379b7ab05198ad5755321be0cd7785bf65c189 from meta-linaro master that simplifies the FILESEXTRAPATHS. Signed-off-by: Ken Werner <ken.werner@linaro.org>
-rw-r--r--recipes-kernel/linux/linux-yocto_3.2.bbappend8
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes-kernel/linux/linux-yocto_3.2.bbappend b/recipes-kernel/linux/linux-yocto_3.2.bbappend
index eec49245..16ad9f6f 100644
--- a/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -1,8 +1,12 @@
KMACHINE_qemuarmv7a = "arm-versatile-926ejs"
KBRANCH_qemuarmv7a = "standard/default/arm-versatile-926ejs"
-OMPATIBLE_MACHINE_qemuarmv7a = "qemuarmv7a"
-FILESEXTRAPATHS := "${THISDIR}/${PN}/${MACHINE}:"
+COMPATIBLE_MACHINE_qemuarmv7a = "qemuarmv7a"
+
+# To find the defconfig in case of "qemuarmv7a" BitBake searches the
+# $MACHINE subdir automatically. Therefore it is sufficient to add the
+# location of this bbappend file to the FILESEXTRAPATHS variable.
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
DEFCONFIG = ""
DEFCONFIG_qemuarmv7a = "file://defconfig"