summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-06-15 18:52:43 +0000
committerMiles Bader <miles@gnu.org>1996-06-15 18:52:43 +0000
commit651457f5370ebe7be4fa1150c79e5893e25615f7 (patch)
tree70b22b2277d82203cb07e4ea63f54dacfd2b0892
parent3304735f4bde4877f475767aed007bceabdc0d93 (diff)
(options): New variable.
(parse_opt): New function. (main): Parse ufs-specific options too. <string.h>: New include.
-rw-r--r--ufs/main.c38
1 files changed, 37 insertions, 1 deletions
diff --git a/ufs/main.c b/ufs/main.c
index 5ba1b318..58c6f427 100644
--- a/ufs/main.c
+++ b/ufs/main.c
@@ -24,6 +24,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
+#include <string.h>
char *ufs_version = "0.0";
@@ -55,14 +56,49 @@ int printf (const char *fmt, ...)
int diskfs_readonly;
+/* Ufs-specific options. XXX this should be moved so it can be done at
+ runtime as well as startup. */
+static struct argp_option
+options[] =
+{
+ {"compat", 'C', "FMT", 0,
+ "FMT may be GNU, 4.4, or 4.2, and determines which filesystem extensions"
+ " are written onto the disk (default is GNU)"},
+ {0}
+};
+
+/* Parse a command line option. */
+static error_t
+parse_opt (int key, char *arg, struct argp_state *state)
+{
+ switch (key)
+ {
+ case 'C':
+ if (strcasecmp (arg, "gnu") == 0)
+ compat_mode = COMPAT_GNU;
+ else if (strcmp (arg, "4.4") == 0)
+ compat_mode = COMPAT_BSD44;
+ else if (strcmp (arg, "4.2") == 0)
+ compat_mode = COMPAT_BSD42;
+ else
+ argp_error (state, "%s: Unknown compatibility mode", arg);
+ break;
+ default:
+ return ARGP_ERR_UNKNOWN;
+ }
+ return 0;
+}
+
int
main (int argc, char **argv)
{
error_t err;
off_t disk_size;
mach_port_t bootstrap;
+ const struct argp *argp_parents[] = { diskfs_device_startup_argp, 0 };
+ struct argp argp = {options, parse_opt, 0, 0, argp_parents};
- argp_parse (diskfs_device_startup_argp, argc, argv, 0, 0, 0);
+ argp_parse (&argp, argc, argv, 0, 0, 0);
/* This must come after the args have been parsed, as this is where the
host priv ports are set for booting. */