nyx: add reminder that reload also checks for update.bin

This commit is contained in:
CTCaer
2021-09-17 23:34:16 +03:00
parent 768b3ba2d9
commit d61be73bca
4 changed files with 7 additions and 6 deletions

View File

@@ -850,9 +850,9 @@ static void _auto_launch_firmware()
h_cfg.bootwait = atoi(kv->val);
/*
* Clamp value to default if it exceeds 20s.
* Clamp value to default if it exceeds 20s to protect against corruption.
* Allow up to 20s though for use in cases where user needs lots of time.
* For example dock-only use and r2p with enough time to rach dock and cancel it.
* For example dock-only use and r2p with enough time to reach dock and cancel it.
*/
if (h_cfg.bootwait > 20)
h_cfg.bootwait = 3;