From d32d4007e1deca2fde89dfe7abc71e521570414a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 23 Aug 2002 14:04:03 +0000 Subject: use right sound-slot --- perl-install/standalone/draksound | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'perl-install/standalone') diff --git a/perl-install/standalone/draksound b/perl-install/standalone/draksound index 319c6381a..88f8e99c3 100755 --- a/perl-install/standalone/draksound +++ b/perl-install/standalone/draksound @@ -36,8 +36,10 @@ my @devices = grep { $_->{media_type} eq 'MULTIMEDIA_AUDIO' } detect_devices::pr if (@devices) { # TODO: That need some work for multiples sound cards map_index { - # allocate sound-slot in the same order as install2.pm $device->{driver} with the right sound-slot-XX - $_->{driver} = modules::get_alias("sound-slot-$::i"); + # allocate sound-slot in the same order as install2.pm + # fill $device->{driver} with the right sound-slot-XX or default driver if missing sound-slot [real fix'll be in harddrake service] + my $driver = modules::get_alias("sound-slot-$::i"); + $_->{driver} = $driver if $driver; harddrake::sound::config($in, $_); } modules::probe_category('multimedia/sound'); } else { -- cgit v1.2.1