From e89f301b6530758d756f9707b7ccd3b49096b0f7 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 10 Mar 2024 04:31:06 +0100 Subject: [PATCH] Disable GRUB un-silencing --- scripts/Common/Config/GRUB/setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/Common/Config/GRUB/setup.sh b/scripts/Common/Config/GRUB/setup.sh index 9bdb33fc..eb690180 100755 --- a/scripts/Common/Config/GRUB/setup.sh +++ b/scripts/Common/Config/GRUB/setup.sh @@ -12,10 +12,10 @@ then else sed -i \ -e "s/#\(GRUB_DISABLE_OS_PROBER\)/\1/" \ - -e "/^GRUB_CMDLINE_LINUX_DEFAULT=/{" \ - -e "h; s/^/#/; p;" \ - -e "g; s/loglevel=3 quiet//" \ - -e "}" \ + `#-e "/^GRUB_CMDLINE_LINUX_DEFAULT=/{"` \ + `#-e "h; s/^/#/; p;"` \ + `#-e "g; s/loglevel=3 quiet//"` \ + `#-e "}"` \ /etc/default/grub; grub-install --target=x86_64-efi --efi-directory="$EFI_BOOT_DIR" --bootloader-id="$BOOTLOADER_ID";