Annotation of researchv9/sys/boot/stand/conf.c, revision 1.1

1.1     ! root        1: #ifndef lint
        !             2: static char sccsid[] = "@(#)conf.c     1.1 86/02/03    Copyr 1985 Sun Micro";
        !             3: #endif
        !             4: 
        !             5: /*
        !             6:  * Copyright (c) 1985 by Sun Microsystems, Inc.
        !             7:  */
        !             8: 
        !             9: /*
        !            10:  * Configuration table for standalone I/O system.
        !            11:  *
        !            12:  * This table lists all the supported drivers.  It is searched by open()
        !            13:  * to parse the device specification.
        !            14:  */
        !            15: 
        !            16: #include "saio.h"
        !            17: 
        !            18: extern struct boottab xydriver;
        !            19: extern struct boottab sddriver;
        !            20: extern struct boottab stdriver;
        !            21: extern struct boottab mtdriver;
        !            22: extern struct boottab xtdriver;
        !            23: extern struct boottab iedriver;
        !            24: #ifdef SUN3
        !            25: extern struct boottab ledriver;
        !            26: #endif
        !            27: #ifdef SUN2
        !            28: extern struct boottab ipdriver;
        !            29: extern struct boottab ecdriver;
        !            30: extern struct boottab ardriver;
        !            31: #endif
        !            32: 
        !            33: /*
        !            34:  * The device table 
        !            35:  */
        !            36: struct boottab *(devsw[]) = {
        !            37:        &xydriver,
        !            38:        &sddriver,
        !            39:        &stdriver,
        !            40:        &mtdriver,
        !            41:        &xtdriver,
        !            42:        &iedriver,
        !            43: #ifdef SUN3
        !            44:        &ledriver,
        !            45: #endif
        !            46: #ifdef SUN2
        !            47:        &ipdriver,
        !            48:        &ecdriver,
        !            49:        &ardriver,
        !            50: #endif
        !            51:        (struct boottab *)0,
        !            52: };

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.