diff --git a/src/installer b/src/installer index 152ce1a..97ab82c 100755 --- a/src/installer +++ b/src/installer @@ -1021,14 +1021,9 @@ select_efi_partition() { } select_bios_boot_partition() { - if (( COUNT == 1 )); then - BOOT_PART="$(awk 'NF > 0 {print $1}' <<< "$PARTS")" - infobox "$_PrepMount" "\nOnly one partition available: $BOOT_PART\n" - else - tput civis - BOOT_PART="$(dialog --cr-wrap --stdout --backtitle "$BT" --title "$_PrepMount" \ - --menu "$_SelBiosBody" 0 0 0 "$_Skip" "-" $PARTS)" - fi + tput civis + BOOT_PART="$(dialog --cr-wrap --stdout --backtitle "$BT" --title "$_PrepMount" \ + --menu "$_SelBiosBody" 0 0 0 "$_Skip" "-" $PARTS)" if [[ $? != 0 || $BOOT_PART == "$_Skip" || $BOOT_PART == "" ]]; then return 0