aboutsummaryrefslogtreecommitdiffstats
path: root/package/fuse/patches
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-04-13 22:20:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-04-13 22:20:15 +0000
commit8675818f87ede896382e712554a8b820b0f8ead7 (patch)
tree94118554cd257124b0bf579ac85441270645b86f /package/fuse/patches
parent7797df76097505e0d81a1622f2b13c3593a75ed2 (diff)
downloadupstream-8675818f87ede896382e712554a8b820b0f8ead7.tar.gz
upstream-8675818f87ede896382e712554a8b820b0f8ead7.tar.bz2
upstream-8675818f87ede896382e712554a8b820b0f8ead7.zip
remove lots of non-essential packages
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3641 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/fuse/patches')
-rw-r--r--package/fuse/patches/111-uclibc_changes.patch16
-rw-r--r--package/fuse/patches/112-no_break_on_mknod.patch12
2 files changed, 0 insertions, 28 deletions
diff --git a/package/fuse/patches/111-uclibc_changes.patch b/package/fuse/patches/111-uclibc_changes.patch
deleted file mode 100644
index 69730758e6..0000000000
--- a/package/fuse/patches/111-uclibc_changes.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-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"
-
diff --git a/package/fuse/patches/112-no_break_on_mknod.patch b/package/fuse/patches/112-no_break_on_mknod.patch
deleted file mode 100644
index 96ed70f291..0000000000
--- a/package/fuse/patches/112-no_break_on_mknod.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ruN fuse-2.4.1-old/util/Makefile.in fuse-2.4.1-new/util/Makefile.in
---- fuse-2.4.1-old/util/Makefile.in 2005-10-17 12:29:20.000000000 +0200
-+++ fuse-2.4.1-new/util/Makefile.in 2005-10-19 17:11:13.000000000 +0200
-@@ -445,7 +445,7 @@
- install-exec-hook:
- -chown root $(DESTDIR)$(bindir)/fusermount
- -chmod u+s $(DESTDIR)$(bindir)/fusermount
-- @if test ! -e $(DESTDIR)/dev/fuse; then \
-+ -@if test ! -e $(DESTDIR)/dev/fuse; then \
- $(mkdir_p) $(DESTDIR)/dev; \
- echo "mknod $(DESTDIR)/dev/fuse -m 0666 c 10 229"; \
- mknod $(DESTDIR)/dev/fuse -m 0666 c 10 229; \