1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 22:52:28 +02:00

[PATCH] kmod-sound-i8x0 missing dependencies

kmod-sound-i8x0 fails to include the ac97 modules and misspells the
module name in AutoLoad.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23283 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-10-07 10:12:55 +00:00
parent d3f4a8c0f3
commit 9478a81da6

View File

@ -102,8 +102,10 @@ endef
define KernelPackage/sound-i8x0
TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller
KCONFIG:=CONFIG_SND_INTEL8X0
FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.ko
AUTOLOAD:=$(call AutoLoad,35,snd-i8x0)
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)
$(call AddDepends/sound)
endef