repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
sys
/
arch
/
sun68k
/
stand
/
tapeboot
/
conf.c
blob
5f7c6876099dccec24b7a192b1158b39007fa081
1
/* $NetBSD: conf.c,v 1.2.10.1 2005/11/10 13:59:59 skrll Exp $ */
2
3
#include <stand.h>
4
#include <rawfs.h>
5
#include <dev_tape.h>
6
7
struct
fs_ops file_system
[] = {
8
FS_OPS
(
rawfs
),
9
};
10
int
nfsys
=
1
;
11
12
struct
devsw devsw
[] = {
13
{
"tape"
,
tape_strategy
,
tape_open
,
tape_close
,
tape_ioctl
},
14
};
15
int
ndevs
=
1
;
16
17
#ifdef DEBUG
18
int
debug
;
19
#endif
/* DEBUG */