xref: /netbsd/sys/arch/mvme68k/stand/bootsd/conf.c (revision bf9ec67e)
1 /*	$NetBSD: conf.c,v 1.1 1996/05/17 20:04:48 chuck Exp $	*/
2 
3 #include <sys/types.h>
4 #include <machine/prom.h>
5 
6 #include <stand.h>
7 #include <ufs.h>
8 #include "libsa.h"
9 
10 struct fs_ops file_system[] = {
11 	{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
12 };
13 int nfsys = sizeof(file_system)/sizeof(struct fs_ops);
14 
15 struct devsw devsw[] = {
16         { "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl },
17 };
18 int     ndevs = (sizeof(devsw)/sizeof(devsw[0]));
19 
20 
21