From add813b61609fd3f0a9a45d42c12216c9fc4bf8f Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 17 Nov 2023 17:11:01 +0100 Subject: [PATCH] avoid clipping --- usr/lib/archboot/login.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/lib/archboot/login.sh b/usr/lib/archboot/login.sh index 9da41ad9f..426ec7e82 100644 --- a/usr/lib/archboot/login.sh +++ b/usr/lib/archboot/login.sh @@ -55,9 +55,10 @@ if [[ "${TTY}" = "tty1" ]]; then : > /.archboot _create_btrfs & _progress_wait "0" "10" "Creating btrfs on /dev/zram0..." "0.2" + _progress "10" "Creating btrfs on /dev/zram0..." : > /.archboot _copy_root & - _progress_wait "11" "99" "Copying archboot rootfs to /sysroot..." "0.125" + _progress_wait "11" "99" "Copying rootfs to /sysroot..." "0.125" # cleanup directories and files rm -r /sysroot/sysroot &>"${_NO_LOG}" rm /sysroot/init &>"${_NO_LOG}"