From ac08650de73ce8ecd2ba9ea292dc29225f202884 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 6 Mar 2001 17:07:36 +0000 Subject: (summary): display sound/tv/isdn cards found --- perl-install/install_steps_interactive.pm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 17099cf13..905834cb3 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -742,6 +742,15 @@ sub summary { { label => _("Keyboard"), val => \$o->{keyboard}, clicked => sub { $o->selectKeyboard(1) }, format => sub { translate(keyboard::keyboard2text($_[0])) } } }, { label => _("Timezone"), val => \$o->{timezone}{timezone}, clicked => sub { $o->configureTimezone(1) } }, { label => _("Printer"), val => \$o->{printer}{mode}, clicked => sub { $o->configurePrinter(1) }, format => sub { $_[0] || _("No printer") } }, + (map { +{ label => _("Sound card"), val => \ (my $i = $_->{description}), clicked => {} } + } modules::get_that_type('sound')), + (map { +{ label => _("TV card"), val => \ (my $i = $_->{description}), clicked => {} } + } { $_->{driver} eq 'bttv' } detect_devices::probeall()), + (map { +{ label => _("ISDN card"), val => \ (my $i = $_->{description}), clicked => { $o->configureNetwork } } + } { $_->{driver} eq 'hisax' } detect_devices::probeall()), ]); } -- cgit v1.2.1