From 1759fee63889219ab5ee52124c237eec902de525 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 4 Jan 2011 00:20:14 -0500 Subject: kernel-yocto: pass the build directory to configme configme used to be able to calculate the output/build directory when branches were always -. 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 --- meta/classes/kernel-yocto.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/kernel-yocto.bbclass') diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 7ebe5d69aa..df2a8a43bc 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 -- cgit v1.2.3-54-g00ecf