From 904ebcb2004858d4646550036c7db426d48e17d5 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Wed, 15 Apr 2020 14:18:15 +0200 Subject: [PATCH] =?UTF-8?q?sd-boot:=20Add=20=E2=86=92=20as=20alternative?= =?UTF-8?q?=20to=20boot=20selected=20entry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is sometimes slightly more convenient to use and is also what GRUB supports. --- man/systemd-boot.xml | 1 + src/boot/efi/boot.c | 1 + 2 files changed, 2 insertions(+) diff --git a/man/systemd-boot.xml b/man/systemd-boot.xml index fff7395f3d..8c64aa21e4 100644 --- a/man/systemd-boot.xml +++ b/man/systemd-boot.xml @@ -123,6 +123,7 @@ (Enter) + (Right) Boot selected entry diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 99938c547a..7efe9425cd 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -742,6 +742,7 @@ static BOOLEAN menu_run( case KEYPRESS(0, 0, CHAR_LINEFEED): case KEYPRESS(0, 0, CHAR_CARRIAGE_RETURN): + case KEYPRESS(0, SCAN_RIGHT, 0): exit = TRUE; break;