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:
parent
2cf902f8d7
commit
c70917b24c
|
|
@ -249,16 +249,16 @@ if [ "${DUALBOOT}" = true ]; then
|
||||||
# Update Linux B
|
# Update Linux B
|
||||||
part_update "${LINUX_NAME}_b" "${INSTALL_LINUX_FILENAME}" 15000
|
part_update "${LINUX_NAME}_b" "${INSTALL_LINUX_FILENAME}" 15000
|
||||||
# Update Rootfs A
|
# Update Rootfs A
|
||||||
part_update "${ROOTFS_NAME}_a" "${INSTALL_ROOTFS_FILENAME}" 90000
|
part_update "${ROOTFS_NAME}_a" "${INSTALL_ROOTFS_FILENAME}" 120000
|
||||||
# Update Rootfs B
|
# Update Rootfs B
|
||||||
part_update "${ROOTFS_NAME}_b" "${INSTALL_ROOTFS_FILENAME}" 90000
|
part_update "${ROOTFS_NAME}_b" "${INSTALL_ROOTFS_FILENAME}" 120000
|
||||||
else
|
else
|
||||||
# Update Linux
|
# Update Linux
|
||||||
part_update "${LINUX_NAME}" "${INSTALL_LINUX_FILENAME}" 15000
|
part_update "${LINUX_NAME}" "${INSTALL_LINUX_FILENAME}" 15000
|
||||||
# Update Recovery
|
# Update Recovery
|
||||||
part_update "${RECOVERY_NAME}" "${INSTALL_RECOVERY_FILENAME}" 15000
|
part_update "${RECOVERY_NAME}" "${INSTALL_RECOVERY_FILENAME}" 15000
|
||||||
# Update Rootfs
|
# 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
|
# Configure u-boot to boot into recovery mode and format the
|
||||||
# 'update' partition
|
# 'update' partition
|
||||||
uuu fb: ucmd setenv boot_recovery yes
|
uuu fb: ucmd setenv boot_recovery yes
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue