From 62e8d5e17119925c214bd2341a1200aff0bbae6d Mon Sep 17 00:00:00 2001 From: lipeng <3428068280@qq.com> Date: Tue, 22 Jul 2025 11:33:16 +0800 Subject: [PATCH] tspi-3566: u-boot-tspi-3566.bb Adjustments * Rename the installation file to parameter.txt. * Optimize symbolic links to avoid the "File exists" error during secondary compilation. Signed-off-by: lipeng --- .../rockchip/recipes-bsp/u-boot/u-boot-tspi-3566.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bsp/meta-openeuler-bsp/rockchip/recipes-bsp/u-boot/u-boot-tspi-3566.bb b/bsp/meta-openeuler-bsp/rockchip/recipes-bsp/u-boot/u-boot-tspi-3566.bb index e0571b13341..0153eac8cb8 100644 --- a/bsp/meta-openeuler-bsp/rockchip/recipes-bsp/u-boot/u-boot-tspi-3566.bb +++ b/bsp/meta-openeuler-bsp/rockchip/recipes-bsp/u-boot/u-boot-tspi-3566.bb @@ -12,7 +12,7 @@ do_copy_rkbin_source() { do_configure:prepend() { # the python scripts need python2, so we create tmp soft link - ln -s $(which python) ${RECIPE_SYSROOT_NATIVE}${bindir_native}/python2 + ln -sf $(which python) ${RECIPE_SYSROOT_NATIVE}${bindir_native}/python2 } do_compile() { @@ -37,6 +37,6 @@ do_deploy() { # add parameter to deploy directory do_deploy:append() { if [ -f "${WORKDIR}/${PARAMETER}" ]; then - install ${WORKDIR}/${PARAMETER} ${OUTPUT_DIR}/parameter + install ${WORKDIR}/${PARAMETER} ${OUTPUT_DIR}/parameter.txt fi } -- Gitee