From 6c0d91ad22ec5531917deab274c579d529002d92 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Oct 02 2006 08:15:39 +0000 Subject: fix for #207384 - Audio test fails during firstboot --- diff --git a/alsa-utils.spec b/alsa-utils.spec index 5c029b2..5ef8f70 100644 --- a/alsa-utils.spec +++ b/alsa-utils.spec @@ -1,7 +1,7 @@ Summary: Advanced Linux Sound Architecture (ALSA) utilities Name: alsa-utils Version: 1.0.12 -Release: 2%{?prever_dot}%{?dist} +Release: 3%{?prever_dot}%{?dist} License: GPL Group: Applications/Multimedia URL: http://www.alsa-project.org/ @@ -65,6 +65,9 @@ install -m 755 alsacard %{buildroot}/bin /usr/share/locale/* %changelog +* Mon Oct 2 2006 Martin Stransky 1.0.12-3 +- fix for #207384 - Audio test fails during firstboot + * Fri Aug 25 2006 Martin Stransky 1.0.12-2 - new upstream diff --git a/alsaunmute.c b/alsaunmute.c index 1059697..ef9be28 100644 --- a/alsaunmute.c +++ b/alsaunmute.c @@ -51,6 +51,7 @@ CHANNEL channels[] = { {"PCM-2", 75, 1, 0, 0, ""}, {"Synth", 75, 1, 0, 0, ""}, {"CD", 75, 1, 90, 1, ""}, + {"Mono", 75, 1, 0, 0, ""}, // mute mic {"Mic", 0, 0, 0, 0, ""}, @@ -96,11 +97,8 @@ CHANNEL channels[] = { {"Master Mono", 75, 1, 0, 0, "snd-intel8x0"}, // Specific config for snd-ens1371 - {"IEC958", 0, 0, 0, 0, "snd-ens1371"}, + {"IEC958", 0, 0, 0, 0, "snd-ens1371"} - // Specific config for snd-azx/snd-hda - {"Mono", 75, 1, 0, 0, "snd-azx"}, - {"Mono", 75, 1, 0, 0, "snd-hda"} }; char * strlwr(char *a)