svn commit: r212139 - stable/8/sbin/kldload
Maxim Konovalov
maxim at FreeBSD.org
Thu Sep 2 06:07:03 UTC 2010
Author: maxim
Date: Thu Sep 2 06:07:03 2010
New Revision: 212139
URL: http://svn.freebsd.org/changeset/base/212139
Log:
MFC r209970,209971,211990: add -q flag to usage() and
man page synopsys.
Modified:
stable/8/sbin/kldload/kldload.8
stable/8/sbin/kldload/kldload.c
Directory Properties:
stable/8/sbin/kldload/ (props changed)
Modified: stable/8/sbin/kldload/kldload.8
==============================================================================
--- stable/8/sbin/kldload/kldload.8 Thu Sep 2 05:07:34 2010 (r212138)
+++ stable/8/sbin/kldload/kldload.8 Thu Sep 2 06:07:03 2010 (r212139)
@@ -33,7 +33,7 @@
.Nd load a file into the kernel
.Sh SYNOPSIS
.Nm
-.Op Fl v
+.Op Fl qv
.Ar
.Sh DESCRIPTION
The
@@ -60,7 +60,7 @@ The
utility will warn if a module is requested as a bare filename and is present
in the current directory.
.Pp
-The following option is available:
+The following options are available:
.Bl -tag -width indent
.It Fl v
Be more verbose.
Modified: stable/8/sbin/kldload/kldload.c
==============================================================================
--- stable/8/sbin/kldload/kldload.c Thu Sep 2 05:07:34 2010 (r212138)
+++ stable/8/sbin/kldload/kldload.c Thu Sep 2 06:07:03 2010 (r212139)
@@ -129,7 +129,7 @@ path_check(const char *kldname, int quie
static void
usage(void)
{
- fprintf(stderr, "usage: kldload [-v] file ...\n");
+ fprintf(stderr, "usage: kldload [-qv] file ...\n");
exit(1);
}
More information about the svn-src-stable-8
mailing list