diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 69bcc59fe..64f0f6895 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -741,15 +741,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 => _("ISDN card"), val => $_->{description}, clicked => sub { $o->configureNetwork } } + } grep { $_->{driver} eq 'hisax' } detect_devices::probeall()), (map { -{ label => _("Sound card"), val => \ (my $i = $_->{description}), clicked => sub {} } +{ label => _("Sound card"), val => $_->{description} } } modules::get_that_type('sound')), (map { -{ label => _("TV card"), val => \ (my $i = $_->{description}), clicked => sub {} } +{ label => _("TV card"), val => $_->{description} } } grep { $_->{driver} eq 'bttv' } detect_devices::probeall()), - (map { -{ label => _("ISDN card"), val => \ (my $i = $_->{description}), clicked => sub { $o->configureNetwork } } - } grep { $_->{driver} eq 'hisax' } detect_devices::probeall()), ]); } |