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