2007-09-20 10:27:38 +00:00
|
|
|
#
|
2010-04-24 11:42:17 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2007-09-20 10:27:38 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
SOUND_MENU:=Sound Support
|
|
|
|
|
2010-04-24 13:46:31 +00:00
|
|
|
define KernelPackage/pcspkr
|
|
|
|
SUBMENU:=$(SOUND_MENU)
|
|
|
|
TITLE:=PC speaker support
|
|
|
|
KCONFIG:=CONFIG_INPUT_PCSPKR
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/misc/pcspkr.ko
|
2010-04-24 13:46:31 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,pcspkr)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcspkr/description
|
|
|
|
This enables sounds (tones) through the pc speaker
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcspkr))
|
|
|
|
|
|
|
|
|
2007-09-20 10:27:38 +00:00
|
|
|
define KernelPackage/sound-core
|
|
|
|
SUBMENU:=$(SOUND_MENU)
|
|
|
|
TITLE:=Sound support
|
2010-04-24 11:01:06 +00:00
|
|
|
DEPENDS:=@AUDIO_SUPPORT
|
2007-09-20 10:27:38 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_SOUND \
|
|
|
|
CONFIG_SND \
|
|
|
|
CONFIG_SND_HWDEP \
|
|
|
|
CONFIG_SND_RAWMIDI \
|
|
|
|
CONFIG_SND_TIMER \
|
|
|
|
CONFIG_SND_PCM \
|
2007-11-25 17:15:30 +00:00
|
|
|
CONFIG_SND_SEQUENCER \
|
|
|
|
CONFIG_SND_VIRMIDI \
|
|
|
|
CONFIG_SND_SEQ_DUMMY \
|
|
|
|
CONFIG_SND_SEQUENCER_OSS=y \
|
2009-03-19 11:29:21 +00:00
|
|
|
CONFIG_HOSTAUDIO \
|
|
|
|
CONFIG_SND_PCM_OSS \
|
2009-11-24 10:39:31 +00:00
|
|
|
CONFIG_SND_MIXER_OSS \
|
|
|
|
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call AddDepends/input)
|
2007-09-20 10:27:38 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-core/2.4
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/sound/soundcore.ko
|
2007-09-20 10:27:38 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,soundcore)
|
|
|
|
endef
|
|
|
|
|
2009-01-12 22:47:00 +00:00
|
|
|
# allow 2.6 targets to override the soundcore stuff
|
|
|
|
SOUNDCORE_LOAD ?= \
|
|
|
|
soundcore \
|
|
|
|
snd \
|
|
|
|
snd-page-alloc \
|
|
|
|
snd-hwdep \
|
|
|
|
snd-seq-device \
|
|
|
|
snd-rawmidi \
|
|
|
|
snd-timer \
|
|
|
|
snd-pcm \
|
2009-03-19 11:29:21 +00:00
|
|
|
snd-mixer-oss \
|
|
|
|
snd-pcm-oss
|
2009-01-12 22:47:00 +00:00
|
|
|
|
|
|
|
SOUNDCORE_FILES ?= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/sound/soundcore.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/snd.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-page-alloc.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-hwdep.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/seq/snd-seq-device.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-rawmidi.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-timer.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-pcm.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/oss/snd-mixer-oss.ko \
|
|
|
|
$(LINUX_DIR)/sound/core/oss/snd-pcm-oss.ko
|
2009-01-12 22:47:00 +00:00
|
|
|
|
|
|
|
define KernelPackage/sound-core/2.6
|
|
|
|
FILES:=$(SOUNDCORE_FILES)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,30,$(SOUNDCORE_LOAD))
|
2007-09-20 10:27:38 +00:00
|
|
|
endef
|
|
|
|
|
2009-12-23 08:56:46 +00:00
|
|
|
define KernelPackage/sound-core/uml
|
2007-09-20 10:27:38 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/sound/soundcore.ko \
|
|
|
|
$(LINUX_DIR)/arch/um/drivers/hostaudio.ko
|
2007-09-20 10:27:38 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,soundcore hostaudio)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-core/description
|
|
|
|
Kernel modules for sound support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-core))
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/sound
|
2007-12-03 21:21:17 +00:00
|
|
|
SUBMENU:=$(SOUND_MENU)
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS+=kmod-sound-core $(1) @!TARGET_uml
|
2010-01-22 08:18:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/sound-i8x0
|
2007-12-03 21:21:17 +00:00
|
|
|
TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller
|
|
|
|
KCONFIG:=CONFIG_SND_INTEL8X0
|
2010-10-07 10:12:55 +00:00
|
|
|
FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.ko \
|
|
|
|
$(LINUX_DIR)/sound/ac97_bus.ko \
|
|
|
|
$(LINUX_DIR)/sound/pci/ac97/snd-ac97-codec.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,35,ac97_bus snd-ac97-codec snd-intel8x0)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/sound)
|
2007-12-03 21:21:17 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-i8x0/description
|
|
|
|
support for the integrated AC97 sound device on motherboards
|
|
|
|
with Intel/SiS/nVidia/AMD chipsets, or ALi chipsets using
|
|
|
|
the M5455 Audio Controller.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-i8x0))
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2007-12-31 13:33:54 +00:00
|
|
|
define KernelPackage/sound-cs5535audio
|
|
|
|
TITLE:=CS5535 PCI Controller
|
|
|
|
KCONFIG:=CONFIG_SND_CS5535AUDIO
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/sound/pci/cs5535audio/snd-cs5535audio.ko \
|
|
|
|
$(LINUX_DIR)/sound/ac97_bus.ko \
|
|
|
|
$(LINUX_DIR)/sound/pci/ac97/snd-ac97-codec.ko
|
2008-01-01 14:29:27 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,35, ac97_bus snd-ac97-codec snd-cs5535audio)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/sound)
|
2007-12-31 13:33:54 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-cs5535audio/description
|
|
|
|
support for the integrated AC97 sound device on olpc
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-cs5535audio))
|
2010-03-11 01:35:12 +00:00
|
|
|
|
2010-03-11 09:12:44 +00:00
|
|
|
|
2010-03-11 01:35:12 +00:00
|
|
|
define KernelPackage/sound-soc-core
|
|
|
|
TITLE:=SoC sound support
|
2010-03-11 09:12:44 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_SND_SOC \
|
|
|
|
CONFIG_SND_SOC_ALL_CODECS=n
|
2010-03-11 01:35:12 +00:00
|
|
|
FILES:=$(LINUX_DIR)/sound/soc/snd-soc-core.ko
|
2010-03-21 14:12:32 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,55, snd-soc-core)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/sound)
|
2010-03-11 01:35:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-soc-core))
|