diff options
author | phk <phk@FreeBSD.org> | 2002-04-24 12:27:03 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-04-24 12:27:03 +0000 |
commit | 8709ee371a6dc3aa57c61d1396972cc5c83b39e8 (patch) | |
tree | 5d6f8eee8f733247eac16c5f52ecc988ec831020 /sbin/newfs | |
parent | 5efd20ae96b501cb753f221b24efda2ee70753dd (diff) | |
download | FreeBSD-src-8709ee371a6dc3aa57c61d1396972cc5c83b39e8.zip FreeBSD-src-8709ee371a6dc3aa57c61d1396972cc5c83b39e8.tar.gz |
Remove the -v option, it is now default behaviour.
Sponsored by: DARPA & NAI Labs
Diffstat (limited to 'sbin/newfs')
-rw-r--r-- | sbin/newfs/newfs.8 | 7 | ||||
-rw-r--r-- | sbin/newfs/newfs.c | 15 |
2 files changed, 5 insertions, 17 deletions
diff --git a/sbin/newfs/newfs.8 b/sbin/newfs/newfs.8 index dfcb9a1..80c30c3 100644 --- a/sbin/newfs/newfs.8 +++ b/sbin/newfs/newfs.8 @@ -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. diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index ed8073a..efb4686 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -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; |