Remove the -v option, it is now default behaviour.
Sponsored by: DARPA & NAI Labs
This commit is contained in:
parent
04b00f1af4
commit
3acf322b77
@ -55,7 +55,6 @@
|
||||
.Op Fl o Ar optimization
|
||||
.Op Fl s Ar size
|
||||
.Op Fl u Ar sectors
|
||||
.Op Fl v
|
||||
.Ar special
|
||||
.Sh DESCRIPTION
|
||||
.Nm Newfs
|
||||
@ -163,12 +162,6 @@ raw partition specified in
|
||||
(in other words,
|
||||
.Nm
|
||||
will use the entire partition for the file system).
|
||||
.It Fl v
|
||||
Specify that the disk does not contain any partitions, and that
|
||||
.Nm
|
||||
should build a file system on the whole disk.
|
||||
This option is useful for synthetic disks such as
|
||||
.Nm vinum .
|
||||
.El
|
||||
.Pp
|
||||
The following options override the standard sizes for the disk geometry.
|
||||
|
@ -151,13 +151,11 @@ main(int argc, char *argv[])
|
||||
struct partition oldpartition;
|
||||
struct stat st;
|
||||
char *cp, *special;
|
||||
int ch, n, vflag;
|
||||
int ch, n;
|
||||
off_t mediasize;
|
||||
|
||||
vflag = 0;
|
||||
|
||||
while ((ch = getopt(argc, argv,
|
||||
"NRS:T:Ua:b:c:e:f:g:h:i:m:o:s:u:v:")) != -1)
|
||||
"NRS:T:Ua:b:c:e:f:g:h:i:m:o:s:u:")) != -1)
|
||||
switch (ch) {
|
||||
case 'N':
|
||||
Nflag = 1;
|
||||
@ -234,9 +232,6 @@ main(int argc, char *argv[])
|
||||
errx(1, "%s: bad sectors/track", optarg);
|
||||
secpercyl = n;
|
||||
break;
|
||||
case 'v':
|
||||
vflag = 1;
|
||||
break;
|
||||
case '?':
|
||||
default:
|
||||
usage();
|
||||
@ -279,11 +274,11 @@ main(int argc, char *argv[])
|
||||
if (lp != NULL) {
|
||||
cp = strchr(special, '\0');
|
||||
cp--;
|
||||
if (!vflag && (*cp < 'a' || *cp > 'h') && !isdigit(*cp))
|
||||
if ((*cp < 'a' || *cp > 'h') && !isdigit(*cp))
|
||||
errx(1, "%s: can't figure out file system partition",
|
||||
special);
|
||||
if (vflag || isdigit(*cp))
|
||||
pp = &lp->d_partitions[0];
|
||||
if (isdigit(*cp))
|
||||
pp = &lp->d_partitions[RAW_PART];
|
||||
else
|
||||
pp = &lp->d_partitions[*cp - 'a'];
|
||||
oldpartition = *pp;
|
||||
|
Loading…
Reference in New Issue
Block a user