[oe-commits] [openembedded-core] 11/11: u-boot.inc: Fix devtool build u-boot for u-boot without menuconfig

git at git.openembedded.org git at git.openembedded.org
Wed Jan 29 11:57:30 UTC 2020


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 c01c387c353dd6f196952befe4eac2ccdc3a34ba
Author: Tom Hochstein <tom.hochstein at nxp.com>
AuthorDate: Wed Nov 20 19:25:51 2019 +0000

    u-boot.inc: Fix devtool build u-boot for u-boot without menuconfig
    
    For u-boot recipes without menuconfig support, running devtool results
    in a do_configure error:
    
    cp: cannot stat '/home/r60874/upstream/fsl-xwayland/tmp/work/imx8mmevk-fsl-linux/u-boot-imx/2018.03-r0/u-boot-imx-2018.03//.config': No such file or directory
    
    The problem arises because u-boot.inc supports recipes with and without
    menuconfig.
    
    Fix the problem by properly setting DEVTOOL_DISABLE_MENUCONFIG so that devtool
    can control logic that applies only for menuconfig support.
    
    Signed-off-by: Tom Hochstein <tom.hochstein at nxp.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-bsp/u-boot/u-boot.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index ec77762..648298d 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -85,6 +85,8 @@ do_configure () {
         fi
         merge_config.sh -m .config ${@" ".join(find_cfgs(d))}
         cml1_do_configure
+    else
+        DEVTOOL_DISABLE_MENUCONFIG=true
     fi
 }
 

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


More information about the Openembedded-commits mailing list