diff options
author | chuck <chuck@cvs.openbsd.org> | 1996-05-16 03:03:32 +0000 |
---|---|---|
committer | chuck <chuck@cvs.openbsd.org> | 1996-05-16 03:03:32 +0000 |
commit | cf3fdeb83b3dc4d2a89ee0ac772ea3eb608e3c33 (patch) | |
tree | 1cea1f60fb727c7d90b84c3c86bde40581e8e2e3 /sys/arch/mvme68k | |
parent | 112693f1ddcc74f4c11d6283a1631331f8a2f0d8 (diff) |
conf.c (import from sun3 version)
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/stand/bootsd/conf.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/arch/mvme68k/stand/bootsd/conf.c b/sys/arch/mvme68k/stand/bootsd/conf.c new file mode 100644 index 00000000000..29ec7cbf091 --- /dev/null +++ b/sys/arch/mvme68k/stand/bootsd/conf.c @@ -0,0 +1,20 @@ +/* $NetBSD: conf.c,v 1.1.1.1 1995/06/01 20:38:08 gwr Exp $ */ + +#include <sys/types.h> +#include <machine/prom.h> + +#include <stand.h> +#include <ufs.h> +#include "libsa.h" + +struct fs_ops file_system[] = { + { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat }, +}; +int nfsys = sizeof(file_system)/sizeof(struct fs_ops); + +struct devsw devsw[] = { + { "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl }, +}; +int ndevs = (sizeof(devsw)/sizeof(devsw[0])); + + |