NetBSD/sys/arch/mvme68k/stand/bootst/conf.c

21 lines
376 B
C

/* $NetBSD: conf.c,v 1.1 1996/05/28 15:23:54 chuck Exp $ */
#include <stand.h>
#include <rawfs.h>
#include <dev_tape.h>
struct fs_ops file_system[] = {
{
rawfs_open, rawfs_close, rawfs_read,
rawfs_write, rawfs_seek, rawfs_stat,
},
};
int nfsys = 1;
struct devsw devsw[] = {
{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
};
int ndevs = 1;
int debug;