summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-11-22 03:15:32 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-11-22 03:15:32 +0000
commitfdd24c73e0d26af47ca53018cd6e15263a9210b8 (patch)
tree3ca3cb6c48011a438a205a89e9365ef32d95f9da
parente59c8dd86640ca77b59c017a3b8370de4551fa46 (diff)
downloadmaster-31e0f0ae-fdd24c73e0d26af47ca53018cd6e15263a9210b8.tar.gz
master-31e0f0ae-fdd24c73e0d26af47ca53018cd6e15263a9210b8.tar.bz2
master-31e0f0ae-fdd24c73e0d26af47ca53018cd6e15263a9210b8.zip
package/fuse: add workaround for uClibc 0.9.29 issues, fixes owfs and possibly others
SVN-Revision: 13312
-rw-r--r--package/fuse/patches/300-workaround-uclibc-pthread-breakage.patch46
1 files changed, 46 insertions, 0 deletions
diff --git a/package/fuse/patches/300-workaround-uclibc-pthread-breakage.patch b/package/fuse/patches/300-workaround-uclibc-pthread-breakage.patch
new file mode 100644
index 0000000000..cef5ce2db8
--- /dev/null
+++ b/package/fuse/patches/300-workaround-uclibc-pthread-breakage.patch
@@ -0,0 +1,46 @@
+--- fuse-2.7.3.orig/lib/helper.c 2008-11-22 03:25:11.000000000 +0100
++++ fuse-2.7.3/lib/helper.c 2008-11-22 04:06:35.000000000 +0100
+@@ -178,13 +178,41 @@
+ int fuse_daemonize(int foreground)
+ {
+ int res;
++ int fd;
+
+ if (!foreground) {
+- res = daemon(0, 0);
++ /* uClibc daemon() has problems with pthread and friends */
++ /* workaround from http://www.mail-archive.com/uclibc@uclibc.org/msg01073.html */
++ /* res = daemon(0, 0); */
++ switch (res = fork()) {
++ case -1:
++ return(-1);
++ case 0:
++ break;
++ default:
++ _exit(0);
++ }
++
+ if (res == -1) {
+- perror("fuse: failed to daemonize program\n");
++ perror("fuse: failed to fork()\n");
+ return -1;
+ }
++
++ res=setsid();
++
++ if (res == -1) {
++ perror("fuse: failed to setsid()\n");
++ }
++
++ chdir("/");
++
++ if (fd = open("/dev/null", O_RDWR, 0) != -1) {
++ dup2(fd, STDIN_FILENO);
++ dup2(fd, STDOUT_FILENO);
++ dup2(fd, STDERR_FILENO);
++ if (fd > 2)
++ close(fd);
++ }
+ }
+ return 0;
+ }