From e973385b53ce78847c095abbc2a281559a7833ce Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Fri, 27 Jun 2025 15:38:09 -0500 Subject: meta-ti-bsp: u-boot: Fix some odd indenting This file uses both spaces and tabs in different functions which needs fixed at some point. For now at least make sure they are consistent within the same function. Signed-off-by: Andrew Davis Signed-off-by: Ryan Eatmon --- meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc index b2f26a5c..642bb6cd 100644 --- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc +++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc @@ -220,19 +220,19 @@ do_deploy:append:k3r5 () { } uboot_deploy_config:append:k3r5 () { - for f in ${B}/${config}/tiboot3-*.bin; do + for f in ${B}/${config}/tiboot3-*.bin; do if [ -f "$f" ]; then - f_base=$(basename $f) + f_base=$(basename $f) install -m 644 $f ${DEPLOYDIR}/${f_base}-${type} - ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} + ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} fi done for f in ${B}/${config}/sysfw*.itb; do if [ -f "$f" ]; then - f_base=$(basename $f) + f_base=$(basename $f) install -m 644 $f ${DEPLOYDIR}/${f_base}-${type} - ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} + ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} fi done } -- cgit v1.2.3-54-g00ecf