diff options
author | Zoltan Herpai <wigyori@uid0.hu> | 2014-04-28 19:47:38 +0000 |
---|---|---|
committer | Zoltan Herpai <wigyori@uid0.hu> | 2014-04-28 19:47:38 +0000 |
commit | aa425b88a81f886c20f8572ea6ac50387c17b94a (patch) | |
tree | a0f98e77e3b50f892510dcc0a7ef2ca6b7d62db1 /package/kernel/linux/modules/netsupport.mk | |
parent | 5c91b4020b626d76d8932e022976f4381d77ff16 (diff) | |
download | upstream-aa425b88a81f886c20f8572ea6ac50387c17b94a.tar.gz upstream-aa425b88a81f886c20f8572ea6ac50387c17b94a.tar.bz2 upstream-aa425b88a81f886c20f8572ea6ac50387c17b94a.zip |
fs: add kernel modules for AFS client
- add/separate crypto modules
- add fscache support
- add rxrpc module which is required for AFS
- add afs module
Signed-Off-By: Nathaniel Wesley Filardo <8S9K8UGO5JGPI3U067229BBACKMQIGVH@cmx.ietfng.org>
Acked-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 40587
Diffstat (limited to 'package/kernel/linux/modules/netsupport.mk')
-rw-r--r-- | package/kernel/linux/modules/netsupport.mk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk index 6f61630a46..fc85e22f41 100644 --- a/package/kernel/linux/modules/netsupport.mk +++ b/package/kernel/linux/modules/netsupport.mk @@ -938,3 +938,32 @@ endef $(eval $(call KernelPackage,slip)) +define KernelPackage/dnsresolver + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=In-kernel DNS Resolver + KCONFIG:= CONFIG_DNS_RESOLVER + FILES:=$(LINUX_DIR)/net/dns_resolver/dns_resolver.ko + AUTOLOAD:=$(call AutoLoad,30,dns_resolver) +endef + +$(eval $(call KernelPackage,dnsresolver)) + +define KernelPackage/rxrpc + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=AF_RXRPC support + KCONFIG:= \ + CONFIG_AF_RXRPC \ + CONFIG_RXKAD=m \ + CONFIG_AF_RXRPC_DEBUG=n + FILES:= \ + $(LINUX_DIR)/net/rxrpc/af-rxrpc.ko \ + $(LINUX_DIR)/net/rxrpc/rxkad.ko + AUTOLOAD:=$(call AutoLoad,30,rxkad af-rxrpc) + DEPENDS:=+kmod-crypto-core +kmod-crypto-manager +kmod-crypto-pcbc +kmod-crypto-fcrypt +endef + +define KernelPackage/rxrpc/description + Kernel support for AF_RXRPC; required for AFS client +endef + +$(eval $(call KernelPackage,rxrpc)) |