aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-04-07 22:18:17 -0700
committerKhem Raj <raj.khem@gmail.com>2012-04-25 00:18:26 -0700
commit980f17a4d6bce1e2a8f6752edcf1a4e8775d3595 (patch)
tree62c3bb1cc19556e7a0d99e376d12aa937b4ad55c
parent32411db15368905d4cd874c66425ecb04f976961 (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}"