summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2011-01-04 00:20:14 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-10 21:04:44 +0000
commit1759fee63889219ab5ee52124c237eec902de525 (patch)
tree5295c70a8f1cf8c58e6737790758539045206c11 /meta/classes
parent2b2dbf76126650750cb8a6778b837af6fe4c8b21 (diff)
downloadast2050-yocto-poky-1759fee63889219ab5ee52124c237eec902de525.zip
ast2050-yocto-poky-1759fee63889219ab5ee52124c237eec902de525.tar.gz
kernel-yocto: pass the build directory to configme
configme used to be able to calculate the output/build directory when branches were always <machine>-<kernel type>. Branch names can now be widely different and to avoid embedding complexity in the scripts it is easier to just pass ${B} from the build system down to the scripts. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/kernel-yocto.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 7ebe5d6..df2a8a4 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -121,7 +121,7 @@ do_kernel_configme() {
echo "[INFO] doing kernel configme"
cd ${S}
- configme --reconfig
+ configme --reconfig --output ${B}
if [ $? -ne 0 ]; then
echo "ERROR. Could not configure ${KMACHINE}-${LINUX_KERNEL_TYPE}"
exit 1
OpenPOWER on IntegriCloud