From owner-svn-ports-head@FreeBSD.ORG Fri Feb 20 08:26:22 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BC89F9; Fri, 20 Feb 2015 08:26:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 66DAE65F; Fri, 20 Feb 2015 08:26:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1K8QLhp023749; Fri, 20 Feb 2015 08:26:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1K8QLhD023747; Fri, 20 Feb 2015 08:26:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201502200826.t1K8QLhD023747@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 20 Feb 2015 08:26:21 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Feb 2015 08:26:22 -0000 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 #include #include +@@ -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); }