Hi, Something has gone wrong when I submitted bugreport 460894 : ALS4000 Somehow the attachment and my email address get lost when I post them on the bugreport site, so here they are [EMAIL PROTECTED] alsa-sb (attachment to this email) Can someone attach alsa-sb to bugreport 460894, please? The alsa-sb patch must be applied after the general alsa-0.9.... patch. It takes some sb options in drivers/sound/lowlevel/Makefile out of an if-ISA block. This is necessary since ALS4000 is a PCI card. Frank Meisschaert.
--- linux.orig/drivers/sound/lowlevel/Makefile Wed Sep 12 16:03:27 2001 +++ linux/drivers/sound/lowlevel/Makefile Wed Sep 12 15:44:35 2001 @@ -17,12 +17,8 @@ ifeq ($(CONFIG_SND_GUS),y) obj-y += gus/g.o endif - subdir-$(CONFIG_SND_SB_COMMON) += sb subdir-$(CONFIG_SND_SB8_DSP) += sb subdir-$(CONFIG_SND_SB16_DSP) += sb - ifeq ($(CONFIG_SND_SB_COMMON),y) - obj-y += sb/sb.o - endif endif ifeq ($(CONFIG_PCI),y) subdir-$(CONFIG_SND_EMU10K1) += emu10k1 @@ -31,6 +27,10 @@ endif subdir-$(CONFIG_PCI) += pci obj-y += pci/pci.o +endif +subdir-$(CONFIG_SND_SB_COMMON) += sb +ifeq ($(CONFIG_SND_SB_COMMON),y) + obj-y += sb/sb.o endif include $(TOPDIR)/Rules.make