summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-02-04 12:50:59 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-02-04 12:50:59 +0000
commitbc5b6efe2320f088c404e4e6952bdc18e0b383f0 (patch)
tree2545127d22bb90ac8f16c2ce09c849cb431b009f
parent4425082339758fee42b6f76b11ba98e2c1929cb3 (diff)
downloadmtk-20170518-bc5b6efe2320f088c404e4e6952bdc18e0b383f0.zip
mtk-20170518-bc5b6efe2320f088c404e4e6952bdc18e0b383f0.tar.gz
mtk-20170518-bc5b6efe2320f088c404e4e6952bdc18e0b383f0.tar.bz2
linux: fix kmod-fs-nfs to include nfsv3.ko, it was split out of nfs.ko in Linux 3.6
SVN-Revision: 39459
-rw-r--r--package/kernel/linux/modules/fs.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk
index f7c6302..60933f2 100644
--- a/package/kernel/linux/modules/fs.mk
+++ b/package/kernel/linux/modules/fs.mk
@@ -226,8 +226,9 @@ define KernelPackage/fs-nfs
CONFIG_NFS_USE_LEGACY_DNS=n \
CONFIG_NFS_USE_NEW_IDMAPPER=n
FILES:= \
- $(LINUX_DIR)/fs/nfs/nfs.ko
- AUTOLOAD:=$(call AutoLoad,40,nfs)
+ $(LINUX_DIR)/fs/nfs/nfs.ko \
+ $(LINUX_DIR)/fs/nfs/nfsv3.ko
+ AUTOLOAD:=$(call AutoLoad,40,nfs nfsv3)
endef
define KernelPackage/fs-nfs/description