diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/install2.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 8474e16b0..5472abb2e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- enable to skip keyboard step with keyboard option + Version 14.52 - 4 December 2012 - Mageia 3 beta 1 left background diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index 220398ecd..0a763358b 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -471,6 +471,7 @@ sub parse_args { map_each { my ($n, $v) = @_; my $f = ${{ + keyboard => sub { $o->{keyboard} = $v; push @::auto_steps, 'selectKeyboard' }, lang => sub { $o->{lang} = $v }, flang => sub { $o->{lang} = $v; push @::auto_steps, 'selectLanguage' }, langs => sub { $o->{locale}{langs} = +{ map { $_ => 1 } split(':', $v) } }, |