NetBSD/sys/arch/sun3/stand/netboot/conf.c

22 lines
417 B
C

/* $NetBSD: conf.c,v 1.1.1.1 1995/06/09 22:02:40 gwr Exp $ */
#include <sys/types.h>
#include <stand.h>
#include <nfs.h>
#include <dev_net.h>
struct fs_ops file_system[] = {
{ nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
};
int nfsys = 1;
struct devsw devsw[] = {
{ "net", net_strategy, net_open, net_close, net_ioctl },
};
int ndevs = 1;
/* XXX */
int netif_debug;
int debug;
int errno;