diff options
author | 1996-05-16 03:03:31 +0000 | |
---|---|---|
committer | 1996-05-16 03:03:31 +0000 | |
commit | 1bcc0dda492aca79521e1ac48b199d6785ac63ba (patch) | |
tree | 9611ac732a52bfc5f8fa1364b679203a12dfdb99 | |
parent | up version # (diff) | |
download | wireguard-openbsd-1bcc0dda492aca79521e1ac48b199d6785ac63ba.tar.xz wireguard-openbsd-1bcc0dda492aca79521e1ac48b199d6785ac63ba.zip |
conf.c (import from sun3 version)
-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])); + + |