diff options
author | marcel <marcel@FreeBSD.org> | 2014-07-04 18:47:25 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2014-07-04 18:47:25 +0000 |
commit | 72dff6b0abb1ab52a520a1feb2c2ce11b056dafc (patch) | |
tree | 8c2dab54270b672bc0d6acbf78a52786edd3097c /usr.bin/mkimg/mkimg.c | |
parent | 6fa381c0bf4943c64c238b23b3b3f85534786588 (diff) | |
download | FreeBSD-src-72dff6b0abb1ab52a520a1feb2c2ce11b056dafc.zip FreeBSD-src-72dff6b0abb1ab52a520a1feb2c2ce11b056dafc.tar.gz |
Document the -y option as a unit test option.
Add missing -v (and -y) to the usage message.
Requested by: eadler@
Diffstat (limited to 'usr.bin/mkimg/mkimg.c')
-rw-r--r-- | usr.bin/mkimg/mkimg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/mkimg/mkimg.c b/usr.bin/mkimg/mkimg.c index edfd1f5..4513e66 100644 --- a/usr.bin/mkimg/mkimg.c +++ b/usr.bin/mkimg/mkimg.c @@ -75,6 +75,8 @@ usage(const char *why) fprintf(stderr, "\t-o <file>\t- file to write image into\n"); fprintf(stderr, "\t-p <partition>\n"); fprintf(stderr, "\t-s <scheme>\n"); + fprintf(stderr, "\t-v\t\t- increase verbosity\n"); + fprintf(stderr, "\t-y\t\t- [developers] enable unit test\n"); fprintf(stderr, "\t-H <num>\t- number of heads to simulate\n"); fprintf(stderr, "\t-P <num>\t- physical sector size\n"); fprintf(stderr, "\t-S <num>\t- logical sector size\n"); |