summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index d4c2826e6..2755e575c 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -126,6 +126,12 @@ sub selectKeyboard {
addToBeDone {
keyboard::write($o->{keyboard});
} 'installPackages' if !$::g_auto_install && (!$o->{isUpgrade} || !$o->{keyboard}{unsafe});
+
+ if ($o->{raw_X}) {
+ require Xconfig::default;
+ Xconfig::default::config_keyboard($o->{raw_X}, $o->{keyboard});
+ $o->{raw_X}->write;
+ }
}
#------------------------------------------------------------------------------
sub acceptLicense {}