tegra-uefi-capsules: fix indentation issues

Fix indentation in task definitions (use spaces instead of tabs).

Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io>
This commit is contained in:
Igor Opaniuk
2024-04-11 13:25:24 +02:00
committed by Matt Madison
parent 742f465849
commit 90256a7871

View File

@@ -39,14 +39,14 @@ INSANE_SKIP:${PN} += "buildpaths"
do_deploy() {
install -d ${DEPLOYDIR}
if [ -e ${B}/tegra-bl.cap ]; then
BL_NAME=${TNSPEC_MACHINE}-tegra-bl.cap
install -m 0644 ${B}/tegra-bl.cap ${DEPLOYDIR}/$BL_NAME
ln -s -r ${DEPLOYDIR}/$BL_NAME ${DEPLOYDIR}/tegra-bl.cap
BL_NAME=${TNSPEC_MACHINE}-tegra-bl.cap
install -m 0644 ${B}/tegra-bl.cap ${DEPLOYDIR}/$BL_NAME
ln -s -r ${DEPLOYDIR}/$BL_NAME ${DEPLOYDIR}/tegra-bl.cap
fi
if [ -e ${B}/tegra-kernel.cap ]; then
KERNEL_NAME=${TNSPEC_MACHINE}-tegra-kernel.cap
install -m 0644 ${B}/tegra-kernel.cap ${DEPLOYDIR}/$KERNEL_NAME
ln -s -r ${DEPLOYDIR}/$KERNEL_NAME ${DEPLOYDIR}/tegra-kernel.cap
KERNEL_NAME=${TNSPEC_MACHINE}-tegra-kernel.cap
install -m 0644 ${B}/tegra-kernel.cap ${DEPLOYDIR}/$KERNEL_NAME
ln -s -r ${DEPLOYDIR}/$KERNEL_NAME ${DEPLOYDIR}/tegra-kernel.cap
fi
}