be more verbose on mkinitcpio and locale-gen

This commit is contained in:
Tobias Powalowski 2022-11-26 09:22:10 +01:00
parent 0b9e3dc291
commit ac2fe096e9
2 changed files with 2 additions and 1 deletions

View file

@ -98,7 +98,6 @@ prepare_storagedrive() {
configure_system() {
destdir_mounts || return 1
## PREPROCESSING ##
DIALOG --infobox "Preconfiguring system ..." 3 40
auto_pacman_mirror
auto_network
auto_parameters
@ -154,6 +153,7 @@ configure_system() {
run_mkinitcpio
DIALOG --infobox "Rebuilding glibc locales ..." 3 40
locale_gen
sleep 1
## END POSTPROCESSING ##
NEXTITEM="7"
fi

View file

@ -91,4 +91,5 @@ run_mkinitcpio() {
fi
rm /tmp/.mkinitcpio-retcode
chroot_umount
sleep 1
}