diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-01-22 08:18:04 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-01-22 08:18:04 +0000 |
commit | 2ffc0e4fbf491df27a6002a299c90212b1416b29 (patch) | |
tree | a6fcbfe93d0bb7135dcf5dc274d09e4d41224111 /package/kernel/modules/sound.mk | |
parent | 9cc33cbbe650e6b0284713375158195fc5759b4d (diff) | |
download | upstream-2ffc0e4fbf491df27a6002a299c90212b1416b29.tar.gz upstream-2ffc0e4fbf491df27a6002a299c90212b1416b29.tar.bz2 upstream-2ffc0e4fbf491df27a6002a299c90212b1416b29.zip |
[package] kernel: specify kmod packages dependencies in a uniform way
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19271 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/modules/sound.mk')
-rw-r--r-- | package/kernel/modules/sound.mk | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/package/kernel/modules/sound.mk b/package/kernel/modules/sound.mk index 0e7cefe569..9350dbf344 100644 --- a/package/kernel/modules/sound.mk +++ b/package/kernel/modules/sound.mk @@ -76,10 +76,16 @@ endef $(eval $(call KernelPackage,sound-core)) -define KernelPackage/sound-i8x0 + +define KernelPackage/sound/Depends SUBMENU:=$(SOUND_MENU) + DEPENDS:=kmod-sound-core $(1) +endef + + +define KernelPackage/sound-i8x0 +$(call KernelPackage/sound/Depends,@!TARGET_uml) TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller - DEPENDS:=kmod-sound-core @!TARGET_uml KCONFIG:=CONFIG_SND_INTEL8X0 FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,35,snd-i8x0) @@ -93,10 +99,10 @@ endef $(eval $(call KernelPackage,sound-i8x0)) + define KernelPackage/sound-ps3 - SUBMENU:=$(SOUND_MENU) +$(call KernelPackage/sound/Depends,@TARGET_ps3||TARGET_ps3chk) TITLE:=PS3 Audio - DEPENDS:=kmod-sound-core @TARGET_ps3||@TARGET_ps3chk KCONFIG:=CONFIG_SND_PS3 \ CONFIG_SND_PPC=y \ CONFIG_SND_PS3_DEFAULT_START_DELAY=2000 @@ -110,10 +116,10 @@ endef $(eval $(call KernelPackage,sound-ps3)) + define KernelPackage/sound-cs5535audio - SUBMENU:=$(SOUND_MENU) +$(call KernelPackage/sound/Depends,@!TARGET_uml) TITLE:=CS5535 PCI Controller - DEPENDS:=kmod-sound-core @!TARGET_uml KCONFIG:=CONFIG_SND_CS5535AUDIO FILES:=$(LINUX_DIR)/sound/pci/cs5535audio/snd-cs5535audio.$(LINUX_KMOD_SUFFIX) \ $(LINUX_DIR)/sound/ac97_bus.$(LINUX_KMOD_SUFFIX) \ |