summaryrefslogtreecommitdiff
path: root/sys/arch/sgi/stand
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sgi/stand')
-rw-r--r--sys/arch/sgi/stand/boot/filesystem.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/arch/sgi/stand/boot/filesystem.c b/sys/arch/sgi/stand/boot/filesystem.c
index ac3619c4f03..a9ae8b301a9 100644
--- a/sys/arch/sgi/stand/boot/filesystem.c
+++ b/sys/arch/sgi/stand/boot/filesystem.c
@@ -39,9 +39,12 @@
#include "netfs.h"
struct fs_ops file_system[] = {
- { netfs_open, netfs_close, netfs_read, netfs_write, netfs_seek, netfs_stat },
- { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
- { ufs2_open, ufs2_close, ufs2_read, ufs2_write, ufs2_seek, ufs2_stat },
+ { netfs_open, netfs_close, netfs_read, netfs_write, netfs_seek,
+ netfs_stat },
+ { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek,
+ ufs_stat, ufs_readdir, ufs_fchmod },
+ { ufs2_open, ufs2_close, ufs2_read, ufs2_write, ufs2_seek,
+ ufs2_stat, ufs2_readdir, ufs2_fchmod },
};
int nfsys = sizeof(file_system)/sizeof(struct fs_ops);