Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / alpha / stand / netboot / conf.c
blob24551e1328f325238ec1c0e5dd4b106768944a15
1 /* $NetBSD: conf.c,v 1.3 1997/01/16 01:21:36 cgd Exp $ */
3 #include <sys/types.h>
4 #include <netinet/in.h>
6 #include <lib/libsa/stand.h>
7 #include <lib/libsa/nfs.h>
8 #include "dev_net.h"
10 struct fs_ops file_system[] = {
11 { nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
13 int nfsys = 1;
15 struct devsw devsw[] = {
16 { "net", net_strategy, net_open, net_close, net_ioctl },
18 int ndevs = 1;
20 extern struct netif_driver prom_netif_driver;
22 struct netif_driver *netif_drivers[] = {
23 &prom_netif_driver,
25 int n_netif_drivers = (sizeof(netif_drivers) / sizeof(netif_drivers[0]));