diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-20 08:53:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-20 08:53:43 +0000 |
commit | a0f876f81f04cfb9b1336b33dbf9add37160d2af (patch) | |
tree | 3bd06f9c8459447994af25365b34bb6c02dfec09 /perl-install/standalone/drakxtv | |
parent | 42feef294a5356edbc0308248bf807d6b7761c05 (diff) | |
download | drakx-a0f876f81f04cfb9b1336b33dbf9add37160d2af.tar drakx-a0f876f81f04cfb9b1336b33dbf9add37160d2af.tar.gz drakx-a0f876f81f04cfb9b1336b33dbf9add37160d2af.tar.bz2 drakx-a0f876f81f04cfb9b1336b33dbf9add37160d2af.tar.xz drakx-a0f876f81f04cfb9b1336b33dbf9add37160d2af.zip |
fix saa7134 detection (#5612)
Diffstat (limited to 'perl-install/standalone/drakxtv')
-rwxr-xr-x | perl-install/standalone/drakxtv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakxtv b/perl-install/standalone/drakxtv index 75515658c..45773de9c 100755 --- a/perl-install/standalone/drakxtv +++ b/perl-install/standalone/drakxtv @@ -112,7 +112,7 @@ sub scan4channels() { } } -my @devices = grep { $_->{media_type} eq 'MULTIMEDIA_VIDEO' || $_->{driver} eq 'usbvision' } detect_devices::probeall(); +my @devices = grep { $_->{media_type} eq 'MULTIMEDIA_VIDEO' || member($_->{driver}, qw(bttv saa7134 usbvision)) } detect_devices::probeall(); push @devices, { driver => 'bttv', description => 'dummy' } if $::testing && !@devices; if (@devices) { my $not_canceled = 1; |