diff options
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 12 |
2 files changed, 2 insertions, 12 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ae2fc91e9..1cc8de77c 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- stop configuring TV cards in summary since kernel do a better job now + Version 10.4.204 - 19 September 2007, by Pascal "Pixel" Rigaux - individual package selection: make the package "Info" non editable diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index c9954b430..667f4129f 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -901,18 +901,6 @@ sub summary { }; } - foreach my $tv (detect_devices::getTVcards()) { - push @l, { - group => N("Hardware"), - label => N("TV card"), - val => sub { $tv->{description} }, - clicked => sub { - require harddrake::v4l; - harddrake::v4l::config($o, $o->{modules_conf}, $tv->{driver}); - } - }; - } - push @l, { group => N("Hardware"), label => N("Graphical interface"), |