summaryrefslogtreecommitdiffstats
path: root/package/fuse
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-31 10:49:46 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-31 10:49:46 +0000
commitcb0c6cbf781cfb80c9f7038fa03013693ac23732 (patch)
tree619065e4f85b95a12d6f5129428b3d4ea4c2a88f /package/fuse
parenta74ac1e304d5fb7d57e0bb4718599e391a54f874 (diff)
[package] disable fuse kernel compilation module, all versions that we have have it mainline (#5584)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17059 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/fuse')
-rw-r--r--package/fuse/Makefile23
1 files changed, 6 insertions, 17 deletions
diff --git a/package/fuse/Makefile b/package/fuse/Makefile
index d5e108685..152c5402d 100644
--- a/package/fuse/Makefile
+++ b/package/fuse/Makefile
@@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=fuse
PKG_VERSION:=2.7.4
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
@@ -85,23 +85,12 @@ CONFIGURE_ARGS += \
--with-kernel="$(LINUX_DIR)" \
--disable-mtab
-# This section is disabled; since kernel 2.6.14 the fuse module is officially
-# part of the kernel. The following enables this fuse packages kernel module
-# instead of the kernel's, if the kernel is younger than 2.6.25.
-# Generally it is better to use the kernel's module. Because it is DCACHE BUG
-# patched and from fuse 2.8.0 on it will be removed from the fuse package
-# anyway.
+# Since kernel 2.6.14 the fuse module is officially part of the kernel.
+# Generally it is better to use the kernel's module. Because it is patched
+# against the DCACHE BUG on arm architectures (currently brcm-2.4, brcm-47xx)
+# and from fuse 2.8.0 on it will be removed from the fuse package anyway.
#
-#ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),lt,2.6.25)),1)
-# define KernelPackage/fuse/2.6
-# KCONFIG:=
-# FILES:=$(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/fuse/fuse.$(LINUX_KMOD_SUFFIX)
-# endef
-#
-# CONFIGURE_ARGS += --enable-kernel-module
-#else
-# CONFIGURE_ARGS += --disable-kernel-module
-#endif
+CONFIGURE_ARGS += --disable-kernel-module
define Build/Configure
(cd $(PKG_BUILD_DIR); rm -f config.cache; \