diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-02-04 16:37:41 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-02-04 16:37:41 +0000 |
commit | dd0db5e6cdff3e561b88d1e55e26628a7655ec38 (patch) | |
tree | 2c7d3f25e34a09086746b873cc843d67c0d49cee /perl-install/install_steps.pm | |
parent | 75b3502a04b7ef9d6c4cd1352da859f291be8a68 (diff) | |
download | drakx-dd0db5e6cdff3e561b88d1e55e26628a7655ec38.tar drakx-dd0db5e6cdff3e561b88d1e55e26628a7655ec38.tar.gz drakx-dd0db5e6cdff3e561b88d1e55e26628a7655ec38.tar.bz2 drakx-dd0db5e6cdff3e561b88d1e55e26628a7655ec38.tar.xz drakx-dd0db5e6cdff3e561b88d1e55e26628a7655ec38.zip |
have numlock activated when isLaptop rather than $o->{pcmcia}
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 25f8a0942..bc7752b2a 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -932,7 +932,7 @@ sub miscellaneousBefore { add2hash_ $o, { useSupermount => 1 && $o->{security} < 4 && arch() !~ /sparc/ && !$::corporate }; - add2hash_($o->{miscellaneous} ||= {}, { numlock => !$o->{pcmcia} }); + add2hash_($o->{miscellaneous} ||= {}, { numlock => !detect_devices::isLaptop() }); } sub miscellaneous { my ($o) = @_; |