Home | History | Annotate | Line # | Download | only in bootst
conf.c revision 1.3
      1 /*	$NetBSD: conf.c,v 1.3 2005/06/28 21:03:02 junyoung Exp $	*/
      2 
      3 #include <lib/libsa/stand.h>
      4 #include <rawfs.h>
      5 #include <dev_tape.h>
      6 
      7 struct fs_ops file_system[] = {
      8 	FS_OPS(rawfs),
      9 };
     10 int nfsys = 1;
     11 
     12 struct devsw devsw[] = {
     13 	{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
     14 };
     15 int ndevs = 1;
     16 
     17 int debug;
     18