mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-18 21:16:54 +00:00
kernel: kmod-appletalk: fix dependencies
When CONFIG_LLC gets build as a module, also p8022.ko and psnap.ko are getting build as a module. kmod-appletalk depends on llc.ko and psnap.ko, but at least psnap.ko,was not packed. On most systems CONFIG_LLC will be build into the kernel so this problem does not show up. This fixes the missing dependency of kmod-appletalk on psnap.ko Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37673
This commit is contained in:
parent
cccc9e214b
commit
0d9ecfa564
@ -45,6 +45,7 @@ $(eval $(call KernelPackage,atmtcp))
|
|||||||
define KernelPackage/appletalk
|
define KernelPackage/appletalk
|
||||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||||
TITLE:=Appletalk protocol support
|
TITLE:=Appletalk protocol support
|
||||||
|
DEPENDS:=+PACKAGE_kmod-llc:kmod-llc
|
||||||
KCONFIG:= \
|
KCONFIG:= \
|
||||||
CONFIG_ATALK \
|
CONFIG_ATALK \
|
||||||
CONFIG_DEV_APPLETALK \
|
CONFIG_DEV_APPLETALK \
|
||||||
@ -100,8 +101,11 @@ define KernelPackage/llc
|
|||||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||||
TITLE:=ANSI/IEEE 802.2 LLC support
|
TITLE:=ANSI/IEEE 802.2 LLC support
|
||||||
KCONFIG:=CONFIG_LLC
|
KCONFIG:=CONFIG_LLC
|
||||||
FILES:=$(LINUX_DIR)/net/llc/llc.ko
|
FILES:= \
|
||||||
AUTOLOAD:=$(call AutoLoad,09,llc)
|
$(LINUX_DIR)/net/llc/llc.ko \
|
||||||
|
$(LINUX_DIR)/net/802/p8022.ko \
|
||||||
|
$(LINUX_DIR)/net/802/psnap.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,09,llc p8022 psnap)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/llc/description
|
define KernelPackage/llc/description
|
||||||
|
Loading…
Reference in New Issue
Block a user