From e54d9f9974f5745ccbe78ff489d3ea29ef735ba9 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Fri, 9 Jul 2021 06:21:34 +0900 Subject: [PATCH] boot: adjust timeout a bit --- boot/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/menu.c b/boot/menu.c index 5feb7f87..392853fb 100644 --- a/boot/menu.c +++ b/boot/menu.c @@ -31,7 +31,7 @@ void toggle(int ndx, int value, char *str) { void show_menu(void) { if (detect_qemu()) return; - int timeout = 3; + int timeout = 4; char timeout_msg[] = "Normal boot will commence in 0 seconds."; char * timeout_val = strchr(timeout_msg,'0');