Home | History | Annotate | Download | only in netadm
      1     0    stevel #!/sbin/sh
      2     0    stevel #
      3     0    stevel # CDDL HEADER START
      4     0    stevel #
      5     0    stevel # The contents of this file are subject to the terms of the
      6  1772  jl139090 # Common Development and Distribution License (the "License").
      7  1772  jl139090 # You may not use this file except in compliance with the License.
      8     0    stevel #
      9     0    stevel # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
     10     0    stevel # or http://www.opensolaris.org/os/licensing.
     11     0    stevel # See the License for the specific language governing permissions
     12     0    stevel # and limitations under the License.
     13     0    stevel #
     14     0    stevel # When distributing Covered Code, include this CDDL HEADER in each
     15     0    stevel # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     16     0    stevel # If applicable, add the following below this CDDL HEADER, with the
     17     0    stevel # fields enclosed by brackets "[]" replaced with your own identifying
     18     0    stevel # information: Portions Copyright [yyyy] [name of copyright owner]
     19     0    stevel #
     20     0    stevel # CDDL HEADER END
     21     0    stevel #
     22     0    stevel #
     23  9354       Tim # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
     24     0    stevel # Use is subject to license terms.
     25     0    stevel #
     26     0    stevel #	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
     27     0    stevel #	  All Rights Reserved
     28     0    stevel 
     29     0    stevel 
     30     0    stevel case "$MACH" in
     31     0    stevel   "i386" )
     32     0    stevel 	echo "# /dev/console and /dev/contty autopush setup
     33     0    stevel #
     34     0    stevel #       major minor   lastminor       modules
     35     0    stevel 
     36  7688     Aaron 	wc	-1	0	ldterm ttcompat
     37     0    stevel 	asy	-1	0	ldterm ttcompat
     38  5084   johnlev 	xencons	0	0	ldterm ttcompat
     39     0    stevel 	ptsl	0	47	ldterm ttcompat
     40  3227  yq193411 	usbsacm -1	0	ldterm ttcompat
     41  3435  lg150142 	usbser_edge	-1	0	ldterm ttcompat
     42  3435  lg150142 	usbsprl	-1	0	ldterm ttcompat
     43  3435  lg150142 	usbsksp	-1	0	ldterm ttcompat
     44  9354       Tim 	usbftdi	-1	0	ldterm ttcompat
     45     0    stevel 	ipsecesp -1	0	ipsecesp
     46     0    stevel 	ipsecah	-1	0	ipsecah
     47     0    stevel " > iu.ap
     48     0    stevel 	;;
     49     0    stevel   "sparc" )
     50     0    stevel 	echo "# /dev/console and /dev/contty autopush setup
     51     0    stevel #
     52     0    stevel #      major   minor lastminor	modules
     53     0    stevel 
     54  7688     Aaron 	wc	-1	0	ldterm ttcompat
     55     0    stevel 	qcn	0	255	ldterm ttcompat
     56     0    stevel 	sgcn	0	0	ldterm ttcompat
     57     0    stevel 	zs	0	63	ldterm ttcompat
     58     0    stevel 	zs	131072	131135	ldterm ttcompat
     59     0    stevel 	ptsl	0	47	ldterm ttcompat
     60     0    stevel 	cvc	0	0	ldterm ttcompat
     61     0    stevel 	mcpzsa	0	127	ldterm ttcompat
     62     0    stevel 	mcpzsa	256	383	ldterm ttcompat
     63     0    stevel 	se	0	255	ldterm ttcompat
     64     0    stevel 	se	131072	131327	ldterm ttcompat
     65     0    stevel 	se	16384	0	ldterm ttcompat
     66     0    stevel 	se	16392	0	ldterm ttcompat
     67     0    stevel 	su	0	255	ldterm ttcompat
     68     0    stevel 	su	16385	0	ldterm ttcompat
     69     0    stevel 	su	131072	131073	ldterm ttcompat
     70     0    stevel 	usbser_edge -1	0	ldterm ttcompat
     71  3227  yq193411 	usbsacm -1	0	ldterm ttcompat
     72  3435  lg150142 	usbsprl -1	0	ldterm ttcompat
     73  3435  lg150142 	usbsksp -1	0	ldterm ttcompat
     74  9354       Tim 	usbftdi	-1	0	ldterm ttcompat
     75     0    stevel 	ttymux	-1	0	ldterm ttcompat
     76     0    stevel 	ipsecesp -1	0	ipsecesp
     77     0    stevel 	ipsecah	-1	0	ipsecah
     78  1772  jl139090 	oplmsu	0	0	ldterm ttcompat
     79     0    stevel " >iu.ap
     80     0    stevel 	;;
     81     0    stevel   * )
     82     0    stevel 	echo "Unknown architecture."
     83     0    stevel 	exit 1
     84     0    stevel 	;;
     85     0    stevel esac
     86