Track tfs -> ustarfs change.

This commit is contained in:
ross 1998-09-24 05:23:58 +00:00
parent f7ef9b367f
commit ec4de2679b
1 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: filesystem.c,v 1.4 1998/09/22 00:39:31 ross Exp $ */
/* $NetBSD: filesystem.c,v 1.5 1998/09/24 05:23:58 ross Exp $ */
/*
* Copyright (c) 1993 Philip A. Nelson.
@ -35,13 +35,16 @@
#include <lib/libsa/stand.h>
#include <lib/libsa/ufs.h>
#include <lib/libsa/tfs.h>
#include <lib/libsa/ustarfs.h>
#include <lib/libsa/cd9660.h>
struct fs_ops file_system[] = {
{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
{ cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek, cd9660_stat },
{ tfs_open, tfs_close, tfs_read, tfs_write, tfs_seek, tfs_stat },
{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek,
ufs_stat },
{ cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek,
cd9660_stat },
{ ustarfs_open, ustarfs_close, ustarfs_read, ustarfs_write, ustarfs_seek,
ustarfs_stat },
};
int nfsys = sizeof(file_system)/sizeof(struct fs_ops);