xref: /netbsd-src/sys/arch/sun68k/stand/netboot/conf.c (revision ebddcf615ce8dcf33c759a982caf0c4b3eb4c49d)
1 /*	$NetBSD: conf.c,v 1.6 2015/07/29 14:32:54 tsutsui 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
main(void)22 main(void)
23 {
24 
25 	xxboot_main("netboot");
26 
27 	return 0;
28 }
29