[oe-commits] [openembedded-core] 19/23: uboot-sign: Fix u-boot-nodtb symlinks

git at git.openembedded.org git at git.openembedded.org
Wed May 8 22:37:17 UTC 2019


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 14ca6e2a8b3375b16c3f97bb0cf03a441dfc39ed
Author: Ying-Chun Liu (PaulLiu) <paulliu at debian.org>
AuthorDate: Wed May 8 18:53:25 2019 +0800

    uboot-sign: Fix u-boot-nodtb symlinks
    
    When using u-boot-nodtb, the symlink didn't install correctly to the
    ${DEPLOYDIR}. This commit fixes this bug.
    
    Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu at debian.org>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/uboot-sign.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass
index 6385a06..8beafff 100644
--- a/meta/classes/uboot-sign.bbclass
+++ b/meta/classes/uboot-sign.bbclass
@@ -53,8 +53,8 @@ concat_dtb_helper() {
 
 	if [ -f "${UBOOT_NODTB_BINARY}" ]; then
 		install ${UBOOT_NODTB_BINARY} ${DEPLOYDIR}/${UBOOT_NODTB_IMAGE}
-		ln -sf ${UBOOT_NODTB_IMAGE} ${UBOOT_NODTB_SYMLINK}
-		ln -sf ${UBOOT_NODTB_IMAGE} ${UBOOT_NODTB_BINARY}
+		ln -sf ${UBOOT_NODTB_IMAGE} ${DEPLOYDIR}/${UBOOT_NODTB_SYMLINK}
+		ln -sf ${UBOOT_NODTB_IMAGE} ${DEPLOYDIR}/${UBOOT_NODTB_BINARY}
 	fi
 
 	# Concatenate U-Boot w/o DTB & DTB with public key

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


More information about the Openembedded-commits mailing list