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
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
arch
/
sun68k
/
stand
/
ufsboot
/
conf.c
blob
d09f4dfc95cd667e7459082f15ae7a6eaa7ec7c0
1
/* $NetBSD: conf.c,v 1.4 2005/12/11 12:19:29 christos Exp $ */
2
3
#include <stand.h>
4
#include <ufs.h>
5
#include <dev_disk.h>
6
7
#include
"libsa.h"
8
9
struct
fs_ops file_system
[] = {
10
FS_OPS
(
ufs
),
11
};
12
int
nfsys
=
1
;
13
14
struct
devsw devsw
[] = {
15
{
"disk"
,
disk_strategy
,
disk_open
,
disk_close
,
disk_ioctl
},
16
};
17
int
ndevs
=
1
;
18
19
int
20
main
(
void
)
21
{
22
23
xxboot_main
(
"ufsboot"
);
24
25
return
0
;
26
}