diff options
-rw-r--r-- | perl-install/fs.pm | 2 | ||||
-rw-r--r-- | perl-install/modules.pm | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 315837695..c1f6ec5d6 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -606,7 +606,7 @@ sub real_format_part { push @options, "-m", "0" if $part->{mntpoint} =~ m|^/home|; format_ext3($dev, @options); } elsif (isThisFs("reiserfs", $part)) { - format_reiserfs($dev, @options, if_(c::kernel_version() =~ /^\Q2.2/, "-v", "1")); + format_reiserfs($dev, @options); } elsif (isThisFs("xfs", $part)) { format_xfs($dev, @options); } elsif (isThisFs("jfs", $part)) { diff --git a/perl-install/modules.pm b/perl-install/modules.pm index edf4272d1..c4e6186ae 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -319,12 +319,6 @@ sub configure_pcmcia { return if $running; $running = 1; - if (c::kernel_version() =~ /^2\.2/) { - my $msg = N("PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."); - log::l($msg); - return $msg; - } - log::l("i try to configure pcmcia services"); symlink "/tmp/stage2/$_", $_ foreach "/etc/pcmcia"; |