Home | History | Annotate | Line # | Download | only in tapeboot
conf.c revision 1.1.8.2
      1  1.1.8.2  nathanw /*	$NetBSD: conf.c,v 1.1.8.2 2002/06/20 03:42:03 nathanw Exp $	*/
      2  1.1.8.2  nathanw 
      3  1.1.8.2  nathanw #include <stand.h>
      4  1.1.8.2  nathanw #include <rawfs.h>
      5  1.1.8.2  nathanw #include <dev_tape.h>
      6  1.1.8.2  nathanw 
      7  1.1.8.2  nathanw struct fs_ops file_system[] = {
      8  1.1.8.2  nathanw 	{
      9  1.1.8.2  nathanw 		rawfs_open, rawfs_close, rawfs_read,
     10  1.1.8.2  nathanw 		rawfs_write, rawfs_seek, rawfs_stat,
     11  1.1.8.2  nathanw 	},
     12  1.1.8.2  nathanw };
     13  1.1.8.2  nathanw int nfsys = 1;
     14  1.1.8.2  nathanw 
     15  1.1.8.2  nathanw struct devsw devsw[] = {
     16  1.1.8.2  nathanw 	{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
     17  1.1.8.2  nathanw };
     18  1.1.8.2  nathanw int	ndevs = 1;
     19  1.1.8.2  nathanw 
     20  1.1.8.2  nathanw #ifdef DEBUG
     21  1.1.8.2  nathanw int debug;
     22  1.1.8.2  nathanw #endif /* DEBUG */
     23