[oe-commits] [openembedded-core] 05/09: kernel-yocto: Stop the build if defconfig is missing

git at git.openembedded.org git at git.openembedded.org
Sun Dec 10 18:03:39 UTC 2017


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

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

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

    kernel-yocto: Stop the build if defconfig is missing
    
    The bberror does not stop the build correctly, this should be a
    bbfatal_log to ensure the failure correctly stops the build and logs
    the failure.
    
    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 98ec78f..2edf0fd 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -146,7 +146,7 @@ do_kernel_metadata() {
 	if [ -z "$bsp_definition" ]; then
 		echo "$sccs" | grep -q defconfig
 		if [ $? -ne 0 ]; then
-			bberror "Could not locate BSP definition for ${KMACHINE}/${LINUX_KERNEL_TYPE} and no defconfig was provided"
+			bbfatal_log "Could not locate BSP definition for ${KMACHINE}/${LINUX_KERNEL_TYPE} and no defconfig was provided"
 		fi
 	fi
 	meta_dir=$(kgit --meta)

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


More information about the Openembedded-commits mailing list