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

26 lines
575 B
C
Raw Normal View History

1996-10-03 01:18:45 +04:00
/* $NetBSD: conf.c,v 1.2 1996/10/02 21:18:45 cgd Exp $ */
#include <sys/types.h>
#include <netinet/in.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;
extern struct netif_driver prom_netif_driver;
1996-10-03 01:18:45 +04:00
struct netif_driver *netif_drivers[] = {
1996-10-03 01:18:45 +04:00
&prom_netif_driver,
};
int n_netif_drivers = (sizeof(netif_drivers) / sizeof(netif_drivers[0]));