diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-13 15:12:57 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-13 15:12:57 +0000 |
commit | e12af42fd4832bcde7bdeb094be24fcd9ab50b8e (patch) | |
tree | 5b5fb63d1a2ca6fa8b6fe0d967d5be476228151a /perl-install/modules.pm | |
parent | 3c266abe77e4130ef273c4c3e96f85eb9fc06d5f (diff) | |
download | drakx-e12af42fd4832bcde7bdeb094be24fcd9ab50b8e.tar drakx-e12af42fd4832bcde7bdeb094be24fcd9ab50b8e.tar.gz drakx-e12af42fd4832bcde7bdeb094be24fcd9ab50b8e.tar.bz2 drakx-e12af42fd4832bcde7bdeb094be24fcd9ab50b8e.tar.xz drakx-e12af42fd4832bcde7bdeb094be24fcd9ab50b8e.zip |
(write_preload_conf) 'ibm_acpi' driver was replaced by 'thinkpad_acpi (#31606)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 5cb8191f2..053d9988e 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -191,7 +191,7 @@ sub write_preload_conf { push @l, 'padlock' if cat_("/proc/cpuinfo") =~ /rng_en/; push @l, 'evdev' if any { $_->{Synaptics} || $_->{ALPS} || $_->{HWHEEL} } detect_devices::getInputDevices(); push @l, 'asus_acpi' if $is_laptop && $manufacturer =~ m/^ASUS/; - push @l, 'ibm_acpi' if $is_laptop && member($manufacturer, qw(IBM LENOVO)); + push @l, 'thinkpad_acpi' if $is_laptop && member($manufacturer, qw(IBM LENOVO)); push @l, 'hdaps' if $is_laptop && $manufacturer eq 'LENOVO'; append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l); } |