summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2002-09-19 13:29:10 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2002-09-19 13:29:10 +0000
commit80428896706c7e7943ea36a48d401314cd7c981a (patch)
tree98b676c834f108bae68677a4d427d3b6f2ef2cd8
parenta20708b781616583eddc09c287de1653ebc8f7e8 (diff)
downloaddrakx-backup-do-not-use-80428896706c7e7943ea36a48d401314cd7c981a.tar
drakx-backup-do-not-use-80428896706c7e7943ea36a48d401314cd7c981a.tar.gz
drakx-backup-do-not-use-80428896706c7e7943ea36a48d401314cd7c981a.tar.bz2
drakx-backup-do-not-use-80428896706c7e7943ea36a48d401314cd7c981a.tar.xz
drakx-backup-do-not-use-80428896706c7e7943ea36a48d401314cd7c981a.zip
fix titisucks making cards choice in bttv dialog unavailable
-rw-r--r--perl-install/install_steps_interactive.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index d49d40729..d3abbdee4 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1029,10 +1029,13 @@ sub summary {
} @sound_cards),
if_($isa_sound_card, { label => _("Sound card"), clicked => $isa_sound_card }),
(map {
-{ label => _("TV card"), val => $_->{description}, clicked => sub {
- require harddrake::v4l;
- harddrake::v4l::config($o, $_->{driver});
-} } } grep { $_->{driver} =~ '(bttv|saa7134)' } detect_devices::probeall()),
+ my $driver = $_->{driver};
+ { label => _("TV card"), val => $_->{description}, clicked => sub {
+ require harddrake::v4l;
+ harddrake::v4l::config($o, $driver);
+ }
+ }
+ } grep { $_->{driver} =~ '(bttv|saa7134)' } detect_devices::probeall()),
]);
install_steps::configureTimezone($o); #- do not forget it.
}