Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / mvmeppc / stand / boot / conf.c
blob6e8ecd7bcb896954b38fdc6209a9ec8243de2f2a
1 /* $NetBSD: conf.c,v 1.1.20.1 2005/11/10 13:57:54 skrll Exp $ */
3 #include <sys/types.h>
4 #include <netinet/in.h>
5 #include <netinet/in_systm.h>
7 #include <stand.h>
8 #include <nfs.h>
9 #include <dev_net.h>
11 struct fs_ops file_system[] = {
12 FS_OPS(nfs),
14 int nfsys = sizeof(file_system) / sizeof(file_system[0]);
16 struct devsw devsw[] = {
17 { "net", net_strategy, net_open, net_close, net_ioctl },
19 int ndevs = sizeof(devsw) / sizeof(devsw[0]);
21 extern struct netif_driver bug_driver;
23 struct netif_driver *netif_drivers[] = {
24 &bug_driver
26 int n_netif_drivers = sizeof(netif_drivers) / sizeof(netif_drivers[0]);
28 int try_bootp = 1;