From f850babe1ff7049f44e913ee0cad5d01ff44bf86 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 23 Jun 2023 10:33:55 +0200 Subject: [PATCH] log efibootmgr --- usr/lib/archboot/installer/bootloader.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/bootloader.sh b/usr/lib/archboot/installer/bootloader.sh index aca1d655a..4143db0c7 100644 --- a/usr/lib/archboot/installer/bootloader.sh +++ b/usr/lib/archboot/installer/bootloader.sh @@ -164,7 +164,7 @@ _do_uefi_common() { _do_uefi_efibootmgr() { for _bootnum in $(efibootmgr | grep '^Boot[0-9]' | grep -F -i "${_BOOTMGR_LABEL}" | cut -b5-8) ; do - efibootmgr --quiet -b "${_bootnum}" -B + efibootmgr --quiet -b "${_bootnum}" -B >> "${LOG}" done _BOOTMGRDEV=$(${_LSBLK} PKNAME "${_UEFISYSDEV}") _BOOTMGRNUM=$(echo "${_UEFISYSDEV}" | sed -e "s#${_BOOTMGRDEV}##g" | sed -e 's#p##g')