summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-08-16 12:33:38 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-08-16 12:33:38 +0000
commit3eddf2583b774f928ece9212375b291c3878a478 (patch)
tree8b5e448416dee6f7a47b6ebfeeb1befa40519b7e /perl-install/install_steps_interactive.pm
parent6defeabbc00f6b5d8bcc2ca587b670d82d35446f (diff)
downloaddrakx-backup-do-not-use-3eddf2583b774f928ece9212375b291c3878a478.tar
drakx-backup-do-not-use-3eddf2583b774f928ece9212375b291c3878a478.tar.gz
drakx-backup-do-not-use-3eddf2583b774f928ece9212375b291c3878a478.tar.bz2
drakx-backup-do-not-use-3eddf2583b774f928ece9212375b291c3878a478.tar.xz
drakx-backup-do-not-use-3eddf2583b774f928ece9212375b291c3878a478.zip
- harddrake::bttv is renamed harddrake::v4l
- harddrake::v4l handle saa7134 too now (and not only bttv) - harddrake::v4l::config need a new driver parameter in order to be able to offer the right cards and tuners list - drakxtv: kill some old comments - add the list of cards supported by saa7134 - add a not to remember a potentiel speedup
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 4c8f6fc63..35000ad15 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1047,9 +1047,9 @@ sub summary {
if_($isa_sound_card, { label => _("Sound card"), clicked => $isa_sound_card }),
(map {
{ label => _("TV card"), val => $_->{description}, clicked => sub {
- require harddrake::bttv;
- harddrake::bttv::config($o);
-} } } grep { $_->{driver} eq 'bttv' } detect_devices::probeall()),
+ require harddrake::v4l;
+ harddrake::v4l::config($o, $_->{driver});
+} } } grep { $_->{driver} =~ '(bttv|saa7134)' } detect_devices::probeall()),
]);
install_steps::configureTimezone($o); #- do not forget it.
}