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