From: Ying-Chun Liu (PaulLiu) Date: Wed, 8 May 2019 10:53:25 +0000 (+0800) Subject: uboot-sign: Fix u-boot-nodtb symlinks X-Git-Tag: 2019-04.2-warrior~189 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5979289d5f306d37fe5c8ed994bb833f2492ef32;p=openembedded-core.git 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) Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass index 6385a06c13..8beafff7c0 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