summaryrefslogtreecommitdiff
path: root/sys/arch/sgi/stand/boot/filesystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sgi/stand/boot/filesystem.c')
-rw-r--r--sys/arch/sgi/stand/boot/filesystem.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sgi/stand/boot/filesystem.c b/sys/arch/sgi/stand/boot/filesystem.c
index e4f0fce6f00..c8c6efcffad 100644
--- a/sys/arch/sgi/stand/boot/filesystem.c
+++ b/sys/arch/sgi/stand/boot/filesystem.c
@@ -35,9 +35,11 @@
#include <stand.h>
#include <ufs.h>
+#include "netfs.h"
struct fs_ops file_system[] = {
- { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_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 },
};
int nfsys = sizeof(file_system)/sizeof(struct fs_ops);