diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-02-04 12:50:59 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-02-04 12:50:59 +0000 |
commit | 7e614a34127835dc5abc95d031c8bd7afceba0e5 (patch) | |
tree | ea0e7411bc2704edb6ba1521d7b0bd6784d02a47 | |
parent | 30bc36811af019acf0c24219425ca195f57d65ca (diff) | |
download | upstream-7e614a34127835dc5abc95d031c8bd7afceba0e5.tar.gz upstream-7e614a34127835dc5abc95d031c8bd7afceba0e5.tar.bz2 upstream-7e614a34127835dc5abc95d031c8bd7afceba0e5.zip |
linux: fix kmod-fs-nfs to include nfsv3.ko, it was split out of nfs.ko in Linux 3.6
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39459 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/kernel/linux/modules/fs.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk index f7c63020b8..60933f2192 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 |