xref: /netbsd-src/sys/arch/sun68k/stand/netboot/conf.c (revision 8b0f9554ff8762542c4defc4f70e1eb76fb508fa)
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 
10 struct fs_ops file_system[] = {
11 	FS_OPS(nfs),
12 };
13 int nfsys = 1;
14 
15 struct devsw devsw[] = {
16 	{ "net",  net_strategy,  net_open,  net_close,  net_ioctl },
17 };
18 int ndevs = 1;
19 
20 int
21 main() {
22 	xxboot_main("netboot");
23 }
24