diff options
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 8508391d5..9aa596527 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -451,33 +451,6 @@ sub check_mntpoint { $mntpoint =~ m|[\x7f-\xff]| and cdie N("Mount points should contain only alphanumerical characters"); fs::get::mntpoint2part($mntpoint, [ grep { $_ ne $part } fs::get::really_all_fstab($all_hds) ]) and die N("There is already a partition with mount point %s\n", $mntpoint); - if ($mntpoint eq "/" && isRAID($part) && !fs::get::has_mntpoint("/boot", $all_hds)) { - # lilo handles / on RAID1 - if ($part->{level} ne '1') { - cdie N("You've selected a software RAID partition as root (/). -No bootloader is able to handle this without a /boot partition. -Please be sure to add a separate /boot partition"); - } else { - # LILO only handles 0.90 metadata - if ($part->{isFormatted} && $part->{metadata} && $part->{metadata} ne '0.90') { - cdie N("Metadata version unsupported for a boot partition. Please be sure to add a separate /boot partition."); - } else { - $part->{metadata} = '0.90'; - } - } - } - - if ($mntpoint eq "/boot" && isRAID($part)) { - die N("You've selected a software RAID partition as /boot. -No bootloader is able to handle this.") if $part->{level} ne '1'; # lilo handles /boot on RAID1 - # LILO only handles 0.90 metadata - if ($part->{isFormatted} && $part->{metadata} && $part->{metadata} ne '0.90') { - die N("Metadata version unsupported for a boot partition."); - } else { - $part->{metadata} = '0.90'; - } - } - if ($mntpoint eq "/" && (isLUKS($part) || isRawLUKS($part)) && !fs::get::has_mntpoint("/boot", $all_hds)) { cdie N("You've selected an encrypted partition as root (/). No bootloader is able to handle this without a /boot partition. |