From: Florian Fainelli Date: Sun, 19 Sep 2010 11:18:00 +0000 (+0000) Subject: [package] Fix missing dependency in solos-pci module X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=248e409f3f9c8a8bbdacfa2daf42599ba250abd2 [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 SVN-Revision: 23086 --- diff --git a/package/kernel/modules/netdevices.mk b/package/kernel/modules/netdevices.mk index aaee3acce8..61fccf4fd7 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)