From 95b29350d06b378b8e7ccfbd2bb64cb9fe852a61 Mon Sep 17 00:00:00 2001 From: lhpitn <45788285+lhpitn@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:20:34 +0200 Subject: [PATCH] Update localboot.cfg to add exit adds an exit entry to local boot which can hand the bood process back to the systems firmware and thereby help to boot from other devices without reboot i tested it and it worked here in uefi and bios mode, but on some firmwares you have to do it twice cause uefi mode hands in to bios mode, but that can help to if you wish to switch to that mode and your firmware has no selection for the mode and handles one usb device as one entry... --- INSTALL/grub/localboot.cfg | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/INSTALL/grub/localboot.cfg b/INSTALL/grub/localboot.cfg index e746f1a6..fc7df0c5 100644 --- a/INSTALL/grub/localboot.cfg +++ b/INSTALL/grub/localboot.cfg @@ -217,6 +217,11 @@ else fi +menuentry "Exit and continue boot process" { + echo "handing back to firmware for next boot option ..." + exit +} + menuentry "$VTLANG_RETURN_PREVIOUS" --class=vtoyret VTOY_RET { echo "Return ..." }