Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Feb 2015 08:26:21 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379415 - in head/sysutils/fusefs-libs: . files
Message-ID:  <201502200826.t1K8QLhD023747@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Feb 20 08:26:20 2015
New Revision: 379415
URL: https://svnweb.freebsd.org/changeset/ports/379415
QAT: https://qat.redports.org/buildarchive/r379415/

Log:
  Pass "automounted" mount option to mount_fusefs(8)
  
  This only addresses libfuse rejecting unknown option. mount_fusefs(8)
  still needs to be fixed separately.
  
  PR:		192852

Modified:
  head/sysutils/fusefs-libs/Makefile
  head/sysutils/fusefs-libs/files/patch-lib_mount_bsd.c

Modified: head/sysutils/fusefs-libs/Makefile
==============================================================================
--- head/sysutils/fusefs-libs/Makefile	Fri Feb 20 07:44:45 2015	(r379414)
+++ head/sysutils/fusefs-libs/Makefile	Fri Feb 20 08:26:20 2015	(r379415)
@@ -3,7 +3,7 @@
 
 PORTNAME=	fusefs
 PORTVERSION=	2.9.3
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/fuse/fuse-2.X/${PORTVERSION}
 PKGNAMESUFFIX=	-libs

Modified: head/sysutils/fusefs-libs/files/patch-lib_mount_bsd.c
==============================================================================
--- head/sysutils/fusefs-libs/files/patch-lib_mount_bsd.c	Fri Feb 20 07:44:45 2015	(r379414)
+++ head/sysutils/fusefs-libs/files/patch-lib_mount_bsd.c	Fri Feb 20 08:26:20 2015	(r379415)
@@ -9,6 +9,14 @@
  #include <sys/stat.h>
  #include <sys/wait.h>
  #include <sys/sysctl.h>
+@@ -78,6 +80,7 @@ static const struct fuse_opt fuse_mount_
+ 	FUSE_DUAL_OPT_KEY("ro",			KEY_KERN),
+ 	FUSE_DUAL_OPT_KEY("rw",			KEY_KERN),
+ 	FUSE_DUAL_OPT_KEY("auto",		KEY_KERN),
++	FUSE_DUAL_OPT_KEY("automounted",	KEY_KERN),
+ 	/* options supported under both Linux and FBSD */
+ 	FUSE_DUAL_OPT_KEY("allow_other",	KEY_KERN),
+ 	FUSE_DUAL_OPT_KEY("default_permissions",KEY_KERN),
 @@ -192,56 +194,12 @@
  	free(umount_cmd);
  }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502200826.t1K8QLhD023747>