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-10 09:59:33 -0500
commitd90b896d8d7553bf672ce43129008bec73598008 (patch)
tree8e19151b66200a96e77032101a6c016ac82671ef
parent376517f6647bec103b6fe2a7401daf3b5e8fe318 (diff)
downloadmeta-ti-d90b896d8d7553bf672ce43129008bec73598008.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 c348c99b..ffe50f65 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
@@ -222,19 +222,19 @@ do_deploy:append:k3r5 () {
222} 222}
223 223
224uboot_deploy_config:append:k3r5 () { 224uboot_deploy_config:append:k3r5 () {
225 for f in ${B}/${config}/tiboot3-*.bin; do 225 for f in ${B}/${config}/tiboot3-*.bin; do
226 if [ -f "$f" ]; then 226 if [ -f "$f" ]; then
227 f_base=$(basename $f) 227 f_base=$(basename $f)
228 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type} 228 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type}
229 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} 229 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base}
230 fi 230 fi
231 done 231 done
232 232
233 for f in ${B}/${config}/sysfw*.itb; do 233 for f in ${B}/${config}/sysfw*.itb; do
234 if [ -f "$f" ]; then 234 if [ -f "$f" ]; then
235 f_base=$(basename $f) 235 f_base=$(basename $f)
236 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type} 236 install -m 644 $f ${DEPLOYDIR}/${f_base}-${type}
237 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base} 237 ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base}
238 fi 238 fi
239 done 239 done
240} 240}