summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/install2.pm6
2 files changed, 2 insertions, 5 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index dd11abbec..37866f72b 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,4 @@
+- just ignore kernel options
- drakx-in-chroot:
o enable to control strace behaviour
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index d96d253f9..ded0c978c 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -3,7 +3,7 @@ package install::install2;
use diagnostics;
use strict;
use vars qw($o);
-use Getopt::Long qw(GetOptionsFromArray :config no_ignore_case no_auto_abbrev no_getopt_compat);
+use Getopt::Long qw(GetOptionsFromArray :config no_ignore_case no_auto_abbrev no_getopt_compat pass_through);
BEGIN { $::isInstall = 1 }
@@ -581,10 +581,6 @@ sub parse_args {
askmedia => \$o->{askmedia},
restore => \$::isRestore,
'compsslistlevel=s' => \$o->{compssListLevel},
-
- # to ignore:
- 'BOOT_IMAGE=s' => sub {},
- 'quiet|resume|root|splash' => sub {},
);
($cfg, $patch);