summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2005-08-01 19:34:51 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2005-08-01 19:34:51 +0000
commitd645f214f7192dff77b78f3d112ac61ff3c15afa (patch)
treefde503b57f2f850134a33d944e9b1dd7ec89dd01 /sys/arch
parentade2a8ec90b0d3b11515be915cc575500d85fa88 (diff)
put -l into the right place...
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sgi/stand/sgivol/sgivol.820
-rw-r--r--sys/arch/sgi/stand/sgivol/sgivol.c6
2 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/sgi/stand/sgivol/sgivol.8 b/sys/arch/sgi/stand/sgivol/sgivol.8
index 840a3cdcbe9..c4fbbec5396 100644
--- a/sys/arch/sgi/stand/sgivol/sgivol.8
+++ b/sys/arch/sgi/stand/sgivol/sgivol.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: sgivol.8,v 1.3 2005/08/01 18:00:30 kettenis Exp $
+.\" $OpenBSD: sgivol.8,v 1.4 2005/08/01 19:34:50 jmc Exp $
.\"
.\" Copyright (c) 2005 Theo de Raadt
.\" All rights reserved.
@@ -42,15 +42,15 @@
.Ar disk
.Nm sgivol
.Op Fl fq
-.Op Fl r Ar vhfilename Ar diskfilename
+.Op Fl l Ar vhfilename1 Ar vhfilename2
.Ar disk
.Nm sgivol
.Op Fl fq
-.Op Fl w Ar vhfilename Ar diskfilename
+.Op Fl r Ar vhfilename Ar diskfilename
.Ar disk
.Nm sgivol
.Op Fl fq
-.Op Fl l Ar vhfilename1 Ar vhfilename2
+.Op Fl w Ar vhfilename Ar diskfilename
.Ar disk
.Sh DESCRIPTION
.Nm
@@ -76,6 +76,12 @@ Choose an alternate volume header size, in (512-byte) disk blocks.
The default is 3135 blocks.
.It Fl i
Initialize a volume header on the supplied device.
+.It Fl l Ar vhfilename1 Ar vhfilename2
+Link the file
+.Ar vhfilename1
+to the file
+.Ar vhfilename2
+within the filesystem storage space in the volume header.
.It Fl q
Be quiet about various diagnostic issues.
.It Fl r Ar vhfilename Ar diskfilename
@@ -90,12 +96,6 @@ Copy the standard file
to the filesystem storage space in the volume header, placing
it there with the name
.Ar diskfilename .
-.It Fl l Ar vhfilename1 Ar vhfilename2
-Link the file
-.Ar vhfilename1
-to the file
-.Ar vhfilename2
-within the filesystem storage space in the volume header.
.It Ar disk
The name of the disk containing the partition in which the second-stage
boot program resides and the first-stage boot program is to be installed.
diff --git a/sys/arch/sgi/stand/sgivol/sgivol.c b/sys/arch/sgi/stand/sgivol/sgivol.c
index cca2fac652a..87fa9f76d1c 100644
--- a/sys/arch/sgi/stand/sgivol/sgivol.c
+++ b/sys/arch/sgi/stand/sgivol/sgivol.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sgivol.c,v 1.6 2005/08/01 18:00:30 kettenis Exp $ */
+/* $OpenBSD: sgivol.c,v 1.7 2005/08/01 19:34:50 jmc Exp $ */
/* $NetBSD: sgivol.c,v 1.8 2003/11/08 04:59:00 sekiya Exp $ */
/*-
@@ -644,9 +644,9 @@ usage(void)
fprintf(stderr,
"usage: %s [-fq] [-d vhfilename] disk\n"
" %s [-fiq] [-h vhsize] disk\n"
+ " %s [-fq] [-l vhfilename1 vhfilename2] disk\n"
" %s [-fq] [-r vhfilename diskfilename] disk\n"
- " %s [-fq] [-w vhfilename diskfilename] disk\n"
- " %s [-fq] [-l vhfilename1 vhfilename2] disk\n",
+ " %s [-fq] [-w vhfilename diskfilename] disk\n",
__progname, __progname, __progname, __progname, __progname);
exit(1);
}