summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Davis <afd@ti.com>2025-06-27 15:38:09 -0500
committerRyan Eatmon <reatmon@ti.com>2025-07-12 10:15:31 -0500
commite973385b53ce78847c095abbc2a281559a7833ce (patch)
tree73d5a43b9205ae78b7ef0d89549e0e81d869c17b
parentb8a1b63be7c8b2c6b0ef6112adaf1fbb6096fed1 (diff)
downloadmeta-ti-e973385b53ce78847c095abbc2a281559a7833ce.tar.gz
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 <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc10
1 files 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 () {
220} 220}
221 221
222uboot_deploy_config:append:k3r5 () { 222uboot_deploy_config:append:k3r5 () {
223 for f in ${B}/${config}/tiboot3-*.bin; do 223 for f in ${B}/${config}/tiboot3-*.bin; do
224 if [ -f "$f" ]; then 224 if [ -f "$f" ]; then
225 f_base=$(basename $f) 225 f_base=$(basename $f)
226 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type} 226 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type}
227 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} 227 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base}
228 fi 228 fi
229 done 229 done
230 230
231 for f in ${B}/${config}/sysfw*.itb; do 231 for f in ${B}/${config}/sysfw*.itb; do
232 if [ -f "$f" ]; then 232 if [ -f "$f" ]; then
233 f_base=$(basename $f) 233 f_base=$(basename $f)
234 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type} 234 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type}
235 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} 235 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base}
236 fi 236 fi
237 done 237 done
238} 238}