diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-10 14:21:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-10 14:21:23 +0000 |
commit | b89a33e1518b7669018af091e7b3e9ecd064f493 (patch) | |
tree | d41f704164e9538b21de9bc5c3e7a9f2faf8d758 /perl-install/modules.pm | |
parent | 882dedb33586992923f779380cefec9ff6763bd0 (diff) | |
download | drakx-b89a33e1518b7669018af091e7b3e9ecd064f493.tar drakx-b89a33e1518b7669018af091e7b3e9ecd064f493.tar.gz drakx-b89a33e1518b7669018af091e7b3e9ecd064f493.tar.bz2 drakx-b89a33e1518b7669018af091e7b3e9ecd064f493.tar.xz drakx-b89a33e1518b7669018af091e7b3e9ecd064f493.zip |
(write_preload_conf) rely on "multimedia/tv" category, thus managing more TV cards
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 f540dedf8..fb3aaf3a4 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -178,7 +178,7 @@ sub write_preload_conf { my ($conf) = @_; my @l; push @l, 'scsi_hostadapter' if $conf->get_probeall('scsi_hostadapter'); - push @l, intersection([ list_modules::category2modules('multimedia/dvb'), qw(bttv cx8800 saa7134) ], + push @l, intersection([ list_modules::category2modules('multimedia/dvb'), list_modules::category2modules('multimedia/tv') ]), [ 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'); |