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
/
netboot
/
conf.c
blob
53227068d85dc17499bb1aa6877b6a5f6c845078
1
/* $NetBSD: conf.c,v 1.3 2005/12/11 12:19:29 christos Exp $ */
2
3
#include <sys/types.h>
4
#include <netinet/in.h>
5
6
#include
"stand.h"
7
#include
"nfs.h"
8
#include
"dev_net.h"
9
#include
"libsa.h"
10
11
struct
fs_ops file_system
[] = {
12
FS_OPS
(
nfs
),
13
};
14
int
nfsys
=
1
;
15
16
struct
devsw devsw
[] = {
17
{
"net"
,
net_strategy
,
net_open
,
net_close
,
net_ioctl
},
18
};
19
int
ndevs
=
1
;
20
21
int
22
main
(
void
)
23
{
24
25
xxboot_main
(
"netboot"
);
26
27
return
0
;
28
}