[oe-commits] [openembedded-core] 37/40: kernel-yocto: ensure sccs variable is set when using KBUILD_DEFCONFIG

git at git.openembedded.org git at git.openembedded.org
Sun Dec 10 22:46:33 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit b63cc051f1eb58c768f49db2c04843336e62d3df
Author: Saul Wold <sgw at linux.intel.com>
AuthorDate: Mon Dec 4 10:39:23 2017 -0500

    kernel-yocto: ensure sccs variable is set when using KBUILD_DEFCONFIG
    
    When using KBUILD_DEFCONFIG, $sccs should be set to the $WORKDIR/defconfig
    regardless if it compares or is copied. Otherwise $sccs is not set and the
    defconfig is not found correctly.
    
    Part of
    [YOCTO #12162]
    
    Signed-off-by: Saul Wold <sgw at linux.intel.com>
    Signed-off-by: Bruce Ashfield <bruce.ashfield at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel-yocto.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 1d44795..98ec78f 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -110,8 +110,8 @@ do_kernel_metadata() {
 				fi
 			else
 				cp -f ${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG} ${WORKDIR}/defconfig
-				sccs="${WORKDIR}/defconfig"
 			fi
+			sccs="${WORKDIR}/defconfig"
 		else
 			bbfatal "A KBUILD_DEFCONFIG '${KBUILD_DEFCONFIG}' was specified, but not present in the source tree"
 		fi

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list