From a0f876f81f04cfb9b1336b33dbf9add37160d2af Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 20 Mar 2004 08:53:43 +0000 Subject: fix saa7134 detection (#5612) --- perl-install/standalone/drakxtv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') 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; -- cgit v1.2.1