* Remove unused -R option in newfs(8).
* Miscellaneous small cosmetics.
.\" $FreeBSD: src/sbin/i386/fdisk/fdisk.8,v 1.17.2.11 2002/04/25 16:25:12 trhodes Exp $
-.\" $DragonFly: src/sbin/i386/fdisk/fdisk.8,v 1.17 2008/09/01 20:13:32 thomas Exp $
.\"
-.Dd September 1, 2008
+.Dd October 7, 2011
.Dt FDISK 8
.Os
.Sh NAME
.Nd PC slice table (MBR) maintenance program
.Sh SYNOPSIS
.Nm
-.Op Fl BCIaistu
+.Op Fl BCEIaistu
.Op Fl b Ar bootcode
.Op Fl p Ar diskimage
.Op Fl 1234
that the disk should be put in Large mode.
This option may be needed on very old PCs.
.It Fl E
-Use TRIM to erase the device/partition before creating the file system. The
-underlying device must have the Trim sysctl enabled. Only devices that
-support TRIM will have such a sysctl option (kern.cam.da.X.trim_enabled). For
-use with the
+Use TRIM to erase the device/partition before creating the file system.
+The underlying device must have the TRIM sysctl enabled.
+Only devices that support TRIM will have such a sysctl option
+.Va ( kern.cam.da.X.trim_enabled ) .
+For use with the
.Fl I
or
.Fl u
* the rights to redistribute these changes.
*
* $FreeBSD: /repoman/r/ncvs/src/sbin/i386/fdisk/fdisk.c,v 1.36.2.14 2004/01/30 14:40:47 harti Exp $
- * $DragonFly: src/sbin/i386/fdisk/fdisk.c,v 1.16 2008/04/23 22:09:07 thomas Exp $
*/
#include <sys/types.h>
usage(void)
{
fprintf(stderr, "%s%s",
- "usage: fdisk [-BCIaistu] [-b bootcode] [-p diskimage] [-1234] [disk]\n",
+ "usage: fdisk [-BCEIaistu] [-b bootcode] [-p diskimage] [-1234] [disk]\n",
" fdisk -f configfile [-itv] [disk]\n");
exit(1);
}
.\"
.\" @(#)mount.8 8.8 (Berkeley) 6/16/94
.\" $FreeBSD: src/sbin/mount/mount.8,v 1.31.2.12 2003/02/23 21:17:42 trhodes Exp $
-.\" $DragonFly: src/sbin/mount/mount.8,v 1.8 2008/04/23 21:59:22 thomas Exp $
.\"
-.Dd June 10, 2009
+.Dd October 7, 2011
.Dt MOUNT 8
.Os
.Sh NAME
.Tn I/O
to the file system should be done synchronously.
.It Cm trim
-If the device supports trim (kern.cam.da.X.trim_enabled exists) and is set,
+If the device supports TRIM
+.Va ( kern.cam.da.X.trim_enabled
+exists) and is set,
the file system will perform online trim for corresponding block deletions.
-Currently UFS only supports this feature.
+Currently, only
+.Xr UFS 5
+supports this feature.
.It Cm suiddir
A directory on the mounted filesystem will respond to the SUID bit
being set, by setting the owner of any new files to be the same
.\"
.\" @(#)newfs.8 8.6 (Berkeley) 5/3/95
.\" $FreeBSD: src/sbin/newfs/newfs.8,v 1.26.2.15 2003/05/13 12:16:08 joerg Exp $
-.\" $DragonFly: src/sbin/newfs/newfs.8,v 1.7 2007/05/20 19:29:21 dillon Exp $
.\"
-.Dd November 24, 2010
+.Dd October 7, 2011
.Dt NEWFS 8
.Os
.Sh NAME
.Sh SYNOPSIS
.Nm
.Op Fl L Ar volname
-.Op Fl NCOURE
+.Op Fl NCEOU
.Op Fl S Ar sector-size
.Op Fl T Ar disktype
.Op Fl a Ar maxcontig
.It Fl T Ar disktype
For backward compatibility and for
.Nm mount_mfs .
+.It Fl E
+Use TRIM to erase the device's data before creating the file system.
+The underlying device must have the TRIM sysctl enabled.
+Only devices that support TRIM will have such a sysctl option
+.Va ( kern.cam.da.X.trim_enabled ) .
.It Fl F Ar file
.Nm Mount_mfs
will use this file for the image of the filesystem. When
storage device.
.It Fl U
Enables soft updates on the new filesystem.
-.It Fl E
-Use TRIM to erase the device's data before creating the file system. The
-underlying device must have the Trim sysctl enabled. Only devices that support
-TRIM will have such a sysctl option (kern.cam.da.X.trim_enabled).
.It Fl a Ar maxcontig
Specify the maximum number of contiguous blocks that will be
laid out before forcing a rotational delay (see the
* @(#) Copyright (c) 1983, 1989, 1993, 1994 The Regents of the University of California. All rights reserved.
* @(#)newfs.c 8.13 (Berkeley) 5/1/95
* $FreeBSD: src/sbin/newfs/newfs.c,v 1.30.2.9 2003/05/13 12:03:55 joerg Exp $
- * $DragonFly: src/sbin/newfs/newfs.c,v 1.17 2007/06/19 19:18:20 dillon Exp $
*/
/*
opstring = mfs ?
"L:NCF:T:Ua:b:c:d:e:f:g:h:i:m:o:s:v" :
- "L:NREOS:T:Ua:b:c:d:e:f:g:h:i:k:l:m:n:o:p:r:s:t:u:vx:";
+ "L:NEOS:T:Ua:b:c:d:e:f:g:h:i:k:l:m:n:o:p:r:s:t:u:vx:";
while ((ch = getopt(argc, argv, opstring)) != -1) {
switch (ch) {
case 'E':
fprintf(stderr,
"\t-N do not create file system, just print out parameters\n");
fprintf(stderr, "\t-O create a 4.3BSD format filesystem\n");
- fprintf(stderr, "\t-R enable TRIM\n");
fprintf(stderr, "\t-S sector size\n");
#ifdef COMPAT
fprintf(stderr, "\t-T disktype\n");
.\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $DragonFly: src/sbin/newfs_hammer/newfs_hammer.8,v 1.10 2008/07/27 16:47:19 thomas Exp $
-.Dd April 10, 2011
+.Dd October 7, 2011
.Dt NEWFS_HAMMER 8
.Os
.Sh NAME
.Sh SYNOPSIS
.Nm
.Fl L Ar label
-.Op Fl fE
+.Op Fl Ef
.Op Fl b Ar bootsize
.Op Fl m Ar savesize
.Op Fl u Ar undosize
with less than 500MB UNDO/REDO FIFO.
This should not be used under normal circumstances.
.It Fl E
-Use TRIM to erase the device's data before creating the file system. The
-underlying device must have the Trim sysctl enabled. Only devices that support
-TRIM will have such a sysctl option (kern.cam.da.X.trim_enabled).
+Use TRIM to erase the device's data before creating the file system.
+The underlying device must have the TRIM sysctl enabled.
+Only devices that support TRIM will have such a sysctl option
+.Va ( kern.cam.da.X.trim_enabled ) .
.It Fl m Ar savesize
Specify a fixed area which
.Nm HAMMER
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $DragonFly: src/sbin/newfs_hammer/newfs_hammer.c,v 1.44 2008/08/21 23:32:27 thomas Exp $
*/
#include "newfs_hammer.h"
usage(void)
{
fprintf(stderr,
- "usage: newfs_hammer -L label [-fE] [-b bootsize] [-m savesize] [-u undosize]\n"
+ "usage: newfs_hammer -L label [-Ef] [-b bootsize] [-m savesize] [-u undosize]\n"
" [-V version] special ...\n"
);
exit(1);