summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2016-07-04 17:42:41 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-07-04 18:09:52 +0200
commit5976acd282a1564ea4d3fd8b1c08bce240493194 (patch)
tree38edfb031071032e4ec8d2ea8ed0bc2c49a3027c /perl-install/fsedit.pm
parent1f8f60631b6dd0f12dd24b993b9961814f734fc6 (diff)
downloaddrakx-5976acd282a1564ea4d3fd8b1c08bce240493194.tar
drakx-5976acd282a1564ea4d3fd8b1c08bce240493194.tar.gz
drakx-5976acd282a1564ea4d3fd8b1c08bce240493194.tar.bz2
drakx-5976acd282a1564ea4d3fd8b1c08bce240493194.tar.xz
drakx-5976acd282a1564ea4d3fd8b1c08bce240493194.zip
do not warn about no bootloader can boot RAID[^1]
As grub2 can boot... (mga#11324) This should also fix mga#9524 And thus stop forcing obsolete metadata 0.90 format
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm27
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.