diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-27 18:00:59 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-27 18:00:59 +0000 |
commit | 9903524672dc375c5dad43e14f723dc8eb8c1d85 (patch) | |
tree | 0e470dbf060bf86d865a9cd3fa4dd0c8bb65346a /isys/imount.c | |
parent | 07ac270b046ee2918e6f94e7b1c8d99ce8fb287b (diff) | |
download | anaconda-9903524672dc375c5dad43e14f723dc8eb8c1d85.tar.gz anaconda-9903524672dc375c5dad43e14f723dc8eb8c1d85.tar.xz anaconda-9903524672dc375c5dad43e14f723dc8eb8c1d85.zip |
three jj patches
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);*/ |