xref: /netbsd-src/sys/arch/mvme68k/stand/bootst/conf.c (revision d710132b4b8ce7f7cccaaf660cb16aa16b4077a0)
1 /*	$NetBSD: conf.c,v 1.1 1996/05/28 15:23:54 chuck Exp $	*/
2 
3 #include <stand.h>
4 #include <rawfs.h>
5 #include <dev_tape.h>
6 
7 struct fs_ops file_system[] = {
8 	{
9 		rawfs_open, rawfs_close, rawfs_read,
10 		rawfs_write, rawfs_seek, rawfs_stat,
11 	},
12 };
13 int nfsys = 1;
14 
15 struct devsw devsw[] = {
16 	{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
17 };
18 int	ndevs = 1;
19 
20 int debug;
21