@@ -222,19 +222,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
}
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> --- meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)