1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 15:14:38 +03:00

Add kmod-nfs package

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@360 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2005-03-09 22:55:13 +00:00
parent 105b8c71d5
commit 7240fe60ee
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