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

Annotation of sys/arch/mvme68k/stand/bootst/conf.c, Revision 1.1.1.1

1.1       nbrk        1: /*     $OpenBSD: conf.c,v 1.2 2001/07/04 08:06:53 niklas Exp $ */
                      2: /*     $NetBSD: conf.c,v 1.2 1995/10/17 22:58:17 gwr Exp $     */
                      3:
                      4: #include <stand.h>
                      5: #include <rawfs.h>
                      6: #include <dev_tape.h>
                      7:
                      8: struct fs_ops file_system[] = {
                      9:        {
                     10:                rawfs_open, rawfs_close, rawfs_read,
                     11:                rawfs_write, rawfs_seek, rawfs_stat,
                     12:        },
                     13: };
                     14: int nfsys = 1;
                     15:
                     16: struct devsw devsw[] = {
                     17:        { "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
                     18: };
                     19: int    ndevs = 1;
                     20:
                     21: int debug;

CVSweb