Skip to content

Commit

Permalink
[PATCH] ALSA patch for 2.5.4
Browse files Browse the repository at this point in the history
Integrate ALSA into v2.5.4

            Jaroslav
  • Loading branch information
perexg committed Feb 13, 2002
1 parent 74c0102 commit 91e3952
Show file tree
Hide file tree
Showing 547 changed files with 176,841 additions and 37 deletions.
6 changes: 6 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,12 @@ M: tsbogend@alpha.franken.de
L: linux-net@vger.kernel.org
S: Maintained

SOUND - ALSA
P: Jaroslav Kysela
M: perex@suse.cz
L: alsa-devel@alsa-project.org
S: Maintained

SOUND
P: Alan Cox
M: alan@redhat.com
Expand Down
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ CORE_FILES =kernel/kernel.o mm/mm.o fs/fs.o ipc/ipc.o
NETWORKS =net/network.o

LIBS =$(TOPDIR)/lib/lib.a
SUBDIRS =kernel lib drivers mm fs net ipc
SUBDIRS =kernel lib drivers mm fs net ipc sound

DRIVERS-n :=
DRIVERS-y :=
Expand Down Expand Up @@ -156,7 +156,7 @@ ifneq ($(CONFIG_CD_NO_IDESCSI)$(CONFIG_BLK_DEV_IDECD)$(CONFIG_BLK_DEV_SR)$(CONFI
DRIVERS-y += drivers/cdrom/driver.o
endif

DRIVERS-$(CONFIG_SOUND) += drivers/sound/sounddrivers.o
DRIVERS-$(CONFIG_SOUND) += sound/sound.o
DRIVERS-$(CONFIG_PCI) += drivers/pci/driver.o
DRIVERS-$(CONFIG_MTD) += drivers/mtd/mtdlink.o
DRIVERS-$(CONFIG_PCMCIA) += drivers/pcmcia/pcmcia.o
Expand Down Expand Up @@ -201,7 +201,7 @@ CLEAN_FILES = \
drivers/char/drm/*-mod.c \
drivers/pci/devlist.h drivers/pci/classlist.h drivers/pci/gen-devlist \
drivers/zorro/devlist.h drivers/zorro/gen-devlist \
drivers/sound/bin2hex drivers/sound/hex2hex \
sound/oss/bin2hex sound/oss/hex2hex \
drivers/atm/fore200e_mkfirm drivers/atm/{pca,sba}*{.bin,.bin1,.bin2} \
drivers/scsi/aic7xxx/aicasm/aicasm_gram.c \
drivers/scsi/aic7xxx/aicasm/aicasm_scan.c \
Expand All @@ -222,11 +222,11 @@ MRPROPER_FILES = \
drivers/net/hamradio/soundmodem/sm_tbl_{hapn4800,psk4800}.h \
drivers/net/hamradio/soundmodem/sm_tbl_{afsk2400_7,afsk2400_8}.h \
drivers/net/hamradio/soundmodem/gentbl \
drivers/sound/*_boot.h drivers/sound/.*.boot \
drivers/sound/msndinit.c \
drivers/sound/msndperm.c \
drivers/sound/pndsperm.c \
drivers/sound/pndspini.c \
sound/oss/*_boot.h sound/oss/.*.boot \
sound/oss/msndinit.c \
sound/oss/msndperm.c \
sound/oss/pndsperm.c \
sound/oss/pndspini.c \
drivers/atm/fore200e_*_fw.c drivers/atm/.fore200e_*.fw \
.version .config* config.in config.old \
scripts/tkparse scripts/kconfig.tk scripts/kconfig.tmp \
Expand Down Expand Up @@ -343,7 +343,7 @@ init/main.o: init/main.c include/config/MARKER
init/do_mounts.o: init/do_mounts.c include/config/MARKER
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -c -o $*.o $<

fs lib mm ipc kernel drivers net: dummy
fs lib mm ipc kernel drivers net sound: dummy
$(MAKE) CFLAGS="$(CFLAGS) $(CFLAGS_KERNEL)" $(subst $@, _dir_$@, $@)

TAGS: dummy
Expand Down
12 changes: 7 additions & 5 deletions Rules.make
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ ifdef CONFIG_MODVERSIONS
ifneq "$(strip $(export-objs))" ""

MODINCL = $(TOPDIR)/include/linux/modules
MODCURDIR = $(subst $(TOPDIR)/,,$(shell /bin/pwd))
MODPREFIX = $(subst /,-,$(MODCURDIR))__

# The -w option (enable warnings) for genksyms will return here in 2.1
# So where has it gone?
Expand All @@ -222,20 +224,20 @@ else
genksyms_smp_prefix :=
endif

$(MODINCL)/%.ver: %.c
@if [ ! -r $(MODINCL)/$*.stamp -o $(MODINCL)/$*.stamp -ot $< ]; then \
$(MODINCL)/$(MODPREFIX)%.ver: %.c
@if [ ! -r $(MODINCL)/$(MODPREFIX)$*.stamp -o $(MODINCL)/$(MODPREFIX)$*.stamp -ot $< ]; then \
echo '$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -E -D__GENKSYMS__ $<'; \
echo '| $(GENKSYMS) $(genksyms_smp_prefix) -k $(VERSION).$(PATCHLEVEL).$(SUBLEVEL) > $@.tmp'; \
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -E -D__GENKSYMS__ $< \
| $(GENKSYMS) $(genksyms_smp_prefix) -k $(VERSION).$(PATCHLEVEL).$(SUBLEVEL) > $@.tmp; \
if [ -r $@ ] && cmp -s $@ $@.tmp; then echo $@ is unchanged; rm -f $@.tmp; \
else echo mv $@.tmp $@; mv -f $@.tmp $@; fi; \
fi; touch $(MODINCL)/$*.stamp
fi; touch $(MODINCL)/$(MODPREFIX)$*.stamp

$(addprefix $(MODINCL)/,$(export-objs:.o=.ver)): $(TOPDIR)/include/linux/autoconf.h
$(addprefix $(MODINCL)/$(MODPREFIX),$(export-objs:.o=.ver)): $(TOPDIR)/include/linux/autoconf.h

# updates .ver files but not modversions.h
fastdep: $(addprefix $(MODINCL)/,$(export-objs:.o=.ver))
fastdep: $(addprefix $(MODINCL)/$(MODPREFIX),$(export-objs:.o=.ver))

# updates .ver files and modversions.h like before (is this needed?)
dep: fastdep update-modverfile
Expand Down
2 changes: 1 addition & 1 deletion arch/alpha/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ if [ "$CONFIG_ARCH_ACORN" = "y" -o \

tristate 'Sound support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu
fi
Expand Down
2 changes: 1 addition & 1 deletion arch/cris/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/i386/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/ia64/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ comment 'Sound support'

tristate 'Sound support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/dmasound/Config.in
source sound/oss/dmasound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ if [ "$CONFIG_DECSTATION" != "y" ]; then

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu
fi
Expand Down
2 changes: 1 addition & 1 deletion arch/mips64/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/parisc/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ mainmenu_option next_comment
comment 'Sound Drivers'
tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
4 changes: 2 additions & 2 deletions arch/ppc/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ mainmenu_option next_comment
comment 'Sound'
tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/dmasound/Config.in
source drivers/sound/Config.in
source sound/oss/dmasound/Config.in
source sound/Config.in
fi

endmenu
Expand Down
2 changes: 1 addition & 1 deletion arch/sh/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion arch/sparc64/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ comment 'Sound'

tristate 'Sound card support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
source drivers/sound/Config.in
source sound/Config.in
fi
endmenu

Expand Down
2 changes: 1 addition & 1 deletion drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod-subdirs := dio mtd sbus video macintosh usb input telephony sgi ide \
message/i2o message/fusion scsi md ieee1394 pnp isdn atm \
fc4 net/hamradio i2c acpi bluetooth input/serio input/gameport

subdir-y := base parport char block net sound misc media cdrom hotplug
subdir-y := base parport char block net misc media cdrom hotplug
subdir-m := $(subdir-y)


Expand Down
Loading

0 comments on commit 91e3952

Please sign in to comment.