diff options
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/share/list.xml | 2 | ||||
-rw-r--r-- | perl-install/install/steps_auto_install.pm | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9ef4b9487..faec7efbb 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- use kbd (setfont) instead of console-tools (consolechars) + Version 10.4.154 - 2 August 2007, by Pascal "Pixel" Rigaux - drop supermount support diff --git a/perl-install/install/share/list.xml b/perl-install/install/share/list.xml index e4b068cc4..42ff937b5 100644 --- a/perl-install/install/share/list.xml +++ b/perl-install/install/share/list.xml @@ -35,7 +35,7 @@ </if> quotacheck - consolechars kbd_mode + setfont kbd_mode Xorg xmodmap xset fb2png perl diff --git a/perl-install/install/steps_auto_install.pm b/perl-install/install/steps_auto_install.pm index 3b5e24636..debff44e0 100644 --- a/perl-install/install/steps_auto_install.pm +++ b/perl-install/install/steps_auto_install.pm @@ -106,9 +106,9 @@ sub charsetChanged { my ($o) = @_; lang::load_console_font($o->{locale}); - my ($name, $_sfm, $acm) = lang::l2console_font($o->{locale}, 1); + my ($name, $_sfm) = lang::l2console_font($o->{locale}); my %fs_options = lang::fs_options($o->{locale}); - $iocharset = $name && $acm && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : ''; + $iocharset = $name && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : ''; } sub errorInStep { |