diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-10 10:58:31 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-10 10:58:31 +0000 |
commit | 1fcce06d8f3f8cfe8c59563dd64d92fc5d71cc85 (patch) | |
tree | df24e0a1bef5110760704bfa21b6928e3f9ff1bb /perl-install/modules.pm | |
parent | cd43abb12fae8df14cef1e5d5ca3ee0996358194 (diff) | |
download | drakx-1fcce06d8f3f8cfe8c59563dd64d92fc5d71cc85.tar drakx-1fcce06d8f3f8cfe8c59563dd64d92fc5d71cc85.tar.gz drakx-1fcce06d8f3f8cfe8c59563dd64d92fc5d71cc85.tar.bz2 drakx-1fcce06d8f3f8cfe8c59563dd64d92fc5d71cc85.tar.xz drakx-1fcce06d8f3f8cfe8c59563dd64d92fc5d71cc85.zip |
add various/laptop category (only toshiba is detectable by pci_probe() though...)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 8622b11f7..995b3d216 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -181,6 +181,7 @@ sub write_preload_conf { push @l, intersection([ qw(bttv cx8800 saa7134) ], [ map { $_->{driver} } detect_devices::probeall() ]); push @l, 'nvram' if cat_('/proc/bus/input/devices') =~ m!^N: Name="SynPS/2 Synaptics TouchPad"$!m; + push @l, map { $_->{driver} } probe_category('various/laptop'); my @l_26 = @l; if (my ($agp) = probe_category('various/agpgart')) { push @l_26, $agp->{driver}; |