From a13aca12af814b789884ae84360b2397da9c84ca Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 31 May 2024 13:57:25 +0200 Subject: [PATCH] board/zynq: make post-image.sh a symlink to board/zynqmp/post-image.sh The zynq/zynqmp post-image scripts are now identical, so replace the zynq copy with a symlink to limit redundancy. Signed-off-by: Peter Korsgaard --- board/zynq/post-image.sh | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) mode change 100755 => 120000 board/zynq/post-image.sh diff --git a/board/zynq/post-image.sh b/board/zynq/post-image.sh deleted file mode 100755 index f44b66342d..0000000000 --- a/board/zynq/post-image.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -# By default U-Boot loads DTB from a file named "system.dtb", so -# let's use a symlink with that name that points to the *first* -# devicetree listed in the config. - -FIRST_DT=$(sed -nr \ - -e 's|^BR2_LINUX_KERNEL_INTREE_DTS_NAME="(xilinx/)?([-_/[:alnum:]\\.]*).*"$|\2|p' \ - "${BR2_CONFIG}") - -[ -z "${FIRST_DT}" ] || ln -fs "${FIRST_DT}.dtb" "${BINARIES_DIR}/system.dtb" - -BOARD_DIR="$(dirname "$0")" - -support/scripts/genimage.sh -c "${BOARD_DIR}/genimage.cfg" diff --git a/board/zynq/post-image.sh b/board/zynq/post-image.sh new file mode 120000 index 0000000000..775184415d --- /dev/null +++ b/board/zynq/post-image.sh @@ -0,0 +1 @@ +../zynqmp/post-image.sh \ No newline at end of file