diff options
author | pjd <pjd@FreeBSD.org> | 2005-03-01 14:56:49 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2005-03-01 14:56:49 +0000 |
commit | b375ed03832b371add4fade7517874f5753a256a (patch) | |
tree | 8d4f7036a82b7b3ab17906926ff111913ce8fde9 /sbin/mdconfig | |
parent | a0d09932cccc8b6b57a52cf5f3c6f253eeead036 (diff) | |
download | FreeBSD-src-b375ed03832b371add4fade7517874f5753a256a.zip FreeBSD-src-b375ed03832b371add4fade7517874f5753a256a.tar.gz |
We can specify device size in bytes. Document this in usage.
Diffstat (limited to 'sbin/mdconfig')
-rw-r--r-- | sbin/mdconfig/mdconfig.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/mdconfig/mdconfig.c b/sbin/mdconfig/mdconfig.c index 4b1ebd2..02f1287 100644 --- a/sbin/mdconfig/mdconfig.c +++ b/sbin/mdconfig/mdconfig.c @@ -48,8 +48,9 @@ usage() " mdconfig -l [-n] [-u unit]\n"); fprintf(stderr, "\t\ttype = {malloc, preload, vnode, swap}\n"); fprintf(stderr, "\t\toption = {cluster, compress, reserve}\n"); - fprintf(stderr, "\t\tsize = %%d (512 byte blocks), %%dk (kB),\n"); - fprintf(stderr, "\t\t %%dm (MB), %%dg (GB) or %%dt (TB) \n"); + fprintf(stderr, "\t\tsize = %%d (512 byte blocks), %%db (B),\n"); + fprintf(stderr, "\t\t %%dk (kB), %%dm (MB), %%dg (GB) or\n"); + fprintf(stderr, "\t\t %%dt (TB)\n"); exit(1); } |