uuu installer: increase the timeout for rootfs update

Increase the timeout from 90 to 120s since it's a large image
and it may take more time on different NANDs.

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2022-11-15 12:04:35 +01:00
parent 2cf902f8d7
commit c70917b24c
1 changed files with 3 additions and 3 deletions

View File

@ -249,16 +249,16 @@ if [ "${DUALBOOT}" = true ]; then
# Update Linux B
part_update "${LINUX_NAME}_b" "${INSTALL_LINUX_FILENAME}" 15000
# Update Rootfs A
part_update "${ROOTFS_NAME}_a" "${INSTALL_ROOTFS_FILENAME}" 90000
part_update "${ROOTFS_NAME}_a" "${INSTALL_ROOTFS_FILENAME}" 120000
# Update Rootfs B
part_update "${ROOTFS_NAME}_b" "${INSTALL_ROOTFS_FILENAME}" 90000
part_update "${ROOTFS_NAME}_b" "${INSTALL_ROOTFS_FILENAME}" 120000
else
# Update Linux
part_update "${LINUX_NAME}" "${INSTALL_LINUX_FILENAME}" 15000
# Update Recovery
part_update "${RECOVERY_NAME}" "${INSTALL_RECOVERY_FILENAME}" 15000
# Update Rootfs
part_update "${ROOTFS_NAME}" "${INSTALL_ROOTFS_FILENAME}" 90000
part_update "${ROOTFS_NAME}" "${INSTALL_ROOTFS_FILENAME}" 120000
# Configure u-boot to boot into recovery mode and format the
# 'update' partition
uuu fb: ucmd setenv boot_recovery yes