# start_dev - patch the con entry and call load routine for a device

case $1 in
aha)
	PATCH="drvl+260=sdcon"
	DEVNUM=13
	;;
at)
	PATCH="drvl+220=atcon"
	DEVNUM=11
	;;
ss)
	PATCH="drvl+260=sscon"
	DEVNUM=13
	;;
*)
	echo "Usage: $0 {aha|at|ss}"
	exit 1
esac
/conf/patch -k /begin $PATCH 2> /dev/null
/conf/devload $DEVNUM
