summaryrefslogtreecommitdiff
path: root/sys/arch/hp300/stand/installboot.sh
blob: 1f18c8805f58aae5a5ba149fa36c5e020b32822c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#	$OpenBSD: installboot.sh,v 1.2 1997/01/17 08:32:47 downsj Exp $
#	$NetBSD: installboot.sh,v 1.2 1994/10/26 07:27:26 cgd Exp $

# compatibility with old installboot program
#
#	@(#)installboot.sh	8.1 (Berkeley) 6/10/93
#
if [ $# != 2 ]
then
	echo "Usage: installboot bootprog device"
	exit 1
fi
if [ ! -f $1 ]
then
	echo "Usage: installboot bootprog device"
	echo "${1}: bootprog must be a regular file"
	exit 1
fi
if [ ! -c $2 ]
then
	echo "Usage: installboot bootprog device"
	echo "${2}: device must be a char special file"
	exit 1
fi
/sbin/disklabel -B -b $1 $2
exit $?