diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-22 08:38:01 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-22 08:38:01 +0000 |
commit | bbca8309466ca4c58584d176a5959b9f8a7013d9 (patch) | |
tree | eabae2c60d32407f2d0abda2275d8f31fc961d9c /perl-install/detect_devices.pm | |
parent | 24e61940a5bfb12b586dcb6475a767cd9aa0e338 (diff) | |
download | drakx-bbca8309466ca4c58584d176a5959b9f8a7013d9.tar drakx-bbca8309466ca4c58584d176a5959b9f8a7013d9.tar.gz drakx-bbca8309466ca4c58584d176a5959b9f8a7013d9.tar.bz2 drakx-bbca8309466ca4c58584d176a5959b9f8a7013d9.tar.xz drakx-bbca8309466ca4c58584d176a5959b9f8a7013d9.zip |
fix tv cards managed by cx88 and saa7134 (#9112)
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index cc13ab7fb..43b75cded 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -371,7 +371,7 @@ sub getSoundDevices() { (arch() =~ /ppc/ ? \&modules::load_category : \&modules::probe_category)->('multimedia/sound'); } -sub isTVcard { $_[0]{driver} =~ /bttv|saa7134/ } +sub isTVcard { member($_[0]{driver} qw(bttv cx8800 saa7134 usbvision) } sub getTVcards() { grep { isTVcard($_) } detect_devices::probeall(); |