diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-18 08:17:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-18 08:17:47 +0000 |
commit | bcd11163a62815a6b3c651f190c87536d655ed78 (patch) | |
tree | f523d31a0c471ed6ade04062af182f8a4c661d7c /sys/arch | |
parent | 1f435e728c1ccda71585662f74d8714a223e1f78 (diff) |
installboot onto partition c
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc/stand/binstall/binstall.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc/stand/binstall/binstall.sh b/sys/arch/sparc/stand/binstall/binstall.sh index bf70b807293..2f7bddb138a 100644 --- a/sys/arch/sparc/stand/binstall/binstall.sh +++ b/sys/arch/sparc/stand/binstall/binstall.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: binstall.sh,v 1.2 1998/02/12 20:32:19 mho Exp $ +# $OpenBSD: binstall.sh,v 1.3 1998/02/18 08:17:46 deraadt Exp $ # $NetBSD: binstall.sh,v 1.3 1996/04/07 20:00:12 thorpej Exp $ # @@ -95,6 +95,7 @@ case $WHAT in exit 1 fi TARGET=$DEST/boot + DEV=`echo $DEV | sed -e 's/a$/c/'` vecho Boot device: $DEV vecho Target: $TARGET $DOIT dd if=${MDEC}/boot of=$TARGET bs=32 skip=$SKIP |