massive: replace occurences of .$(LINUX_KMOD_SUFFIX) with .ko after r21950
[openwrt.git] / package / kernel / modules / sound.mk
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 SOUND_MENU:=Sound Support
9
10 define KernelPackage/pcspkr
11   SUBMENU:=$(SOUND_MENU)
12   TITLE:=PC speaker support
13   KCONFIG:=CONFIG_INPUT_PCSPKR
14   FILES:=$(LINUX_DIR)/drivers/input/misc/pcspkr.ko
15   AUTOLOAD:=$(call AutoLoad,50,pcspkr)
16 endef
17
18 define KernelPackage/pcspkr/description
19  This enables sounds (tones) through the pc speaker
20 endef
21
22 $(eval $(call KernelPackage,pcspkr))
23
24
25 define KernelPackage/sound-core
26   SUBMENU:=$(SOUND_MENU)
27   TITLE:=Sound support
28   DEPENDS:=@AUDIO_SUPPORT
29   KCONFIG:= \
30         CONFIG_SOUND \
31         CONFIG_SND \
32         CONFIG_SND_HWDEP \
33         CONFIG_SND_RAWMIDI \
34         CONFIG_SND_TIMER \
35         CONFIG_SND_PCM \
36         CONFIG_SND_SEQUENCER \
37         CONFIG_SND_VIRMIDI \
38         CONFIG_SND_SEQ_DUMMY \
39         CONFIG_SND_SEQUENCER_OSS=y \
40         CONFIG_HOSTAUDIO \
41         CONFIG_SND_PCM_OSS \
42         CONFIG_SND_MIXER_OSS \
43         CONFIG_SOUND_OSS_CORE_PRECLAIM=y
44   $(call AddDepends/input)
45 endef
46
47 define KernelPackage/sound-core/2.4
48   FILES:=$(LINUX_DIR)/drivers/sound/soundcore.ko
49   AUTOLOAD:=$(call AutoLoad,30,soundcore)
50 endef
51
52 # allow 2.6 targets to override the soundcore stuff
53 SOUNDCORE_LOAD ?= \
54         soundcore \
55         snd \
56         snd-page-alloc \
57         snd-hwdep \
58         snd-seq-device \
59         snd-rawmidi \
60         snd-timer \
61         snd-pcm \
62         snd-mixer-oss \
63         snd-pcm-oss
64
65 SOUNDCORE_FILES ?= \
66         $(LINUX_DIR)/sound/soundcore.ko \
67         $(LINUX_DIR)/sound/core/snd.ko \
68         $(LINUX_DIR)/sound/core/snd-page-alloc.ko \
69         $(LINUX_DIR)/sound/core/snd-hwdep.ko \
70         $(LINUX_DIR)/sound/core/seq/snd-seq-device.ko \
71         $(LINUX_DIR)/sound/core/snd-rawmidi.ko \
72         $(LINUX_DIR)/sound/core/snd-timer.ko \
73         $(LINUX_DIR)/sound/core/snd-pcm.ko \
74         $(LINUX_DIR)/sound/core/oss/snd-mixer-oss.ko \
75         $(LINUX_DIR)/sound/core/oss/snd-pcm-oss.ko
76
77 define KernelPackage/sound-core/2.6
78   FILES:=$(SOUNDCORE_FILES)
79   AUTOLOAD:=$(call AutoLoad,30,$(SOUNDCORE_LOAD))
80 endef
81
82 define KernelPackage/sound-core/uml
83   FILES:= \
84         $(LINUX_DIR)/sound/soundcore.ko \
85         $(LINUX_DIR)/arch/um/drivers/hostaudio.ko
86   AUTOLOAD:=$(call AutoLoad,30,soundcore hostaudio)
87 endef
88
89 define KernelPackage/sound-core/description
90  Kernel modules for sound support
91 endef
92
93 $(eval $(call KernelPackage,sound-core))
94
95
96 define AddDepends/sound
97   SUBMENU:=$(SOUND_MENU)
98   DEPENDS+=kmod-sound-core $(1) @!TARGET_uml
99 endef
100
101
102 define KernelPackage/sound-i8x0
103   TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller
104   KCONFIG:=CONFIG_SND_INTEL8X0
105   FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.ko
106   AUTOLOAD:=$(call AutoLoad,35,snd-i8x0)
107   $(call AddDepends/sound)
108 endef
109
110 define KernelPackage/sound-i8x0/description
111  support for the integrated AC97 sound device on motherboards
112  with Intel/SiS/nVidia/AMD chipsets, or ALi chipsets using 
113  the M5455 Audio Controller.
114 endef
115
116 $(eval $(call KernelPackage,sound-i8x0))
117
118
119 define KernelPackage/sound-cs5535audio
120   TITLE:=CS5535 PCI Controller
121   KCONFIG:=CONFIG_SND_CS5535AUDIO
122   FILES:=$(LINUX_DIR)/sound/pci/cs5535audio/snd-cs5535audio.ko \
123         $(LINUX_DIR)/sound/ac97_bus.ko \
124         $(LINUX_DIR)/sound/pci/ac97/snd-ac97-codec.ko 
125   AUTOLOAD:=$(call AutoLoad,35, ac97_bus snd-ac97-codec snd-cs5535audio)
126   $(call AddDepends/sound)
127 endef
128
129 define KernelPackage/sound-cs5535audio/description
130  support for the integrated AC97 sound device on olpc
131 endef
132
133 $(eval $(call KernelPackage,sound-cs5535audio))
134
135
136 define KernelPackage/sound-soc-core
137   TITLE:=SoC sound support
138   KCONFIG:= \
139         CONFIG_SND_SOC \
140         CONFIG_SND_SOC_ALL_CODECS=n
141   FILES:=$(LINUX_DIR)/sound/soc/snd-soc-core.ko
142   AUTOLOAD:=$(call AutoLoad,55, snd-soc-core)
143   $(call AddDepends/sound)
144 endef
145
146 $(eval $(call KernelPackage,sound-soc-core))