Guillaume Rousse <[EMAIL PROTECTED]> writes:
> Installer should support both oss and alsa drivers when possible.
something like this ?
Index: install_steps_interactive.pm
===================================================================
RCS file: /cooker/gi/perl-install/install_steps_interactive.pm,v
retrieving revision 1.678
diff -u -3 -p -r1.678 install_steps_interactive.pm
--- install_steps_interactive.pm 2002/09/12 22:48:25 1.678
+++ install_steps_interactive.pm 2002/09/13 09:37:10
@@ -1025,7 +1025,10 @@ sub summary {
{ label => _("ISDN card"), val => $_->{description}, clicked => sub { $o->configureNetwork } }
} grep { $_->{driver} eq 'hisax' } detect_devices::probeall()),
(map {
-{ label => _("Sound card"), val => $_->{description} }
+{ label => _("Sound card"), val => $_->{description}, clicked => sub {
+ require harddrake::sound;
+ harddrake::sound::config($o, $_)
+ } }
} @sound_cards),
if_($isa_sound_card, { label => _("Sound card"), clicked => $isa_sound_card }),
(map {