mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-12 07:31:12 -04:00
20 lines
342 B
C
20 lines
342 B
C
/* $NetBSD: conf.c,v 1.4 2005/12/11 12:19:29 christos Exp $ */
|
|
|
|
#include <stand.h>
|
|
#include <rawfs.h>
|
|
#include <dev_tape.h>
|
|
|
|
struct fs_ops file_system[] = {
|
|
FS_OPS(rawfs),
|
|
};
|
|
int nfsys = 1;
|
|
|
|
struct devsw devsw[] = {
|
|
{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
|
|
};
|
|
int ndevs = 1;
|
|
|
|
#ifdef DEBUG
|
|
int debug;
|
|
#endif /* DEBUG */
|