diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-04-29 04:04:19 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-04-29 04:04:19 +0000 |
commit | fc43e1f4f5a2c9e332d0a0dd4ecde0a51ac67b02 (patch) | |
tree | ec2d456833280073928011808e70df810ca71d4e /package/kernel/modules/sound.mk | |
parent | b233ad6626aef5d1a1ddad4f8c3ce22164404307 (diff) | |
download | upstream-fc43e1f4f5a2c9e332d0a0dd4ecde0a51ac67b02.tar.gz upstream-fc43e1f4f5a2c9e332d0a0dd4ecde0a51ac67b02.tar.bz2 upstream-fc43e1f4f5a2c9e332d0a0dd4ecde0a51ac67b02.zip |
package/kernel: move AddDepends calls at the end of package definitions, move back some dependencies in DEPENDS for clarity
SVN-Revision: 21248
Diffstat (limited to 'package/kernel/modules/sound.mk')
-rw-r--r-- | package/kernel/modules/sound.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/kernel/modules/sound.mk b/package/kernel/modules/sound.mk index ef6b0a9daf..8a1b4ef63c 100644 --- a/package/kernel/modules/sound.mk +++ b/package/kernel/modules/sound.mk @@ -96,16 +96,16 @@ $(eval $(call KernelPackage,sound-core)) define AddDepends/sound SUBMENU:=$(SOUND_MENU) - DEPENDS:=kmod-sound-core $(1) + DEPENDS+=kmod-sound-core $(1) @!TARGET_uml endef define KernelPackage/sound-i8x0 -$(call AddDepends/sound,@!TARGET_uml) TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller KCONFIG:=CONFIG_SND_INTEL8X0 FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,35,snd-i8x0) + $(call AddDepends/sound) endef define KernelPackage/sound-i8x0/description @@ -118,13 +118,13 @@ $(eval $(call KernelPackage,sound-i8x0)) define KernelPackage/sound-cs5535audio -$(call AddDepends/sound,@!TARGET_uml) TITLE:=CS5535 PCI Controller KCONFIG:=CONFIG_SND_CS5535AUDIO 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) + $(call AddDepends/sound) endef define KernelPackage/sound-cs5535audio/description @@ -135,13 +135,13 @@ $(eval $(call KernelPackage,sound-cs5535audio)) define KernelPackage/sound-soc-core -$(call AddDepends/sound) TITLE:=SoC sound support KCONFIG:= \ CONFIG_SND_SOC \ CONFIG_SND_SOC_ALL_CODECS=n FILES:=$(LINUX_DIR)/sound/soc/snd-soc-core.ko AUTOLOAD:=$(call AutoLoad,55, snd-soc-core) + $(call AddDepends/sound) endef $(eval $(call KernelPackage,sound-soc-core)) |