Home | History | Annotate | Line # | Download | only in bootsd
      1 /*	$NetBSD: conf.c,v 1.5 2008/01/12 09:54:30 tsutsui Exp $	*/
      2 
      3 #include <sys/types.h>
      4 #include <machine/prom.h>
      5 
      6 #include <lib/libsa/stand.h>
      7 #include <ufs.h>
      8 #include "libsa.h"
      9 
     10 struct fs_ops file_system[] = {
     11 	FS_OPS(ufs),
     12 };
     13 int nfsys = __arraycount(file_system);
     14 
     15 struct devsw devsw[] = {
     16         { "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl },
     17 };
     18 int     ndevs = __arraycount(devsw);
     19