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 <neal.frager@amd.com>
Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Romain Naour <romain.naour@smile.fr>
This commit is contained in:
Neal Frager
2026-03-09 07:51:26 +00:00
committed by Romain Naour
parent 5af624386e
commit 1d603b78c0

View File

@@ -3,7 +3,7 @@
# By default U-Boot loads DTB from a file named "system.dtb", and # 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 # 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. # 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")" BOARD_DIR="$(dirname "$0")"