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

Annotation of sys/arch/sparc/stand/common/conf.c, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: conf.c,v 1.1 1997/09/17 10:46:17 downsj Exp $ */
        !             2: /*     $NetBSD: conf.c,v 1.2 1995/09/18 21:31:45 pk Exp $ */
        !             3:
        !             4: /*
        !             5:  * Copyright (c) 1993 Philip A. Nelson.
        !             6:  * All rights reserved.
        !             7:  *
        !             8:  * Redistribution and use in source and binary forms, with or without
        !             9:  * modification, are permitted provided that the following conditions
        !            10:  * are met:
        !            11:  * 1. Redistributions of source code must retain the above copyright
        !            12:  *    notice, this list of conditions and the following disclaimer.
        !            13:  * 2. Redistributions in binary form must reproduce the above copyright
        !            14:  *    notice, this list of conditions and the following disclaimer in the
        !            15:  *    documentation and/or other materials provided with the distribution.
        !            16:  * 3. All advertising materials mentioning features or use of this software
        !            17:  *    must display the following acknowledgement:
        !            18:  *     This product includes software developed by Philip A. Nelson.
        !            19:  * 4. The name of Philip A. Nelson may not be used to endorse or promote
        !            20:  *    products derived from this software without specific prior written
        !            21:  *    permission.
        !            22:  *
        !            23:  * THIS SOFTWARE IS PROVIDED BY PHILIP NELSON ``AS IS'' AND ANY EXPRESS OR
        !            24:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
        !            25:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
        !            26:  * IN NO EVENT SHALL PHILIP NELSON BE LIABLE FOR ANY DIRECT, INDIRECT,
        !            27:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
        !            28:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
        !            29:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
        !            30:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        !            31:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
        !            32:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        !            33:  */
        !            34:
        !            35: #include <lib/libsa/stand.h>
        !            36: #include <lib/libsa/ufs.h>
        !            37: #include <netinet/in.h>
        !            38: #include <lib/libsa/cd9660.h>
        !            39: #include <lib/libsa/nfs.h>
        !            40:
        !            41: struct fs_ops file_system_ufs[] = {
        !            42:        { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
        !            43: };
        !            44: struct fs_ops file_system_cd9660[] = {
        !            45:        { cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek,
        !            46:          cd9660_stat },
        !            47: };
        !            48: struct fs_ops file_system_nfs[] = {
        !            49:        { nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
        !            50: };
        !            51: struct fs_ops file_system[2];
        !            52: int nfsys = 1;
        !            53:

CVSweb