From 1ba8385f575de5bb29ae6bacb54be07445a63643 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 6 Aug 2023 16:24:12 +0200 Subject: [PATCH] add progressbar for FIRMWARE --- usr/lib/archboot/installer/bootloader.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/bootloader.sh b/usr/lib/archboot/installer/bootloader.sh index c648b77fd..9b5cfdf8d 100644 --- a/usr/lib/archboot/installer/bootloader.sh +++ b/usr/lib/archboot/installer/bootloader.sh @@ -473,7 +473,7 @@ CONFEOF _uki_uefi() { sleep 2 - progress "50" "Enable automatic UKI creation\non EFI SYSTEM PARTITION (ESP) on installed system..." + _progress "50" "Enable automatic UKI creation\non EFI SYSTEM PARTITION (ESP) on installed system..." cat << CONFEOF > "${_DESTDIR}/etc/systemd/system/run_ukify.path" [Unit] Description=Run systemd ukify @@ -499,7 +499,7 @@ CONFEOF rm -f "${_DESTDIR}/${_UEFISYS_MP}/EFI/BOOT/BOOT${_UEFI_ARCH}.EFI" cp -f "${_DESTDIR}/${_UEFISYS_MP}/EFI/Linux/archlinux-linux.efi" "${_DESTDIR}/${_UEFISYS_MP}/EFI/BOOT/BOOT${_UEFI_ARCH}.EFI" sleep 2 - progress "100" "Unified Kernel Image has been setup successfully." + _progress "100" "Unified Kernel Image has been setup successfully." sleep 2 _S_BOOTLOADER=1 }