summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/stand/netboot/conf.c
blob: b5d023e05bf512bd18d7b1d6486a1a476ea71421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*	$OpenBSD: conf.c,v 1.3 2001/07/04 08:33:53 niklas Exp $	*/
/*	$NetBSD: conf.c,v 1.3 1996/01/29 23:54:14 gwr 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;