summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Poulain <loic.poulain@linaro.org>2018-10-18 15:16:16 +0200
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2018-10-18 17:11:05 +0200
commit15a6532d9fe4ac14e376036eee792cf85c9ada57 (patch)
tree297ddd8d75743954060c94ef366a15a73d865e44
parentfc0864d8e02ecc9326ef8bec2cf44be50c5b2180 (diff)
app: aboot: Get rid of 5s boot delay in ORANGE state
An annoying 5s delay is added when board is unlocked. Remove it, and gain 5s at boot time. Keep the warn message though. Change-Id: I5de5d007d1c82feaaaff136c4db5519b4e82a5e5 Signed-off-by: Loic Poulain <loic.poulain@linaro.org> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r--app/aboot/aboot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/aboot/aboot.c b/app/aboot/aboot.c
index f4bc3fba..ff880a39 100644
--- a/app/aboot/aboot.c
+++ b/app/aboot/aboot.c
@@ -1211,8 +1211,7 @@ int boot_linux_from_mmc(void)
wait_for_users_action();
#else
dprintf(CRITICAL,
- "Your device has been unlocked and can't be trusted.\nWait for 5 seconds before proceeding\n");
- mdelay(5000);
+ "Your device has been unlocked and can't be trusted.\n");
#endif
}
#endif