1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-02 08:42:48 +00:00

Back out my -k changes; there's a better way to do this in the short-term.

This commit is contained in:
Jordan K. Hubbard 1996-10-02 07:22:26 +00:00
parent 39b1a97c77
commit c01fb41027
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18641
2 changed files with 5 additions and 14 deletions

View File

@ -23,7 +23,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\" $Id: dset.8,v 1.2 1996/05/02 22:34:19 mpp Exp $
.\" $Id: dset.8,v 1.3 1996/10/01 14:42:35 jkh Exp $
.\" "
.Dd May 2, 1996
.Dt DSET 8
@ -34,7 +34,6 @@
.Sh SYNOPSIS
.Nm dset
.Op Fl vqt
.Op Fl k Ar kernel
.Sh DESCRIPTION
.Nm Dset
records the configuration changes for ISA devices that have been made
@ -43,10 +42,7 @@ from
after booting with the
.Fl c
option. The changes (if any) are recorded to the file name returned by
.Xr getbootfile 3
unless overridden with the
.Fl k
flag.
.Xr getbootfile 3 .
.Nm Dset
is typically called from within
.Pa /etc/rc .

View File

@ -83,7 +83,7 @@ error(name, str)
void
usage(char *title)
{
fprintf(stderr, "usage: %s [-qtv] [-k kernel]\n", title);
fprintf(stderr, "usage: %s [-qtv]\n", title);
}
main(ac, av)
@ -109,7 +109,7 @@ main(ac, av)
int testonly = FALSE;
int verbose = FALSE;
while ((ch = getopt(ac, av, "qtvk:")) != EOF)
while ((ch = getopt(ac, av, "qtv")) != EOF)
switch (ch) {
case 'q':
quiet = TRUE;
@ -118,10 +118,6 @@ main(ac, av)
testonly = TRUE;
/* In test mode we want to be verbose */
case 'k':
kernel = optarg;
break;
case 'v':
verbose = TRUE;
break;
@ -133,8 +129,7 @@ main(ac, av)
}
if (!kernel)
kernel = getbootfile();
kernel = getbootfile();
if (verbose)
printf("Boot image: %s\n", kernel);