summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2016-04-04 08:37:32 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-04-04 08:37:32 +0200
commit3bb841c0ca65128704d8a8b4d06c5bf02c9055da (patch)
tree164b7c3ee972263c596ff594e801e38ade953699
parent35cca5121af72afcf5d93304f5cd9861542c4162 (diff)
downloaddrakx-3bb841c0ca65128704d8a8b4d06c5bf02c9055da.tar
drakx-3bb841c0ca65128704d8a8b4d06c5bf02c9055da.tar.gz
drakx-3bb841c0ca65128704d8a8b4d06c5bf02c9055da.tar.bz2
drakx-3bb841c0ca65128704d8a8b4d06c5bf02c9055da.tar.xz
drakx-3bb841c0ca65128704d8a8b4d06c5bf02c9055da.zip
just ignore kernel options
do not try to blacklist them, there's too many...
-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);