diff options
author | Ying-Chun Liu (PaulLiu) <paulliu@debian.org> | 2019-05-08 18:53:25 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-09 16:31:56 +0100 |
commit | c99aa3eb43811524b388d5bf42e5363948f12c6c (patch) | |
tree | b101fc2dd14d02c2fea24b197beaa4ac2b88173a /meta/classes/uboot-sign.bbclass | |
parent | 92290d3b7010d1f6c1206c1974deadf2423cfe6f (diff) | |
download | poky-c99aa3eb43811524b388d5bf42e5363948f12c6c.tar.gz |
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.
(From OE-Core rev: c4eddb65e2ddb61bf519b768fab1e131fb0c297b)
Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/uboot-sign.bbclass')
-rw-r--r-- | meta/classes/uboot-sign.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
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() { | |||
53 | 53 | ||
54 | if [ -f "${UBOOT_NODTB_BINARY}" ]; then | 54 | if [ -f "${UBOOT_NODTB_BINARY}" ]; then |
55 | install ${UBOOT_NODTB_BINARY} ${DEPLOYDIR}/${UBOOT_NODTB_IMAGE} | 55 | install ${UBOOT_NODTB_BINARY} ${DEPLOYDIR}/${UBOOT_NODTB_IMAGE} |
56 | ln -sf ${UBOOT_NODTB_IMAGE} ${UBOOT_NODTB_SYMLINK} | 56 | ln -sf ${UBOOT_NODTB_IMAGE} ${DEPLOYDIR}/${UBOOT_NODTB_SYMLINK} |
57 | ln -sf ${UBOOT_NODTB_IMAGE} ${UBOOT_NODTB_BINARY} | 57 | ln -sf ${UBOOT_NODTB_IMAGE} ${DEPLOYDIR}/${UBOOT_NODTB_BINARY} |
58 | fi | 58 | fi |
59 | 59 | ||
60 | # Concatenate U-Boot w/o DTB & DTB with public key | 60 | # Concatenate U-Boot w/o DTB & DTB with public key |