diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-05-08 11:34:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-05-08 11:34:24 +0000 |
commit | e9b425fcfdb80bb0a3b5f8512f824dee8b8df5b4 (patch) | |
tree | f5e5e1ae0259613e69c9041f6745ec2f967eff1f /perl-install/fsedit.pm | |
parent | 7924664b6dd5f14f8b73b4e95ba59b8c736f097e (diff) | |
download | drakx-e9b425fcfdb80bb0a3b5f8512f824dee8b8df5b4.tar drakx-e9b425fcfdb80bb0a3b5f8512f824dee8b8df5b4.tar.gz drakx-e9b425fcfdb80bb0a3b5f8512f824dee8b8df5b4.tar.bz2 drakx-e9b425fcfdb80bb0a3b5f8512f824dee8b8df5b4.tar.xz drakx-e9b425fcfdb80bb0a3b5f8512f824dee8b8df5b4.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index eb19b2bbb..f66a3488b 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -270,8 +270,7 @@ sub check_mntpoint { $check->($fake_part) unless $mntpoint eq '/' && $loopbackDevice; #- '/' is a special case, no loop check die "raid / with no /boot" if $mntpoint eq "/" && raid::is($part) && !has_mntpoint("/boot", $hds); - # Linux file system needet to be able to make devices - die _("You need a true Linux filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr)); + die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr)); #- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i386/) { #- die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot"; #- die "/ ending on cylinder > 1024" if $mntpoint eq "/" && !has_mntpoint("/boot", $hds); |