blob: 8aa9b16ff1a6e81d9bdf3b002c04cca12029c0f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/rc
# desc: choose and mount file system partition
# prereq: configfs
switch($fstype){
case fossil fossil+venti
exec mountfossil $*
case *
mountfs=notdone
export mountfs
exit
}
|