From a980eac647806c57e1fd5da4c61d6115c87a759c Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sat, 6 Feb 2021 03:27:18 +0200 Subject: [PATCH] hos: disallow no configuration booting as it's useless nowadays --- bootloader/main.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/bootloader/main.c b/bootloader/main.c index b303f9c..cdc0e75 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -642,12 +642,8 @@ void launch_firmware() if (!cfg_sec) { - gfx_puts("\nUsing default launch configuration...\n"); - gfx_puts("\nPress POWER to Continue.\nPress VOL to go to the menu."); - - u32 btn = btn_wait(); - if (!(btn & BTN_POWER)) - goto out; + gfx_printf("\nPress any key...\n"); + goto out; } if (payload_path)