head     1.1;
branch   ;
access   ;
symbols  ;
locks    bin:1.1; strict;
comment  @# @;


1.1
date     92.07.17.15.29.03;  author bin;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@# 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
@
