From 84bf8e1f1a2a72411017518625dea9f8c5db8e35 Mon Sep 17 00:00:00 2001
From: Jo-Philipp Wich <jow@openwrt.org>
Date: Tue, 4 Feb 2014 15:55:03 +0000
Subject: [PATCH] linux: don't break kmod-fs-nfs for Kernels < 3.6.x

SVN-Revision: 39462
---
 package/kernel/linux/modules/fs.mk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk
index 60933f2192..867117fab0 100644
--- a/package/kernel/linux/modules/fs.mk
+++ b/package/kernel/linux/modules/fs.mk
@@ -225,9 +225,14 @@ define KernelPackage/fs-nfs
 	CONFIG_NFS_FS \
 	CONFIG_NFS_USE_LEGACY_DNS=n \
 	CONFIG_NFS_USE_NEW_IDMAPPER=n
+ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.6.0)),1)
   FILES:= \
 	$(LINUX_DIR)/fs/nfs/nfs.ko \
 	$(LINUX_DIR)/fs/nfs/nfsv3.ko
+else
+  FILES:= \
+	$(LINUX_DIR)/fs/nfs/nfs.ko
+endif
   AUTOLOAD:=$(call AutoLoad,40,nfs nfsv3)
 endef
 
-- 
2.30.2