14 lines
188 B
Bash
Executable file
14 lines
188 B
Bash
Executable file
#!/bin/rc
|
|
|
|
# desc: choose and mount file system partition
|
|
# prereq: configfs
|
|
|
|
switch($fstype){
|
|
case cwfs cwfs64 cwfs64x
|
|
exec mountcwfs $*
|
|
case *
|
|
mountfs=notdone
|
|
export mountfs
|
|
exit
|
|
}
|
|
|