xref: /netbsd-src/sys/arch/sun68k/stand/tapeboot/conf.c (revision 9fbd88883c38d0c0fbfcbe66d76fe6b0fab3f9de)
1 /*	$NetBSD: conf.c,v 1.1 2001/06/14 12:57:16 fredette 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