From c906f80ab667c97c27b9fdc80e49d2f424455d03 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Thu, 14 Jul 1994 19:06:35 +0000 Subject: Formerly main.c.~13~ --- ufs/main.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ufs/main.c b/ufs/main.c index e47586e7..de90cea8 100644 --- a/ufs/main.c +++ b/ufs/main.c @@ -33,6 +33,8 @@ char * trans_parse_args (int argc, char **arg) { #ifdef notyet + /* Option to set compat_mode should be provided here. */ + /* When started as a translator, we are called with the device name and an optional argument -r, which signifies read-only. */ @@ -128,6 +130,7 @@ main (int argc, char **argv) { devname = diskfs_parse_bootargs (argc, argv); diskfs_dotdot_file = MACH_PORT_NULL; + compat_mode = COMPAT_GNU; } diskfs_init_diskfs (); @@ -161,6 +164,13 @@ main (int argc, char **argv) exit (1); } + /* If the filesystem has new features in it, don't pay attention to + the user's request not to use them. */ + if ((sblock->fs_inodefmt == FS_44INODEFMT + || direct_symlink_extension) + && compat_mode == COMPAT_BSD42) + compat_mode = COMPAT_BSD44; + if (!diskfs_readonly) { sblock->fs_clean = 0; -- cgit v1.2.3