From e31375ac4e12494f6a085cb2c9d51e9e61dd8216 Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Sun, 5 Aug 2012 19:17:18 +0200 Subject: srv(4), mount: update v9fs usage The v9fs usage is documented on https://www.kernel.org/doc/Documentation/filesystems/9p.txt R=rsc http://codereview.appspot.com/6445072 --- bin/mount | 4 ++-- man/man4/srv.4 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/mount b/bin/mount index 2898c021..be5170f0 100755 --- a/bin/mount +++ b/bin/mount @@ -8,8 +8,8 @@ switch(`{uname}){ case Linux if(9 grep -si ' 9p(2000)?$' /proc/filesystems){ if(u test -S $1) - exec u mount -t 9p -o proto'='unix,name'='$USER $1 $2 - exec u mount -t 9p -o proto'='tcp,name'='$USER $1 $2 + exec u mount -t 9p -o trans'='unix,uname'='$USER $1 $2 + exec u mount -t 9p -o trans'='tcp,uname'='$USER $1 $2 } if(9 grep -si ' fuse$' /proc/filesystems) exec 9pfuse $1 $2 diff --git a/man/man4/srv.4 b/man/man4/srv.4 index ccd0f034..856f88ff 100644 --- a/man/man4/srv.4 +++ b/man/man4/srv.4 @@ -90,7 +90,7 @@ handling authentication: .IP .EX srv -a sources.cs.bell-labs.com sources -sudo mount -t 9P -o user=$USER,uid=`id -u`,gid=`id -g`,proto=unix +sudo mount -t 9p -o trans=unix,uname=$USER,dfltuid=`id -u`,dfltgid=`id -g` `namespace`/sources /n/sources .EE .SH SOURCE -- cgit v1.2.3