diff options
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/stand/bootsd/conf.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/arch/mvme68k/stand/bootsd/conf.c b/sys/arch/mvme68k/stand/bootsd/conf.c new file mode 100644 index 00000000000..29ec7cbf091 --- /dev/null +++ b/sys/arch/mvme68k/stand/bootsd/conf.c @@ -0,0 +1,20 @@ +/* $NetBSD: conf.c,v 1.1.1.1 1995/06/01 20:38:08 gwr Exp $ */ + +#include <sys/types.h> +#include <machine/prom.h> + +#include <stand.h> +#include <ufs.h> +#include "libsa.h" + +struct fs_ops file_system[] = { + { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat }, +}; +int nfsys = sizeof(file_system)/sizeof(struct fs_ops); + +struct devsw devsw[] = { + { "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl }, +}; +int ndevs = (sizeof(devsw)/sizeof(devsw[0])); + + |