diff options
Diffstat (limited to 'isys/imount.c')
-rw-r--r-- | isys/imount.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/isys/imount.c b/isys/imount.c index 0d7e24d26..66b4e0948 100644 --- a/isys/imount.c +++ b/isys/imount.c @@ -84,6 +84,10 @@ int doPwMount(char * dev, char * where, char * fs, int rdonly, int istty, if (!strncmp(fs, "vfat", 4)) mount_opt="check=relaxed"; + #ifdef __sparc__ + if (!strncmp(fs, "ufs", 3)) + mount_opt="ufstype=sun"; + #endif /*logMessage("calling mount(%s, %s, %s, %ld, %p)", buf, where, fs, flag, mount_opt);*/ |