alsaunmute update

This commit is contained in:
Martin Stransky 2007-05-30 13:22:33 +00:00
parent 50b08a2cfc
commit cac3527a8b
2 changed files with 10 additions and 11 deletions

View File

@ -4,7 +4,7 @@
Summary: Advanced Linux Sound Architecture (ALSA) utilities
Name: alsa-utils
Version: 1.0.14
Release: 0.6%{?prever_dot}%{?dist}
Release: 0.7%{?prever_dot}%{?dist}
License: GPL
Group: Applications/Multimedia
URL: http://www.alsa-project.org/
@ -74,6 +74,10 @@ ln -s ../../sbin/alsactl $RPM_BUILD_ROOT/%{_sbindir}/alsactl
/usr/share/locale/*
%changelog
* Wed May 30 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.7.rc2
- updated alsanumute for Siemens Lifebook S7020 (#241639)
- unmute Master Mono for all drivers
* Wed May 2 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.6.rc2
- added fix for #238442 (unmute Mono channel for w4550,
xw4600, xw6600, and xw8600)

View File

@ -52,6 +52,7 @@ CHANNEL channels[] = {
{"Synth", 75, 1, 0, 0, ""},
{"CD", 75, 1, 90, 1, ""},
{"Mono", 75, 1, 0, 0, ""},
{"Master Mono", 75, 1, 0, 0, ""},
// mute mic
{"Mic", 0, 0, 0, 0, ""},
@ -90,19 +91,13 @@ CHANNEL channels[] = {
{"IEC958 Optical Raw", 0, 0, 0, 0, "snd-emu10k1"},
{"Tone", 0, 0, 0, 0, "snd-emu10k1"},
// Specific config for snd-intel8x0
// Specific config for AC97/HDA
{"External Amplifier", 1, 1, 0, 0, "snd-intel8x0"},
// Specific config for snd-intel8x0 (xw8000)
{"Master Mono", 75, 1, 0, 0, "snd-intel8x0"},
// Specific config for snd_hda_intel (xw8600/xw6600/xw4600/xw4450)
{"Master Mono", 75, 1, 0, 0, "snd_hda_intel"},
{"iSpeaker", 75, 1, 0, 0, "snd-hda-intel"},
{"Internal Speaker", 75, 1, 0, 0, "snd-hda-intel"},
// Specific config for snd-ens1371
{"IEC958", 0, 0, 0, 0, "snd-ens1371"},
{"iSpeaker", 75, 1, 0, 0, "snd-hda-intel"}
{"IEC958", 0, 0, 0, 0, "snd-ens1371"}
};
char * strlwr(char *a)