u-boot: fix code that copies 'install_linux_fw_uuu.sh' script
The if condition expanded to nothing so the install command was never called. Apart from that the install command was wrong and missing the '-m' option for modifier. Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
parent
36b9e0c656
commit
716d55fadf
|
|
@ -153,10 +153,10 @@ do_deploy_append() {
|
||||||
sed -i -e 's,##GRAPHICAL_BACKEND##,${GRAPHICAL_BACKEND},g' ${WORKDIR}/install_linux_fw_sd.txt
|
sed -i -e 's,##GRAPHICAL_BACKEND##,${GRAPHICAL_BACKEND},g' ${WORKDIR}/install_linux_fw_sd.txt
|
||||||
mkimage -T script -n "DEY firmware install script" -C none -d ${WORKDIR}/install_linux_fw_sd.txt ${DEPLOYDIR}/install_linux_fw_sd.scr
|
mkimage -T script -n "DEY firmware install script" -C none -d ${WORKDIR}/install_linux_fw_sd.txt ${DEPLOYDIR}/install_linux_fw_sd.scr
|
||||||
|
|
||||||
if [ ${@oe.utils.conditional('UBOOT_HAS_FASTBOOT', 'true', '', '', d)} ]; then
|
if [ "${@oe.utils.conditional('UBOOT_HAS_FASTBOOT', 'true', 'true', '', d)}" = "true" ]; then
|
||||||
# DEY firmware install uuu script
|
# DEY firmware install uuu script
|
||||||
sed -i -e 's,##GRAPHICAL_BACKEND##,${GRAPHICAL_BACKEND},g' ${WORKDIR}/install_linux_fw_uuu.sh
|
sed -i -e 's,##GRAPHICAL_BACKEND##,${GRAPHICAL_BACKEND},g' ${WORKDIR}/install_linux_fw_uuu.sh
|
||||||
install 775 ${WORKDIR}/install_linux_fw_uuu.sh ${DEPLOYDIR}/
|
install -m 775 ${WORKDIR}/install_linux_fw_uuu.sh ${DEPLOYDIR}/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Boot script for DEY images (reconfigure on-the-fly if TRUSTFENCE is enabled)
|
# Boot script for DEY images (reconfigure on-the-fly if TRUSTFENCE is enabled)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue