remove comment

This commit is contained in:
Tobias Powalowski 2023-01-14 19:35:53 +01:00
parent 0e1145f637
commit a9b134ecd1
3 changed files with 1 additions and 9 deletions

View file

@ -47,7 +47,6 @@ _marvell_firmware() {
done done
} }
# chroot_mount()
# prepares target system as a chroot # prepares target system as a chroot
_chroot_mount() _chroot_mount()
{ {
@ -63,7 +62,6 @@ _chroot_mount()
fi fi
} }
# chroot_umount()
# tears down chroot in target system # tears down chroot in target system
_chroot_umount() _chroot_umount()
{ {

View file

@ -82,8 +82,6 @@ _set_password() {
rm /tmp/.password rm /tmp/.password
} }
# run_mkinitcpio()
# runs mkinitcpio on the target system, displays output
_run_mkinitcpio() { _run_mkinitcpio() {
_dialog --infobox "Rebuilding initramfs on installed system ..." 3 70 _dialog --infobox "Rebuilding initramfs on installed system ..." 3 70
_chroot_mount _chroot_mount

View file

@ -106,15 +106,11 @@ _check_efisys_part() {
} }
_partition() { _partition() {
# disable swap and all mounted partitions, umount / last!
_umountall _umountall
# check on encrypted devices, else weird things can happen! # stop special devices, else weird things can happen during partitioning
_stopluks _stopluks
# check on raid devices, else weird things can happen during partitioning!
_stopmd _stopmd
# check on lvm devices, else weird things can happen during partitioning!
_stoplvm _stoplvm
# switch for mbr usage
_set_guid _set_guid
# Select disk to partition # Select disk to partition
_DISKS=$(_finddisks _) _DISKS=$(_finddisks _)