aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-07-19 18:15:22 +0000
committerEd Maste <emaste@FreeBSD.org>2016-07-19 18:15:22 +0000
commit298d081c1bac2ed1d7aea14437d5745fe391fbe2 (patch)
treea7da50867d538cbb3d64f416a0197334e7343d2c /usr.sbin
parenta1acc06f4f3d6d4ae1223e39f6fb86f31855d19b (diff)
downloadsrc-298d081c1bac2ed1d7aea14437d5745fe391fbe2.tar.gz
src-298d081c1bac2ed1d7aea14437d5745fe391fbe2.zip
makefs: reorder 'usage' alphabetically
From NetBSD, Mon Aug 15 14:45:01 2011 +0000 (wiz) Re-order `usage' alphabetically; rename option arguments in the manpage's `SYNOPSIS' section to match those from `usage' (not the other way around; the `usage'-line (and other parts of makefs.c) contain the correct names); minor punctuation improvements. From Snader_LB. makefs.8 1.36 makefs.c 1.30 Obtained from: NetBSD
Notes
Notes: svn path=/head/; revision=303036
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/makefs/makefs.83
-rw-r--r--usr.sbin/makefs/makefs.c8
2 files changed, 6 insertions, 5 deletions
diff --git a/usr.sbin/makefs/makefs.8 b/usr.sbin/makefs/makefs.8
index 3c3fd2b80d6f..164d20e3e011 100644
--- a/usr.sbin/makefs/makefs.8
+++ b/usr.sbin/makefs/makefs.8
@@ -401,7 +401,8 @@ The
utility appeared in
.Nx 1.6 .
.Sh AUTHORS
-.An Luke Mewburn Aq Mt lukem@NetBSD.org
+.An Luke Mewburn
+.Aq Mt lukem@NetBSD.org
(original program),
.An Daniel Watt ,
.An Walter Deignan ,
diff --git a/usr.sbin/makefs/makefs.c b/usr.sbin/makefs/makefs.c
index c1cf502922d0..b3ae7e0136e0 100644
--- a/usr.sbin/makefs/makefs.c
+++ b/usr.sbin/makefs/makefs.c
@@ -403,10 +403,10 @@ usage(void)
prog = getprogname();
fprintf(stderr,
-"usage: %s [-t fs-type] [-o fs-options] [-d debug-mask] [-B endian]\n"
-"\t[-S sector-size] [-M minimum-size] [-m maximum-size] [-R roundup-size]\n"
-"\t[-s image-size] [-b free-blocks] [-f free-files] [-F mtree-specfile]\n"
-"\t[-xZ] [-N userdb-dir] [-T <timestamp/file>]\n"
+"usage: %s [-xZ] [-B endian] [-b free-blocks] [-d debug-mask]\n"
+"\t[-F mtree-specfile] [-f free-files] [-M minimum-size] [-m maximum-size]\n"
+"\t[-N userdb-dir] [-o fs-options] [-R roundup-size] [-S sector-size]\n"
+"\t[-s image-size] [-T <timestamp/file>] [-t fs-type]\n"
"\timage-file directory | manifest [extra-directory ...]\n",
prog);
exit(1);