u-boot: Start to use spaces instead of tabs to follow OE

This commit is contained in:
Holger Hans Peter Freyther 2014-03-28 21:55:45 +01:00
parent 5e84042d37
commit 2700d6a642
1 changed files with 8 additions and 8 deletions

View File

@ -17,13 +17,13 @@ UBOOT_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}"
UBOOT_SYMLINK = "u-boot-${MACHINE}"
do_deploy_prepend () {
install ${S}/u-boot.bin ${DEPLOYDIR}/${UBOOT_IMAGE}.bin
install ${S}/u-boot ${DEPLOYDIR}/${UBOOT_IMAGE}.elf
install ${S}/u-boot.bin ${DEPLOYDIR}/${UBOOT_IMAGE}.bin
install ${S}/u-boot ${DEPLOYDIR}/${UBOOT_IMAGE}.elf
cd ${DEPLOYDIR}
rm -f ${UBOOT_SYMLINK}.bin
rm -f ${UBOOT_SYMLINK}.elf
ln -sf ${UBOOT_IMAGE}.bin ${UBOOT_SYMLINK}.bin
ln -sf ${UBOOT_IMAGE}.elf ${UBOOT_SYMLINK}.elf
return
cd ${DEPLOYDIR}
rm -f ${UBOOT_SYMLINK}.bin
rm -f ${UBOOT_SYMLINK}.elf
ln -sf ${UBOOT_IMAGE}.bin ${UBOOT_SYMLINK}.bin
ln -sf ${UBOOT_IMAGE}.elf ${UBOOT_SYMLINK}.elf
return
}