7-add-legacy-bios-support #8

Merged
hygienic-books merged 12 commits from 7-add-legacy-bios-support into main 2023-10-24 00:25:35 +00:00
Showing only changes of commit 615b8c0e95 - Show all commits

View File

@ -194,10 +194,14 @@ function select_part () {
part_type="${1:?}" # 'boot' or 'zfs' part_type="${1:?}" # 'boot' or 'zfs'
zfs_install_drive="${2:-}" zfs_install_drive="${2:-}"
if [[ "${part_schema}" = 'mbr' ]]; then if [[ "${part_type}" = 'boot' ]]; then
specific_part_type='boot' if [[ "${part_schema}" = 'mbr' ]]; then
specific_part_type='boot'
else
specific_part_type='efi'
fi
else else
specific_part_type='efi' specific_part_type="${part_type}"
fi fi
if [[ "${zfs_install_drive}" ]]; then if [[ "${zfs_install_drive}" ]]; then