From 1d603b78c05e132076ef9db1cf0cb3d16fd065ac Mon Sep 17 00:00:00 2001 From: Neal Frager Date: Mon, 9 Mar 2026 07:51:26 +0000 Subject: [PATCH] board/versal2/post-image.sh: remove incorrect $BINARIES_DIR Remove incorrect $BINARIES_DIR reference from the symbolic link creation to make a relative path and not an absolute path. Signed-off-by: Neal Frager Reviewed-by: Luca Ceresoli Signed-off-by: Romain Naour --- board/versal2/post-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/versal2/post-image.sh b/board/versal2/post-image.sh index 17746271e1..af50909fb1 100755 --- a/board/versal2/post-image.sh +++ b/board/versal2/post-image.sh @@ -3,7 +3,7 @@ # By default U-Boot loads DTB from a file named "system.dtb", and # with versal2, the Linux DTB is the same as the U-Boot DTB, so # let's use a symlink since the DTB is the same. -ln -fs "${BINARIES_DIR}/u-boot.dtb" "${BINARIES_DIR}/system.dtb" +ln -fs "u-boot.dtb" "${BINARIES_DIR}/system.dtb" BOARD_DIR="$(dirname "$0")"