2007-09-20 10:27:38 +00:00
|
|
|
#
|
2008-05-26 22:57:51 +00:00
|
|
|
# Copyright (C) 2006-2008 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
|
|
|
|
|
|
|
|
define KernelPackage/sound-core
|
|
|
|
SUBMENU:=$(SOUND_MENU)
|
|
|
|
TITLE:=Sound support
|
2008-05-26 22:57:51 +00:00
|
|
|
DEPENDS:=@PCI_SUPPORT||USB_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 \
|
|
|
|
CONFIG_SND_MIXER_OSS
|
2007-09-20 10:27:38 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-core/2.4
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/sound/soundcore.$(LINUX_KMOD_SUFFIX)
|
|
|
|
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 ?= \
|
2007-09-20 10:27:38 +00:00
|
|
|
$(LINUX_DIR)/sound/soundcore.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/core/snd.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-page-alloc.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-hwdep.$(LINUX_KMOD_SUFFIX) \
|
2007-12-09 20:46:10 +00:00
|
|
|
$(LINUX_DIR)/sound/core/seq/snd-seq-device.$(LINUX_KMOD_SUFFIX) \
|
2007-09-20 10:27:38 +00:00
|
|
|
$(LINUX_DIR)/sound/core/snd-rawmidi.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-timer.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/core/snd-pcm.$(LINUX_KMOD_SUFFIX) \
|
2009-03-19 11:29:21 +00:00
|
|
|
$(LINUX_DIR)/sound/core/oss/snd-mixer-oss.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/core/oss/snd-pcm-oss.$(LINUX_KMOD_SUFFIX)
|
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
|
|
|
|
|
|
|
|
define KernelPackage/sound-core/uml-2.6
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/sound/soundcore.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/arch/um/drivers/hostaudio.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,30,soundcore hostaudio)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-core/description
|
|
|
|
Kernel modules for sound support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-core))
|
|
|
|
|
2007-12-03 21:21:17 +00:00
|
|
|
define KernelPackage/sound-i8x0
|
|
|
|
SUBMENU:=$(SOUND_MENU)
|
|
|
|
TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller
|
|
|
|
DEPENDS:=kmod-sound-core
|
|
|
|
KCONFIG:=CONFIG_SND_INTEL8X0
|
|
|
|
FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,35,snd-i8x0)
|
|
|
|
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))
|
|
|
|
|
2009-02-06 11:49:22 +00:00
|
|
|
define KernelPackage/sound-ps3
|
|
|
|
SUBMENU:=$(SOUND_MENU)
|
|
|
|
TITLE:=PS3 Audio
|
|
|
|
DEPENDS:=kmod-sound-core
|
|
|
|
KCONFIG:=CONFIG_SND_PS3 \
|
2009-05-29 20:12:37 +00:00
|
|
|
CONFIG_SND_PPC=y
|
2009-02-06 11:49:22 +00:00
|
|
|
FILES:=$(LINUX_DIR)/sound/ppc/snd_ps3.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,35, snd_ps3)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-ps3/description
|
|
|
|
support for the integrated PS3 audio device
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-ps3))
|
|
|
|
|
2007-12-31 13:33:54 +00:00
|
|
|
define KernelPackage/sound-cs5535audio
|
|
|
|
SUBMENU:=$(SOUND_MENU)
|
|
|
|
TITLE:=CS5535 PCI Controller
|
|
|
|
DEPENDS:=kmod-sound-core
|
|
|
|
KCONFIG:=CONFIG_SND_CS5535AUDIO
|
2008-01-01 14:29:27 +00:00
|
|
|
FILES:=$(LINUX_DIR)/sound/pci/cs5535audio/snd-cs5535audio.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/ac97_bus.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/sound/pci/ac97/snd-ac97-codec.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,35, ac97_bus snd-ac97-codec snd-cs5535audio)
|
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))
|