From aa2c71240ce2de5f374a2f3d86799f5badec0b76 Mon Sep 17 00:00:00 2001 From: lipeng <3428068280@qq.com> Date: Tue, 22 Jul 2025 10:11:54 +0800 Subject: [PATCH] =?UTF-8?q?u-boot-tspi-3566.bb=20Adjustments=20for=20tspi-?= =?UTF-8?q?rk3566:=E2=80=8B=201.=20Fix=20the=20filename=20of=20the=20final?= =?UTF-8?q?=20deployed=20parameter=20file=20to=20`parameter.txt`.=20In=20R?= =?UTF-8?q?ockchip=20development=20tools,=20importing=20configuration=20fi?= =?UTF-8?q?les=20without=20an=20extension=20directly=20causes=20the=20tool?= =?UTF-8?q?=20to=20freeze=20and=20exit.=20The=20filename=20needs=20to=20be?= =?UTF-8?q?=20adjusted=20to=20the=20`.txt`=20format.=202.Update=20the=20Py?= =?UTF-8?q?thon=20symbolic=20link=20creation=20method=20to=20prevent=20'fa?= =?UTF-8?q?iled:=20File=20exists'=20errors=20during=20secondary=20compilat?= =?UTF-8?q?ion=20caused=20by=20the=20pre-existence=20of=20the=20tmp=20dire?= =?UTF-8?q?ctory.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../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