summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-09-19 11:18:00 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-09-19 11:18:00 +0000
commit3e2b2b02c5f09ba16b817b93681e6ea9f1333f3d (patch)
tree54cca42e6b2370800e8711e11ddc7cb103f3fec9 /package
parentbee5c04364b6e2819eb96d4ba6608727225767d5 (diff)
[package] Fix missing dependency in solos-pci module
Modinfo for solos-pci tells us that it has a dependency on "atm", but this isn't captured in the Makefile. Signed-off-by: Philip A. Prindeville <philipp_subx@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23086 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/kernel/modules/netdevices.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/modules/netdevices.mk b/package/kernel/modules/netdevices.mk
index aaee3acce..61fccf4fd 100644
--- a/package/kernel/modules/netdevices.mk
+++ b/package/kernel/modules/netdevices.mk
@@ -489,7 +489,7 @@ $(eval $(call KernelPackage,tulip))
define KernelPackage/solos-pci
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=Solos ADSL2+ multiport modem
- DEPENDS:=@TARGET_x86
+ DEPENDS:=@TARGET_x86 +kmod-atm
KCONFIG:=CONFIG_ATM_SOLOS
FILES:=$(LINUX_DIR)/drivers/atm/solos-pci.ko
AUTOLOAD:=$(call AutoLoad,50,solos-pci)