diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-19 19:34:35 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-19 19:34:35 +0000 |
commit | f2c9aaef837eceaebbc643f77492fce69fb32f3f (patch) | |
tree | 6f657d56e7fc9e374fca80cf92dc4f2e6d52d018 /perl-install/standalone/drakxtv | |
parent | 47193590cbe2f3c1de7bac211464d525a87218f7 (diff) | |
download | drakx-f2c9aaef837eceaebbc643f77492fce69fb32f3f.tar drakx-f2c9aaef837eceaebbc643f77492fce69fb32f3f.tar.gz drakx-f2c9aaef837eceaebbc643f77492fce69fb32f3f.tar.bz2 drakx-f2c9aaef837eceaebbc643f77492fce69fb32f3f.tar.xz drakx-f2c9aaef837eceaebbc643f77492fce69fb32f3f.zip |
full pci probe does not freeze anymore, removing code work-arounding the freeze
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 03f626dca..058fb8986 100755 --- a/perl-install/standalone/drakxtv +++ b/perl-install/standalone/drakxtv @@ -128,7 +128,7 @@ You can install it by typing \"urpmi xawtv\" as root, in a console."))); } } -my @devices = grep { $_->{media_type} eq 'MULTIMEDIA_VIDEO' || $_->{driver} eq 'usbvision' } detect_devices::probeall(1); +my @devices = grep { $_->{media_type} eq 'MULTIMEDIA_VIDEO' || $_->{driver} eq 'usbvision' } detect_devices::probeall(); push @devices, { driver => 'bttv', description => 'dummy' } if $::testing && !@devices; if (@devices) { # TODO: That need some work for multiples TV cards |