shithub: riscv

ref: 509ff2e8fa61b344291cf00881c422f34b9d77d2
dir: /rc/bin/inst/systype/

View raw version
#!/bin/rc

# desc: choose system type

switch($1){
case checkdone
	if(~ $#syst 1 && ~ $syst cpu terminal)
		systype=done
	if not
		systype=ready
	export systype
case go
	echo

	options=(terminal cpu)
	
	prompt -d terminal 'System type' $options
	syst=$rd
	export syst
}