1113291Sphk/*	$NetBSD: conf.c,v 1.2.10.1 2005/11/10 13:59:59 skrll Exp $	*/
2113291Sphk
3113291Sphk#include <stand.h>
4113291Sphk#include <rawfs.h>
5113291Sphk#include <dev_tape.h>
6
7struct fs_ops file_system[] = {
8	FS_OPS(rawfs),
9};
10int nfsys = 1;
11
12struct devsw devsw[] = {
13	{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
14};
15int ndevs = 1;
16
17#ifdef DEBUG
18int debug;
19#endif /* DEBUG */
20