blob: aa106e80e3308062a42edb404614cc0bd7726f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/local/plan9/bin/rc
if(! ~ $#* 2){
echo 'usage: mount addr mtpt' >[1=2]
exit usage
}
switch(`{uname}){
case Linux
if(lsmod|9 grep -si '^9p(2000)? '){
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
}
if(lsmod|9 grep -si '^fuse ')
exec 9pfuse $1 $2
echo 'don''t know how to mount (no 9p, no fuse)' >[1=2]
case FreeBSD
if(kldstat|9 grep -si ' fuse')
exec 9pfuse $1 $2
echo 'don''t know how to mount (no fuse)' >[1=2]
case Darwin
if(sysctl fuse.version >[2=1] |9 grep -si 'fuse.version' ||
test -d /System/Library/Extensions/fusefs.kext)
exec 9pfuse $1 $2
echo 'don''t know how to mount (no fuse)' >[1=2]
case *
echo 'can''t mount on' `{uname} >[1=2]
}
exit nomount
|