Home | History | Annotate | Line # | Download | only in netboot
conf.c revision 1.2
      1  1.2  chuck /*	$NetBSD: conf.c,v 1.2 1995/10/12 20:39:53 chuck Exp $	*/
      2  1.1  chuck 
      3  1.1  chuck #include <sys/types.h>
      4  1.2  chuck #include <netinet/in.h>
      5  1.2  chuck 
      6  1.2  chuck #include "stand.h"
      7  1.2  chuck #include "nfs.h"
      8  1.2  chuck #include "dev_net.h"
      9  1.1  chuck 
     10  1.1  chuck struct fs_ops file_system[] = {
     11  1.1  chuck 	{ nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
     12  1.1  chuck };
     13  1.1  chuck int nfsys = 1;
     14  1.1  chuck 
     15  1.1  chuck struct devsw devsw[] = {
     16  1.1  chuck 	{ "net",  net_strategy,  net_open,  net_close,  net_ioctl },
     17  1.1  chuck };
     18  1.1  chuck int	ndevs = 1;
     19  1.1  chuck 
     20  1.1  chuck /* XXX */
     21  1.1  chuck int netif_debug;
     22  1.1  chuck int debug;
     23  1.1  chuck int errno;
     24