From 88df36346c767f8756e54cc1941b6cda180b61db Mon Sep 17 00:00:00 2001 From: Masahisa Kojima Date: Thu, 2 Feb 2023 18:24:44 +0900 Subject: eficonfig: CTRL+S to save the boot order The change boot order menu in eficonfig can have at most INT_MAX lines and it is troublesome to scroll down to the "Save" entry. This commit assigns CTRL+S to save the boot order. Signed-off-by: Masahisa Kojima Acked-by: Heinrich Schuchardt --- common/menu.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common') diff --git a/common/menu.c b/common/menu.c index cdcdbb2a185..94514177e4e 100644 --- a/common/menu.c +++ b/common/menu.c @@ -503,6 +503,9 @@ enum bootmenu_key bootmenu_conv_key(int ichar) case CTL_CH('n'): key = BKEY_DOWN; break; + case CTL_CH('s'): + key = BKEY_SAVE; + break; case '+': key = BKEY_PLUS; break; -- cgit v1.2.3