-.\" $NetBSD: mount_msdos.8,v 1.9 1995/11/29 15:11:37 ws Exp $
+.\" $NetBSD: mount_msdos.8,v 1.10 1996/01/19 21:14:43 leo Exp $
.\"
.\" Copyright (c) 1993,1994 Christopher G. Demetriou
.\" All rights reserved.
.Op Fl s
.Op Fl l
.Op Fl 9
+.Op Fl G
.Pa special
.Pa node
.Sh DESCRIPTION
Ignore the special Win'95 directory entries even
if deleting or renaming a file. This forces
.Fl s .
+.It Fl G
+This option causes the filesystem to be interpreted as an Atari-Gemdos
+filesystem. The differences to the msdos filesystem are minimal and
+limited to the boot block. This option enforces
+.Fl s .
.El
.Sh SEE ALSO
.Xr mount 2 ,
-/* $NetBSD: mount_msdos.c,v 1.11 1995/10/15 15:35:48 ws Exp $ */
+/* $NetBSD: mount_msdos.c,v 1.12 1996/01/19 21:14:46 leo Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
*/
#ifndef lint
-static char rcsid[] = "$NetBSD: mount_msdos.c,v 1.11 1995/10/15 15:35:48 ws Exp $";
+static char rcsid[] = "$NetBSD: mount_msdos.c,v 1.12 1996/01/19 21:14:46 leo Exp $";
#endif /* not lint */
#include <sys/cdefs.h>
mntflags = set_gid = set_uid = set_mask = 0;
(void)memset(&args, '\0', sizeof(args));
- while ((c = getopt(argc, argv, "sl9u:g:m:o:")) != EOF) {
+ while ((c = getopt(argc, argv, "Gsl9u:g:m:o:")) != EOF) {
switch (c) {
+ case 'G':
+ args.flags |= MSDOSFSMNT_GEMDOSFS;
+ break;
case 's':
args.flags |= MSDOSFSMNT_SHORTNAME;
break;