[oe-commits] [openembedded-core] 17/19: Revert "kernel-devicetree: Corrected normalize_dtb"

git at git.openembedded.org git at git.openembedded.org
Wed Jul 4 23:27:04 UTC 2018


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 349949595e00c5591721ddd9f65bb5bb5e46b113
Author: Martin Jansa <martin.jansa at gmail.com>
AuthorDate: Wed Jul 4 20:06:54 2018 +0000

    Revert "kernel-devicetree: Corrected normalize_dtb"
    
    This reverts commit 2e7f3b2b9318d1e5395ad58131eafb873f614326.
    
    It was breaking quite common use case that the dtb files are in
    some subdirectory and then kernel build fails to build them.
    
    As reported by khem:
    http://lists.openembedded.org/pipermail/openembedded-core/2018-July/152578.html
    me:
    http://lists.openembedded.org/pipermail/openembedded-core/2018-July/152579.html
    on raspberrypi3 build:
    
    make[3]: *** No rule to make target 'arch/arm/boot/dts/dwc2.dtbo'.  Stop.
    arch/arm/Makefile:345: recipe for target 'dwc2.dtbo' failed
    make[2]: *** [dwc2.dtbo] Error 2
    Makefile:146: recipe for target 'sub-make' failed
    
    and trevor on the IRC:
    20:35:49 < tlwoerner> the recent 2e7f3b2b9318d1e5395ad58131eafb873f614326 commit in oe-core seems to cause dragonboard-410c's kernel to fail to build
    20:36:26 < tlwoerner> for the dragonboard-410c, KERNEL_DEVICETREE is set to "qcom/apq8016-sbc.dtb" but the build failure is:
    20:36:37 < tlwoerner> *** No rule to make target 'arch/arm64/boot/dts/dts/qcom/apq8016-sbc.dtb'.  Stop.
    20:36:44 < tlwoerner> i.e. the "qcom/" is getting removed
    20:37:08 < tlwoerner> oops!!
    20:37:33 < tlwoerner> wrong copy&paste, the actual error is:
    20:37:36 < tlwoerner> *** No rule to make target 'arch/arm64/boot/dts/apq8016-sbc.dtb'.  Stop.
    20:37:53 < tlwoerner> i.e., the "qcom/" is being stripped out
    
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel-devicetree.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel-devicetree.bbclass b/meta/classes/kernel-devicetree.bbclass
index 7faa869..9c5e125 100644
--- a/meta/classes/kernel-devicetree.bbclass
+++ b/meta/classes/kernel-devicetree.bbclass
@@ -13,8 +13,8 @@ normalize_dtb () {
 	dtb="$1"
 	if echo $dtb | grep -q '/dts/'; then
 		bbwarn "$dtb contains the full path to the the dts file, but only the dtb name should be used."
+		dtb=`basename $dtb | sed 's,\.dts$,.dtb,g'`
 	fi
-	dtb=`basename $dtb | sed 's,\.dts$,.dtb,g'`
 	echo "$dtb"
 }
 

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


More information about the Openembedded-commits mailing list