shithub: front

ref: 7059938e9449f161805c79a7129da5ede7a3dafe
dir: /rc/bin/inst/configfs/

View raw version
#!/bin/rc

# desc: choose the type of file system to install

switch($1){
case checkdone
	if(~ $#fstype 1 && test -f /bin/$fstype)
		configfs=done
	if not
		configfs=ready
	export configfs

case go
	echo 'You can install the following types of file systems:'
	echo
	echo '	cwfs64x	the cached-worm file server'
	echo '	hjfs	the new 9front file server (experimental!)'
	echo
	prompt -d cwfs64x -h gefs 'File system' cwfs64x hjfs
	fstype=$rd
	export fstype
}