aboutsummaryrefslogtreecommitdiffstats
path: root/package/fuse24/patches/111-uclibc_changes.patch
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-06-11 02:09:53 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-06-11 02:09:53 +0000
commit59800a6331cf5e398225dada66f1a3d64aea55b5 (patch)
tree52662035661750e2b39b6c45ccb4b1b9ab79f1e8 /package/fuse24/patches/111-uclibc_changes.patch
parent0ac5531765505375638716e4c528e0368cc141f7 (diff)
downloadmaster-187ad058-59800a6331cf5e398225dada66f1a3d64aea55b5.tar.gz
master-187ad058-59800a6331cf5e398225dada66f1a3d64aea55b5.tar.bz2
master-187ad058-59800a6331cf5e398225dada66f1a3d64aea55b5.zip
[package] fuse24: introduce fuse package for brcm-2.4 (#5186)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16411 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/fuse24/patches/111-uclibc_changes.patch')
-rw-r--r--package/fuse24/patches/111-uclibc_changes.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/fuse24/patches/111-uclibc_changes.patch b/package/fuse24/patches/111-uclibc_changes.patch
new file mode 100644
index 0000000000..69730758e6
--- /dev/null
+++ b/package/fuse24/patches/111-uclibc_changes.patch
@@ -0,0 +1,16 @@
+diff -ruw fuse-2.4.0/util/fusermount.c.org fuse-2.4.0/util/fusermount.c
+--- fuse-2.4.0/util/fusermount.c.org 2005-10-14 11:34:06.000000000 +0200
++++ fuse-2.4.0/util/fusermount.c 2005-10-14 11:56:26.000000000 +0200
+@@ -42,7 +42,12 @@
+ #define FUSE_COMMFD_ENV "_FUSE_COMMFD"
+
+ #define FUSE_DEV_OLD "/proc/fs/fuse/dev"
++#ifdef __UCLIBC__
++/* /dev is mounted as devfs in OpenWRT, and device is created here */
++#define FUSE_DEV_NEW "/dev/misc/fuse"
++#else
+ #define FUSE_DEV_NEW "/dev/fuse"
++#endif
+ #define FUSE_VERSION_FILE_OLD "/proc/fs/fuse/version"
+ #define FUSE_CONF "/etc/fuse.conf"
+