aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-04-07 22:18:17 -0700
committerKen Werner <ken.werner@linaro.org>2012-04-30 10:52:58 +0200
commitcad2f0008b28ddf0904b6aae921add51a2f3931c (patch)
treed0325d40573c5daea4f0f889dc7af92bb38c76d9
parent6fd74e31d16255e3895b7e4be608e6e1e5bb1dfd (diff)
linux-yocto_3.2.bbappend: Fix defconfig override
Add it to SRC_URI only when qemuarmv7a machine is used. Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--recipes-kernel/linux/linux-yocto_3.2.bbappend6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-kernel/linux/linux-yocto_3.2.bbappend b/recipes-kernel/linux/linux-yocto_3.2.bbappend
index ac9d96f5..1514adfe 100644
--- a/recipes-kernel/linux/linux-yocto_3.2.bbappend
+++ b/recipes-kernel/linux/linux-yocto_3.2.bbappend
@@ -3,6 +3,8 @@ KBRANCH_qemuarmv7a = "standard/default/arm-versatile-926ejs"
COMPATIBLE_MACHINE = "(qemuarm|qemuarmv7a|qemux86|qemuppc|qemumips|qemux86-64)"
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}/${MACHINE}:"
+FILESEXTRAPATHS =. "${THISDIR}/${PN}/${MACHINE}:"
-SRC_URI_append = " file://defconfig"
+DEFCONFIG = ""
+DEFCONFIG_qemuarmv7a = "file://defconfig"
+SRC_URI += "${DEFCONFIG}"