summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/stand/bootxx/conf.c
blob: 78fad5777bd64ef3cfcd1573fe50b69c04622ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*	$OpenBSD: conf.c,v 1.2 2001/07/04 08:33:44 niklas Exp $	*/
/*	$NetBSD: conf.c,v 1.2 1995/10/13 21:45:00 gwr Exp $	*/

#include <stand.h>
#include <dev_disk.h>

struct devsw devsw[] = {
	{ "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
};
int	ndevs = 1;

int debug;