Fix bug in partDisks() and add TODOs

This commit is contained in:
Santiago Lo Coco 2022-01-03 14:37:21 -03:00
parent 974a0aa799
commit 9f2cb240bb
1 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@ formatOptions() {
done
}
# TODO: Add support for MBR boot mode
checkUefi() {
ls /sys/firmware/efi/efivars > /dev/null 2>&1
if [ $? -ge 1 ]; then
@ -94,7 +95,7 @@ partDisks() {
whiptail --yesno "Do you want to create a swap space?" 0 0
if [ $? -eq 0 ]; then
result=$(whiptail --title "Select the swap space." 0 0 0 "Partition" "" "Swapfile" "")
result=$(whiptail --title "Select the swap space." --menu "" 0 0 0 "Partition" "" "Swapfile" "" 3>&1 1>&2 2>&3)
exitIfCancel "You must select a swap space." "partDisks"
if [ "$result" = "Partition" ]; then
swapPart=${disk}2
@ -131,6 +132,7 @@ autoPart() {
fi
}
# TODO: Let the user choose the file system (and add encryption support)
formatPart() {
mkfs.fat -F 32 "$bootPart" 2>&1 | debug
[ -n "$swapPart" ] && mkswap "$swapPart" 2>&1 | debug