NetBSD/sys/arch/sbmips/stand/netboot/conf.c
2005-12-11 12:16:03 +00:00

26 lines
557 B
C

/* $NetBSD: conf.c,v 1.3 2005/12/11 12:18:51 christos Exp $ */
#include <sys/types.h>
#include <netinet/in.h>
#include <lib/libsa/stand.h>
#include <lib/libsa/nfs.h>
#include <lib/libsa/dev_net.h>
struct fs_ops file_system[] = {
FS_OPS(nfs),
};
int nfsys = 1;
struct devsw devsw[] = {
{ "net", net_strategy, net_open, net_close, net_ioctl },
};
int ndevs = 1;
extern struct netif_driver prom_netif_driver;
struct netif_driver *netif_drivers[] = {
&prom_netif_driver,
};
int n_netif_drivers = (sizeof(netif_drivers) / sizeof(netif_drivers[0]));