1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 10:49:13 +02:00

Add kmod-nfs package

SVN-Revision: 360
This commit is contained in:
Nicolas Thill 2005-03-09 22:55:13 +00:00
parent 2489bff8c0
commit f32d3bc30e
3 changed files with 20 additions and 0 deletions

View File

@ -29,6 +29,13 @@ config BR2_PACKAGE_KMOD_IPT6
help
IPv6 firewalling support
config BR2_PACKAGE_KMOD_NFS
tristate "NFS support"
default m
help
Kernel modules for NFS support
Includes lockd, nfs and sunrpc
config BR2_PACKAGE_KMOD_USB
tristate "USB/SCSI support"
default m

View File

@ -40,6 +40,11 @@ $(eval $(call KMOD_template,IPT6,ip6tables,\
$(eval $(call KMOD_template,IPV6,ipv6,\
$(MODULES_DIR)/kernel/net/ipv6/ipv6.o \
))
$(eval $(call KMOD_template,NFS,nfs,\
$(MODULES_DIR)/kernel/fs/lockd/*.o \
$(MODULES_DIR)/kernel/fs/nfs/*.o \
$(MODULES_DIR)/kernel/net/sunrpc/*.o \
))
$(eval $(call KMOD_template,USB,usb,\
$(MODULES_DIR)/kernel/drivers/scsi/*.o \
$(MODULES_DIR)/kernel/drivers/usb/*.o \

View File

@ -0,0 +1,8 @@
Package: kmod-nfs
Priority: optional
Section: sys
Version: 2.4.29-1
Architecture: mipsel
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
Source: buildroot internal
Description: Kernel modules for NFS support