Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / sun68k / stand / netboot / conf.c
blob53227068d85dc17499bb1aa6877b6a5f6c845078
1 /* $NetBSD: conf.c,v 1.3 2005/12/11 12:19:29 christos Exp $ */
3 #include <sys/types.h>
4 #include <netinet/in.h>
6 #include "stand.h"
7 #include "nfs.h"
8 #include "dev_net.h"
9 #include "libsa.h"
11 struct fs_ops file_system[] = {
12 FS_OPS(nfs),
14 int nfsys = 1;
16 struct devsw devsw[] = {
17 { "net", net_strategy, net_open, net_close, net_ioctl },
19 int ndevs = 1;
21 int
22 main(void)
25 xxboot_main("netboot");
27 return 0;