Home | History | Annotate | Line # | Download | only in netboot
      1 /*	$NetBSD: conf.c,v 1.6 2015/07/29 14:32:54 tsutsui Exp $	*/
      2 
      3 #include <sys/types.h>
      4 #include <netinet/in.h>
      5 
      6 #include "stand.h"
      7 #include "nfs.h"
      8 #include "dev_net.h"
      9 #include "libsa.h"
     10 
     11 struct fs_ops file_system[] = {
     12 	FS_OPS(nfs),
     13 };
     14 int nfsys = 1;
     15 
     16 struct devsw devsw[] = {
     17 	{ "net",  net_strategy,  net_open,  net_close,  net_ioctl },
     18 };
     19 int ndevs = 1;
     20 
     21 int
     22 main(void)
     23 {
     24 
     25 	xxboot_main("netboot");
     26 
     27 	return 0;
     28 }
     29