diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 07:19:14 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 07:19:14 +0000 |
commit | e59bf0451c93dcdd57283e8674c3b8ebcf78bc9d (patch) | |
tree | 55053fdb0c696c3e460df5bec9607ada803e34a2 /sys | |
parent | 9400bc2a5c028721de8ad938a526d59b00df6dd7 (diff) |
Adding conf.c. Omitted last commit.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/stand/bootsd/conf.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/arch/mvme88k/stand/bootsd/conf.c b/sys/arch/mvme88k/stand/bootsd/conf.c new file mode 100644 index 00000000000..29ec7cbf091 --- /dev/null +++ b/sys/arch/mvme88k/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])); + + |