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 | |
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')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 64dc19316..fc509308b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- 'ibm_acpi' driver was replaced by 'thinkpad_acpi (#31606) + Version 10.4.166 - 11 August 2007, by Pascal "Pixel" Rigaux - do a normal die if drakbug is not present diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index f93446a51..cd8530ff8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- 'ibm_acpi' driver was replaced by 'thinkpad_acpi (#31606) - internal o use urpm::select::get_preferred to choose preferred packages (need urpmi library >= 4.10.1) 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); } |