summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/multi-kernel.inc
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2015-02-28 01:49:37 +0000
committerDenys Dmytriyenko <denys@ti.com>2015-02-27 17:29:37 -0500
commit23d3e10a0ff7ea95d649dc22dc34b3e4010d8d77 (patch)
tree9f2c7f9c8d79cf3bf883bc211a86d8b28ff23916 /recipes-kernel/linux/multi-kernel.inc
parent4ce69eff28103778508d23af766e6204c95595d3 (diff)
downloadmeta-ti-23d3e10a0ff7ea95d649dc22dc34b3e4010d8d77.tar.gz
kernel .inc: fix the breakage due to S!=B separation in master
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-kernel/linux/multi-kernel.inc')
-rw-r--r--recipes-kernel/linux/multi-kernel.inc7
1 files changed, 3 insertions, 4 deletions
diff --git a/recipes-kernel/linux/multi-kernel.inc b/recipes-kernel/linux/multi-kernel.inc
index b3358f95..5d21d4ec 100644
--- a/recipes-kernel/linux/multi-kernel.inc
+++ b/recipes-kernel/linux/multi-kernel.inc
@@ -54,7 +54,7 @@ do_compileconfigs () {
54 54
55 for configname in ${WORKDIR}/configs/* ; do 55 for configname in ${WORKDIR}/configs/* ; do
56 # Copy in alternative config 56 # Copy in alternative config
57 cd ${S} 57 cd ${B}
58 cp $configname ${WORKDIR}/defconfig 58 cp $configname ${WORKDIR}/defconfig
59 59
60 # Build and Install this alternative kernel 60 # Build and Install this alternative kernel
@@ -96,7 +96,7 @@ do_compileconfigs () {
96 96
97 # Restore the regular 'defconfig' 97 # Restore the regular 'defconfig'
98 cp ${WORKDIR}/defconfig.save ${WORKDIR}/defconfig 98 cp ${WORKDIR}/defconfig.save ${WORKDIR}/defconfig
99 cd ${S} 99 cd ${B}
100 do_configure 100 do_configure
101 fi 101 fi
102} 102}
@@ -106,8 +106,7 @@ do_deploy_append () {
106 install -d ${DEPLOYDIR} 106 install -d ${DEPLOYDIR}
107 107
108 # Drop the regular defconfig along side the others for consistency 108 # Drop the regular defconfig along side the others for consistency
109 cd ${S} 109 cp ${B}/.config ${DEPLOYDIR}/config-${PV}-${PR}-${MACHINE}.config
110 cp .config ${DEPLOYDIR}/config-${PV}-${PR}-${MACHINE}.config
111 110
112 # add symlink 111 # add symlink
113 cd ${DEPLOYDIR} 112 cd ${DEPLOYDIR}