Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
70a8c455
Commit
70a8c455
authored
16 years ago
by
Nicolas Thill
Browse files
Options
Downloads
Patches
Plain Diff
fix fuse: use in-kernel module for 2.6.25+ kernels
SVN-Revision: 11116
parent
e93e293b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
package/fuse/Makefile
+15
-4
15 additions, 4 deletions
package/fuse/Makefile
with
15 additions
and
4 deletions
package/fuse/Makefile
+
15
−
4
View file @
70a8c455
#
#
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006
-2008
OpenWrt.org
#
#
# This is free software, licensed under the GNU General Public License v2.
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
# See /LICENSE for more information.
...
@@ -48,11 +48,12 @@ $(call Package/fuse/Default)
...
@@ -48,11 +48,12 @@ $(call Package/fuse/Default)
SUBMENU
:=
Filesystems
SUBMENU
:=
Filesystems
DEPENDS
:=
@LINUX_2_6
DEPENDS
:=
@LINUX_2_6
TITLE
+=
(
kernel module
)
TITLE
+=
(
kernel module
)
FILES
:=
$(
PKG_INSTALL_DIR
)
/lib/modules/
$(
LINUX_VERSION
)
/kernel/fs/fuse/fuse.
$(
LINUX_KMOD_SUFFIX
)
KCONFIG
:=
CONFIG_FUSE_FS
FILES
:=
$(
LINUX_DIR
)
/fs/fuse/fuse.
$(
LINUX_KMOD_SUFFIX
)
AUTOLOAD
:=
$(
call AutoLoad,80,fuse
)
AUTOLOAD
:=
$(
call AutoLoad,80,fuse
)
endef
endef
define
Kernel
/
Package/fuse/description
define
KernelPackage/fuse/description
$(
call
Package/fuse/Default/description
)
$(
call
Package/fuse/Default/description
)
This
package
contains
the
FUSE
kernel
module.
This
package
contains
the
FUSE
kernel
module.
endef
endef
...
@@ -78,7 +79,6 @@ CONFIGURE_ARGS += \
...
@@ -78,7 +79,6 @@ CONFIGURE_ARGS += \
--enable-shared
\
--enable-shared
\
--enable-static
\
--enable-static
\
--disable-rpath
\
--disable-rpath
\
--enable-kernel-module
\
--enable-lib
\
--enable-lib
\
--enable-util
\
--enable-util
\
--disable-example
\
--disable-example
\
...
@@ -86,6 +86,17 @@ CONFIGURE_ARGS += \
...
@@ -86,6 +86,17 @@ CONFIGURE_ARGS += \
--with-kernel
=
"
$(
LINUX_DIR
)
"
\
--with-kernel
=
"
$(
LINUX_DIR
)
"
\
--disable-mtab
--disable-mtab
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
define
Build/Configure
(cd
$(PKG_BUILD_DIR);
rm
-f
config.cache;
\
(cd
$(PKG_BUILD_DIR);
rm
-f
config.cache;
\
touch
configure.in
;
\
touch
configure.in
;
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment