xref: /netbsd-src/sys/arch/mvme68k/stand/bootsd/conf.c (revision a07f7c80690d0af05ca7630aebc638f51f3185e1)
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