[BACK]Return to conf.c CVS log [TXT][DIR] Up to [local] / sys / arch / mvme68k / stand / bootst

File: [local] / sys / arch / mvme68k / stand / bootst / conf.c (download)

Revision 1.1, Tue Mar 4 16:07:38 2008 UTC (16 years, 3 months ago) by nbrk
Branch point for: MAIN

Initial revision

/*	$OpenBSD: conf.c,v 1.2 2001/07/04 08:06:53 niklas Exp $	*/
/*	$NetBSD: conf.c,v 1.2 1995/10/17 22:58:17 gwr Exp $	*/

#include <stand.h>
#include <rawfs.h>
#include <dev_tape.h>

struct fs_ops file_system[] = {
	{
		rawfs_open, rawfs_close, rawfs_read,
		rawfs_write, rawfs_seek, rawfs_stat,
	},
};
int nfsys = 1;

struct devsw devsw[] = {
	{ "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
};
int	ndevs = 1;

int debug;