From 6af9a17a5ade1fff21703ac376b611a52ddb14b3 Mon Sep 17 00:00:00 2001 From: Kunihiko Hayashi Date: Thu, 3 Apr 2025 13:47:47 +0900 Subject: [PATCH] package/uboot-tools: remove absolute path of link source for fw_setenv For portability reason, it isn't preferable to include an absolute path in the link to fw_printenv which is in the same directory as fw_setenv. Fixes: 42646265d5dd ("package/uboot-tools: add fw_printenv to host uboot tools") Signed-off-by: Kunihiko Hayashi Signed-off-by: Thomas Petazzoni (cherry picked from commit 0b020912353ce6362961ddcc27325d34cc68f0a1) Signed-off-by: Thomas Perale --- package/uboot-tools/uboot-tools.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk index d897a6bc17..1925047ccd 100644 --- a/package/uboot-tools/uboot-tools.mk +++ b/package/uboot-tools/uboot-tools.mk @@ -220,7 +220,7 @@ define HOST_UBOOT_TOOLS_INSTALL_CMDS $(INSTALL) -m 0755 -D $(@D)/tools/dumpimage $(HOST_DIR)/bin/dumpimage $(HOST_UBOOT_TOOLS_INSTALL_FIT_CHECK_SIGN) $(INSTALL) -m 0755 -D $(@D)/tools/env/fw_printenv $(HOST_DIR)/bin/fw_printenv - ln -sf $(HOST_DIR)/bin/fw_printenv $(HOST_DIR)/bin/fw_setenv + ln -sf fw_printenv $(HOST_DIR)/bin/fw_setenv $(HOST_UBOOT_TOOLS_INSTALL_ENVIMAGE) $(HOST_UBOOT_TOOLS_INSTALL_BOOT_SCRIPT) endef