- --disable-auto-modprobe \
- --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.
-#
-#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
-
-define Build/Configure
- (cd $(PKG_BUILD_DIR); rm -f config.cache; \
- touch configure.in ; \
- touch aclocal.m4 ; \
- touch Makefile.in ; \
- touch include/config.h.in ; \
- touch configure ; \
- )
- $(call Build/Configure/Default)
-endef