[patch] for sound/Config.in

Yaroslav Rosomakho (alons55@dialup.ptt.ru)
Fri, 12 Jun 1998 12:49:23 +0000


This is a multi-part message in MIME format.
--------------200C4218F30BE5E4DE02C7E9
Content-Type: text/plain; charset=koi8-r
Content-Transfer-Encoding: 7bit

Hello! sound/Config.in has a small bug in 2.1.105. It causes some sound
problems. A solution patch attached.
Yaroslav
Rosomakho.

--------------200C4218F30BE5E4DE02C7E9
Content-Type: text/plain; charset=koi8-r; name="sound-21105patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="sound-21105patch"

diff -urN linux-2.1.105.orig/drivers/sound/Config.in linux/drivers/sound/Config.in
--- linux-2.1.105.orig/drivers/sound/Config.in Fri Jun 12 12:00:32 1998
+++ linux/drivers/sound/Config.in Fri Jun 12 15:54:36 1998
@@ -11,7 +11,7 @@

dep_tristate 'OSS sound modules' CONFIG_SOUND_OSS $CONFIG_SOUND

-if [ "$CONFIG_SOUND_OSS" != "n" ]; then
+if [ "$CONFIG_SOUND_OSS" = "y" -o "$CONFIG_SOUND_OSS" = "m" ]; then
dep_tristate 'ProAudioSpectrum 16 support' CONFIG_SOUND_PAS $CONFIG_SOUND_OSS
if [ "$CONFIG_SOUND_PAS" = "y" ]; then
int 'PAS16 IRQ 3, 4, 5, 7, 9, 10, 11, 12, 14 or 15' CONFIG_PAS_IRQ 10
@@ -184,7 +184,7 @@
mainmenu_option next_comment
comment 'Additional low level sound drivers'
bool 'Additional low level sound drivers' CONFIG_LOWLEVEL_SOUND $CONFIG_SOUND_OSS
- if [ "$CONFIG_LOWLEVEL_SOUND" != "n" ]; then
+ if [ "$CONFIG_LOWLEVEL_SOUND" = "y" ]; then
source drivers/sound/lowlevel/Config.in
fi
endmenu

--------------200C4218F30BE5E4DE02C7E9--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu