summaryrefslogtreecommitdiffstats
path: root/move/move.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-05-13 13:09:33 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-05-13 13:09:33 +0000
commit272515661cfd004a2e72fe9d66a40e144b0d797a (patch)
tree085f0d64d5305dbac96ff1129e640480573ddddf /move/move.pm
parent58a2251adfc2a7c187ed483678c6a024ac64c0af (diff)
downloaddrakx-backup-do-not-use-272515661cfd004a2e72fe9d66a40e144b0d797a.tar
drakx-backup-do-not-use-272515661cfd004a2e72fe9d66a40e144b0d797a.tar.gz
drakx-backup-do-not-use-272515661cfd004a2e72fe9d66a40e144b0d797a.tar.bz2
drakx-backup-do-not-use-272515661cfd004a2e72fe9d66a40e144b0d797a.tar.xz
drakx-backup-do-not-use-272515661cfd004a2e72fe9d66a40e144b0d797a.zip
handleI18NClp() must be called when ->charsetChanged, ie before the locale is used
Diffstat (limited to 'move/move.pm')
-rw-r--r--move/move.pm17
1 files changed, 13 insertions, 4 deletions
diff --git a/move/move.pm b/move/move.pm
index 951909c2d..a6303ad6c 100644
--- a/move/move.pm
+++ b/move/move.pm
@@ -82,7 +82,7 @@ sub handle_virtual_key() {
sub setup_userconf {
my ($o) = @_;
- if (!@{$o->{users}} && `getent passwd 501` =~ /([^:]+):/) {
+ if (is_empty_array_ref($o->{users}) && `getent passwd 501` =~ /([^:]+):/) {
log::l("passwd/501 is $1");
$o->{users} = [ { name => $1 } ];
$ENV{HOME} = "/home/$1"; #- used by lang::read() :-/
@@ -159,8 +159,7 @@ sub init {
}
#- free up stage1 memory
- eval { fs::umount('/stage1/proc/bus/usb') };
- fs::umount($_) foreach qw(/stage1/proc /stage1);
+ eval { fs::umount($_) } foreach qw(/stage1/proc/bus/usb /stage1/proc /stage1);
#- devfsd needed for devices accessed by old names
fs::mount("none", "/dev", "devfs", 0);
@@ -207,7 +206,7 @@ drakx_stuff:
qw(initGraphical verifyKey startMove)
: $using_existing_user_config ?
qw(initGraphical autoSelectLanguage verifyKey selectMouse selectKeyboard configMove startMove)
- : qw(initGraphical selectLanguage handleI18NClp acceptLicense verifyKey selectMouse selectKeyboard configMove startMove) ];
+ : qw(initGraphical selectLanguage acceptLicense verifyKey selectMouse selectKeyboard configMove startMove) ];
$o->{steps}{first} = $o->{orderedSteps}[0];
#- don't use shadow passwords since pwconv overwrites /etc/shadow hence contents will be lost for usb key
@@ -250,6 +249,7 @@ sub install2::autoSelectLanguage {
sub install2::handleI18NClp {
my $o = $::o;
+ log::l("move: handleI18NClp");
lomount_clp("i18n_$o->{locale}{lang}", '/usr');
lomount_clp("always_i18n_$o->{locale}{lang}", '/usr');
}
@@ -604,7 +604,16 @@ sub install2::initGraphical {
$xdim > 1600 and $xdim = 1600;
run_program::run('qiv', '--root', "/image/move/BOOT-$xdim-MOVE.jpg");
+ undef *install_steps_interactive::errorInStep;
*install_steps_interactive::errorInStep = \&errorInStep;
+
+ my $gtk_charsetChanged = \&install_steps_gtk::charsetChanged;
+ undef *install_steps_gtk::charsetChanged;
+ *install_steps_gtk::charsetChanged = sub {
+ log::l("move: charsetChanged");
+ install2::handleI18NClp();
+ &$gtk_charsetChanged;
+ };
}
sub install2::startMove {