diff options
author | Roland McGrath <roland@gnu.org> | 1994-09-29 22:17:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-09-29 22:17:57 +0000 |
commit | 0ee74b5b66d79eba411f8fc57545a1140b0bd799 (patch) | |
tree | 4b6d265085b146e5896119d5643d3c8db5bc2220 /ufs | |
parent | c427330289e857525ac44e0f428343868bba405e (diff) |
Formerly main.c.~23~
Diffstat (limited to 'ufs')
-rw-r--r-- | ufs/main.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -23,6 +23,7 @@ #include <hurd/startup.h> #include <fcntl.h> #include <unistd.h> +#include <stdlib.h> char *ufs_version = "0.0 pre-alpha"; @@ -102,10 +103,10 @@ main (int argc, char **argv) mutex_init (&printf_lock); /* XXX */ - task_get_bootstrap_port (mach_task_self (), &bootstrap); - - if (bootstrap) + if (getpid () > 0) { + /* We are in a normal Hurd universe, started as a translator. */ + devname = trans_parse_args (argc, argv); { @@ -120,10 +121,13 @@ main (int argc, char **argv) } else { + /* We are the bootstrap filesystem. */ devname = diskfs_parse_bootargs (argc, argv); compat_mode = COMPAT_GNU; } + task_get_bootstrap_port (mach_task_self (), &bootstrap); + /* Initialize the diskfs library. This must come before any other diskfs call. */ diskfs_init_diskfs (); |