From 7924664b6dd5f14f8b73b4e95ba59b8c736f097e Mon Sep 17 00:00:00 2001 From: Stefan Siegel Date: Sun, 7 May 2000 21:50:47 +0000 Subject: fixed awfull typo --- perl-install/fsedit.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index f66a3488b..eb19b2bbb 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -270,7 +270,8 @@ 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); - die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr)); + # 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)); #- 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); -- cgit v1.2.1