Home | History | Annotate | Line # | Download | only in tapeboot
conf.c revision 1.2
      1 /*	$NetBSD: conf.c,v 1.2 2002/05/15 04:07:44 lukem 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 #ifdef DEBUG
     21 int debug;
     22 #endif /* DEBUG */
     23