GENERIC revision 1.86
11.86Schristos# $NetBSD: GENERIC,v 1.86 1999/07/20 07:40:36 christos Exp $ 21.1Sderaadt 31.32Smrginclude "arch/sparc/conf/std.sparc" 41.45Spk 51.45Spkmaxusers 32 61.32Smrg 71.55Spk## System kernel configuration. See options(4) for more detail. 81.55Spk 91.55Spk 101.24Sthorpej# Options for variants of the Sun SPARC architecure. 111.55Spk# We currently support three architecture types; at least one is required. 121.43Slukemoptions SUN4 # sun4/100, sun4/200, sun4/300 131.43Slukemoptions SUN4C # sun4c - SS1, 1+, 2, ELC, SLC, IPC, IPX, etc. 141.43Slukemoptions SUN4M # sun4m - SS10, SS20, Classic, etc. 151.24Sthorpej 161.59Spk#options SUN4_MMU3L # 3-level MMU on sun4/400; (incomplete) 171.1Sderaadt 181.55Spk## System options specific to the sparc machine type 191.55Spk 201.55Spk# Blink the power LED on some machines to indicate the system load. 211.55Spk#options BLINK 221.55Spk 231.55Spk## Use a faster console than the PROM's slow drawing routines. Not needed 241.55Spk## for headless (no framebuffer) machines. 251.77Sadoptions RASTERCONSOLE # fast rasterop console 261.79Sadoptions FONT_GALLANT12x22 # the console font 271.79Sad#options FONT_BOLD8x16 # a somewhat smaller font 281.82Sadoptions RASTERCONSOLE_FGCOL=WSCOL_BLACK 291.82Sadoptions RASTERCONSOLE_BGCOL=WSCOL_WHITE 301.55Spk 311.55Spk#### System options that are the same for all ports 321.55Spk 331.55Spk## Root device configuration: change the ?'s if you are going to use a 341.55Spk## nonstandard root partition (other than where the kernel is booted from) 351.55Spk## and/or nonstandard root type (not ffs or nfs). Normally this can be 361.55Spk## automagically determined at boot time. 371.55Spk 381.55Spkconfig netbsd root on ? type ? 391.55Spk 401.55Spk## System call tracing (see ktrace(1)). 411.55Spkoptions KTRACE 421.55Spk 431.55Spk## Collect statistics on kernel malloc's and free's. This does have a 441.55Spk## significant performance hit on slower machines, so it is intended for 451.55Spk## diagnostic use only. 461.55Spk#options KMEMSTATS 471.55Spk 481.55Spk## System V compatible IPC subsystem. (msgctl(2), semctl(2), and shmctl(2)) 491.43Slukemoptions SYSVMSG # System V message queues 501.43Slukemoptions SYSVSEM # System V semaphores 511.43Slukemoptions SYSVSHM # System V shared memory 521.43Slukem#options SHMMAXPGS=1024 # 1024 pages is the default 531.24Sthorpej 541.55Spk## Loadable kernel module support; still under development. 551.55Spkoptions LKM 561.55Spk 571.59Spk## NFS boot options; default on sparc is the bootparam protocol 581.59Spkoptions NFS_BOOT_BOOTPARAM 591.59Spk#options NFS_BOOT_BOOTP 601.59Spk#options NFS_BOOT_DHCP 611.55Spk 621.55Spk#### Debugging options 631.55Spk 641.55Spk## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at 651.55Spk## serial console break or keyboard reset, where the PROM would normally 661.55Spk## intercept. DDB_HISTORY_SIZE adds up/down arrow command history. 671.55Spk#options DDB # kernel dynamic debugger 681.52Slukem#options DDB_HISTORY_SIZE=100 # enable history editing in DDB 691.69Spk#options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 701.55Spk 711.55Spk## You may also use gdb, on another computer connected to this machine over 721.55Spk## a serial port. Both KGDBDEV and KGDBRATE should be specified; KGDBDEV is 731.55Spk## a dev_t encoded device number of the serial port to use. 741.55Spk## (0xc01 = ttya, 0xc02 = ttyb.) 751.37Smrg#options KGDB # support for kernel gdb 761.55Spk#options KGDBDEV=0xc01 # kgdb device number (this sample is `ttyb') 771.37Smrg#options KGDBRATE=38400 # baud rate 781.24Sthorpej 791.55Spk 801.55Spk## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file), 811.55Spk## such that gdb(1) can be used on a kernel coredump. 821.55Spk 831.55Spk#makeoptions DEBUG="-g" 841.55Spk 851.55Spk 861.55Spk## Adds code to the kernel that does internal consistency checks, and will 871.55Spk## cause the kernel to panic if corruption of internal data structures 881.55Spk## is detected. 891.55Spk#options DIAGNOSTIC # extra kernel sanity checking 901.55Spk 911.55Spk## Enable (possibly expensive) debugging code that may also display messages 921.55Spk## on the system console 931.55Spk#options DEBUG 941.55Spk 951.55Spk## Make SCSI error messages more verbose when explaining their meanings. 961.55Spkoptions SCSIVERBOSE 971.55Spk 981.55Spk## `INSECURE' turns off the kernel security level (securelevel = 0 always). 991.55Spk## This allows writing to /dev/mem, loading kernel modules while multi-user, 1001.55Spk## and other insecurities good only for development work. Do not use this 1011.55Spk## option on a production machine. 1021.55Spk#options INSECURE 1031.55Spk 1041.55Spk## Allow non-root users to grab /dev/console with programs such as xconsole. 1051.55Spk## `xconsole' therefore does not need setuid root with this option enabled. 1061.55Spk#options UCONSOLE 1071.55Spk 1081.55Spk## `FDSCRIPTS' allows non-readable but executable scripts by providing a 1091.55Spk## pre-opened opaque file to the script interpreter. `SETUIDSCRIPTS', 1101.55Spk## which implies FDSCRIPTS, allows scripts to be set-user-id using the same 1111.55Spk## opaque file mechanism. Perl calls this "secure setuid scripts." 1121.55Spk 1131.55Spk#options FDSCRIPTS 1141.55Spk#options SETUIDSCRIPTS 1151.55Spk 1161.55Spk## Options for compatibility with previous releases foreign system binaries. 1171.55Spk## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up 1181.55Spk## additional user-level utilities or system configuration files. See 1191.55Spk## compat_sunos(8) and compat_svr4(8). 1201.55Spk 1211.43Slukemoptions COMPAT_43 # 4.3BSD system interfaces 1221.43Slukemoptions COMPAT_10 # NetBSD 1.0 binary compatibility 1231.43Slukemoptions COMPAT_11 # NetBSD 1.1 binary compatibility 1241.43Slukemoptions COMPAT_12 # NetBSD 1.2 binary compatibility 1251.54Smjacoboptions COMPAT_13 # NetBSD 1.3 binary compatibility 1261.43Slukemoptions COMPAT_SUNOS # SunOS 4.x binary compatibility 1271.43Slukemoptions COMPAT_SVR4 # SunOS 5.x binary compatibility 1281.83Spkoptions COMPAT_AOUT # NetBSD a.out compatibility 1291.1Sderaadt 1301.55Spk## File systems. You probably need at least one of FFS or NFS. 1311.43Slukemfile-system FFS # Berkeley Fast Filesystem 1321.43Slukemfile-system NFS # Sun NFS-compatible filesystem client 1331.43Slukemfile-system KERNFS # kernel data-structure filesystem 1341.43Slukemfile-system NULLFS # NULL layered filesystem 1351.43Slukemfile-system MFS # memory-based filesystem 1361.43Slukemfile-system FDESC # user file descriptor filesystem 1371.43Slukemfile-system UMAPFS # uid/gid remapping filesystem 1381.43Slukemfile-system LFS # Log-based filesystem (still experimental) 1391.43Slukemfile-system PORTAL # portal filesystem (still experimental) 1401.43Slukemfile-system PROCFS # /proc 1411.43Slukemfile-system CD9660 # ISO 9660 + Rock Ridge file system 1421.43Slukemfile-system UNION # union file system 1431.43Slukemfile-system MSDOSFS # MS-DOS FAT filesystem(s). 1441.43Slukem 1451.55Spk## File system options. 1461.43Slukemoptions NFSSERVER # Sun NFS-compatible filesystem server 1471.43Slukemoptions QUOTA # FFS quotas 1481.63Spk#options FFS_EI # FFS Endian Independent support 1491.1Sderaadt 1501.55Spk## Network protocol support. In most environments, INET is required. 1511.57Spkoptions INET # IP (Internet Protocol) v4 1521.57Spkoptions TCP_COMPAT_42 # 4.2BSD IP implementation compatibility 1531.57Spk#options GATEWAY # packet forwarding ("router switch") 1541.57Spk#options MROUTING # packet forwarding of multicast packets 1551.57Spk#options DIRECTED_BROADCAST # allow broadcasts through routers 1561.57Spkoptions NS # Xerox NS networking 1571.57Spk#options NSIP # Xerox NS tunneling over IP 1581.57Spkoptions ISO,TPIP # OSI networking 1591.57Spkoptions EON # OSI tunneling over IP 1601.57Spk#options CCITT,LLC,HDLC # X.25 packet switched protocol 1611.75Spk#options NETATALK # AppleTalk (over Ethernet) protocol 1621.67Spkoptions NTP # Network Time Protocol in-kernel support 1631.57Spk#options PPS_SYNC # Add serial line synchronization for NTP 1641.86Schristosoptions PFIL_HOOKS # Add pfil(9) hooks, intended for custom LKMs. 1651.86Schristosoptions IPFILTER_LOG # Add ipmon(8) logging for ipfilter device 1661.86Schristosoptions PPP_BSDCOMP # Add BSD compression to ppp device 1671.86Schristosoptions PPP_DEFLATE # Add deflate (libz) compression to ppp device 1681.86Schristosoptions PPP_FILTER # Add active filters for ppp (via bpf) 1691.1Sderaadt 1701.1Sderaadt 1711.55Spk 1721.57Spk#### Main bus and CPU .. all systems. 1731.1Sderaadtmainbus0 at root 1741.1Sderaadtcpu0 at mainbus0 1751.1Sderaadt 1761.55Spk#### Bus types found on SPARC systems. 1771.55Spk 1781.24Sthorpejsbus0 at mainbus0 # sun4c 1791.24Sthorpejobio0 at mainbus0 # sun4 and sun4m 1801.58Spkvme0 at mainbus0 # sun4 1811.22Spkiommu0 at mainbus0 # sun4m 1821.22Spksbus0 at iommu0 # sun4m 1831.58Spkvme0 at iommu0 # sun4m 1841.64Spk 1851.64Spk## SBus expander box 1861.64Spkxbox* at sbus? slot ? offset ? 1871.64Spksbus* at xbox? 1881.72Spk 1891.72Spk## SBus to PCMCIA bridge 1901.80Sabs# Currently enabling nell* with audioamd* causes panic at attach 1911.80Sabs#nell* at sbus? slot ? offset ? # PCMCIA bridge 1921.80Sabs#pcmcia* at nell? 1931.1Sderaadt 1941.55Spk#### Standard system devices -- all required for a given architecture 1951.24Sthorpej 1961.55Spk## Auxiliary system registers on sun4c and sun4m 1971.24Sthorpejauxreg0 at mainbus0 # sun4c 1981.22Spkauxreg0 at obio0 # sun4m 1991.27Sabrown 2001.55Spk## Power status and control register on Sun4m systems 2011.27Sabrownpower0 at obio0 2021.24Sthorpej 2031.55Spk## Mostek clock found on 4/300, sun4c, and sun4m systems. 2041.55Spk## The Mostek clock NVRAM is the "eeprom" on sun4/300 systems. 2051.24Sthorpejclock0 at mainbus0 # sun4c 2061.22Spkclock0 at obio0 # sun4m 2071.24Sthorpejclock0 at obio0 addr 0xf2000000 # sun4/300 2081.24Sthorpej 2091.55Spk## Intersil clock found on 4/100 and 4/200 systems. 2101.24Sthorpejoclock0 at obio0 addr 0xf3000000 # sun4/200 2111.24Sthorpejoclock0 at obio0 addr 0x03000000 # sun4/100 2121.24Sthorpej 2131.55Spk## Memory error registers. 2141.24Sthorpejmemreg0 at mainbus0 # sun4c 2151.22Spkmemreg0 at obio0 # sun4m 2161.24Sthorpejmemreg0 at obio0 addr 0xf4000000 # sun4/200 and sun4/300 2171.24Sthorpejmemreg0 at obio0 addr 0x04000000 # sun4/100 2181.74Spk 2191.74Spk## ECC memory control 2201.74Spkeccmemctl0 at mainbus0 # sun4m 2211.24Sthorpej 2221.55Spk## Timer chip found on 4/300, sun4c, and sun4m systems. 2231.24Sthorpejtimer0 at mainbus0 # sun4c 2241.22Spktimer0 at obio0 # sun4m 2251.24Sthorpejtimer0 at obio0 addr 0xef000000 # sun4/300 2261.24Sthorpej 2271.55Spk## EEPROM found on 4/100 and 4/200 systems. Note that the 4/300 2281.55Spk## doesn't use this driver; the `EEPROM' is in the NVRAM on the 2291.55Spk## Mostek clock chip on 4/300 systems. 2301.24Sthorpejeeprom0 at obio0 addr 0xf2000000 # sun4/200 2311.24Sthorpejeeprom0 at obio0 addr 0x02000000 # sun4/100 2321.24Sthorpej 2331.55Spk 2341.55Spk#### Serial port configuration 2351.55Spk 2361.55Spk## Zilog 8530 serial chips. Each has two-channels. 2371.55Spk## zs0 is ttya and ttyb. zs1 is the keyboard and mouse. 2381.24Sthorpejzs0 at mainbus0 # sun4c 2391.24Sthorpejzs0 at obio0 # sun4m 2401.24Sthorpejzs0 at obio0 addr 0xf1000000 level 12 flags 0x103 # sun4/200 and sun4/300 2411.24Sthorpejzs0 at obio0 addr 0x01000000 level 12 flags 0x103 # sun4/100 2421.50Sgwrzstty0 at zs0 channel 0 # ttya 2431.50Sgwrzstty1 at zs0 channel 1 # ttyb 2441.50Sgwr 2451.24Sthorpejzs1 at mainbus0 # sun4c 2461.24Sthorpejzs1 at obio0 # sun4m 2471.24Sthorpejzs1 at obio0 addr 0xf0000000 level 12 flags 0x103 # sun4/200 and sun4/300 2481.24Sthorpejzs1 at obio0 addr 0x00000000 level 12 flags 0x103 # sun4/100 2491.50Sgwrkbd0 at zs1 channel 0 # keyboard 2501.50Sgwrms0 at zs1 channel 1 # mouse 2511.50Sgwr 2521.24Sthorpejzs2 at obio0 addr 0xe0000000 level 12 flags 0x103 # sun4/300 2531.50Sgwrzstty2 at zs2 channel 0 # ttyc 2541.50Sgwrzstty3 at zs2 channel 1 # ttyd 2551.66Spk 2561.66Spk 2571.66Spk## Magma Serial/Parallel driver 2581.66Spkmagma* at sbus? slot ? offset ? 2591.66Spkmtty* at magma? 2601.66Spkmbpp* at magma? 2611.66Spk 2621.75Spk## PCMCIA serial interfaces 2631.80Sabs#com* at pcmcia? 2641.80Sabs#pcmcom* at pcmcia? 2651.80Sabs#com* at pcmcom? 2661.24Sthorpej 2671.55Spk#### Disk controllers and disks 2681.55Spk 2691.26Spk# 2701.26Spk 2711.55Spk## The following flags may be set for the NCR53c94 based esp driver: 2721.55Spk## bits 0-7: disable disconnect/reselect for the corresponding target 2731.55Spk## bits 8-15: disable synchronous negotiation for target [bit-8] 2741.55Spk 2751.55Spk## sun4/300, sun4c, sun4m on-board SCSI, and FSBE/S SBus SCSI cards. 2761.55Spk## Both `dma' and `esp' are needed in all cases. 2771.55Spk## Two kinds of additional SBus SCSI interfaces are available. One uses 2781.55Spk## "esp at sbus" like the sun4c on-board; the other uses "esp at dma". 2791.55Spk 2801.55Spk## sun4/300 SCSI - an NCR53c94 or equivalent behind 2811.55Spk## an LSI Logic DMA controller 2821.55Spk 2831.24Sthorpejdma0 at obio0 addr 0xfa001000 level 4 # sun4/300 2841.55Spkesp0 at obio0 addr 0xfa000000 level 4 flags 0x0000 # sun4/300 2851.1Sderaadt 2861.55Spkdma0 at sbus0 slot ? offset ? # sun4c/sun4m 2871.51Spkesp0 at sbus0 slot ? offset ? flags 0x0000 # sun4c 2881.51Spkesp0 at dma0 flags 0x0000 # sun4m 2891.24Sthorpej 2901.55Spk# FSBE/S SCSI 2911.55Spkdma* at sbus? slot ? offset ? # SBus 2921.55Spkesp* at sbus? slot ? offset ? flags 0x0000 # SBus (older proms) 2931.55Spkesp* at dma? flags 0x0000 # SBus 2941.24Sthorpej 2951.55Spkscsibus* at esp? 2961.55Spk 2971.55Spk## Qlogic ISP SBus SCSI Card 2981.42Scgdisp* at sbus? slot ? offset ? 2991.55Spkscsibus* at isp? 3001.42Scgd 3011.55Spk## NCR5380-based "Sun SCSI 3" VME SCSI controller. 3021.55Spk## This driver has several flags which may be enabled by OR'ing 3031.55Spk## the values and using the "flags" directive. 3041.55Spk## Valid flags are: 3051.55Spk## 3061.55Spk## 0x01 Use DMA (may be polled) 3071.55Spk## 0x02 Use DMA completion interrupts 3081.55Spk## 0x04 Allow disconnect/reselect 3091.55Spk## 3101.55Spk## E.g. the following would enable DMA, interrupts, and reselect: 3111.58Spk## si0 at vme0 addr 0x200000 level 3 vect 0x40 flags 0x07 3121.55Spk## 3131.55Spk## By default, DMA is enabled in the driver. 3141.25Spk 3151.58Spksi0 at vme0 addr 0x200000 pri 2 vec 0x40 3161.55Spkscsibus* at si? 3171.24Sthorpej 3181.55Spk## NCR5380-based "SCSI Weird" on-board SCSI interface found 3191.55Spk## on sun4/100 systems. The flags are the same as the "si" 3201.55Spk## controller. Note, while DMA is enabled by default, only 3211.55Spk## polled DMA works at this time, and reselects do not work 3221.55Spk## on this particular controller. 3231.1Sderaadt 3241.55Spksw0 at obio0 addr 0x0a000000 level 3 3251.55Spkscsibus* at sw? 3261.24Sthorpej 3271.75Spk## PCMCIA SCSI controllers 3281.80Sabs#aic* at pcmcia? 3291.80Sabs#scsibus* at aic? 3301.75Spk 3311.75Spk 3321.55Spk## These entries find devices on all SCSI busses and assign 3331.55Spk## unit numbers dynamically. 3341.55Spksd* at scsibus? target ? lun ? # SCSI disks 3351.55Spkst* at scsibus? target ? lun ? # SCSI tapes 3361.55Spkcd* at scsibus? target ? lun ? # SCSI CD-ROMs 3371.55Spkch* at scsibus? target ? lun ? # SCSI changer devices 3381.55Spkss* at scsibus? target ? lun ? # SCSI scanners 3391.55Spkuk* at scsibus? target ? lun ? # unknown SCSI 3401.23Spk 3411.9Spk 3421.55Spk## Xylogics 753 or 7053 VME SMD disk controllers and disks, found 3431.55Spk## on sun4 systems. 3441.59Spkxdc0 at vme0 addr 0xee80 pri 3 vec 0x44 3451.59Spkxdc1 at vme0 addr 0xee90 pri 3 vec 0x45 3461.59Spkxdc2 at vme0 addr 0xeea0 pri 3 vec 0x46 3471.59Spkxdc3 at vme0 addr 0xeeb0 pri 3 vec 0x47 3481.9Spkxd* at xdc? drive ? 3491.16Schuck 3501.55Spk## Xylogics 451 or 451 VME SMD disk controllers and disks, found 3511.55Spk## on sun4 systems. 3521.59Spkxyc0 at vme0 addr 0xee40 pri 3 vec 0x48 3531.59Spkxyc1 at vme0 addr 0xee48 pri 3 vec 0x49 3541.16Schuckxy* at xyc? drive ? 3551.10Spk 3561.24Sthorpej 3571.55Spk## Floppy controller and drive found on SPARCstations. 3581.55Spk 3591.55Spkfdc0 at mainbus0 # sun4c controller 3601.55Spkfdc0 at obio0 # sun4m controller 3611.55Spkfd* at fdc0 # the drive itself 3621.55Spk 3631.75Spk## PCMCIA IDE controllers 3641.80Sabs#wdc* at pcmcia? 3651.80Sabs#wd* at wdc? 3661.75Spk 3671.55Spk## A disk-like interface to files. Can be used to create floppy, CD, 3681.55Spk## miniroot images, etc. 3691.55Spk 3701.55Spkpseudo-device vnd 4 3711.55Spk 3721.55Spk## Concatenated and striped disks; with this, you can create a software-based 3731.55Spk## disk array similar to a "RAID 0" setup. See ccd(4). 3741.55Spk 3751.55Spkpseudo-device ccd 4 3761.71Soster 3771.71Soster## RAIDframe disk driver: software RAID driver. See raid(4). 3781.71Soster 3791.71Soster#pseudo-device raid 4 3801.55Spk 3811.55Spk## Memory disk device, used on boot floppies with compressed 3821.55Spk## kernel-plus-root-disk images. 3831.55Spk 3841.55Spk#pseudo-device md 1 3851.55Spk 3861.55Spk 3871.55Spk#### Network interfaces 3881.55Spk 3891.55Spk## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue 3901.55Spk## Three flavors of additional SBus ethernets are available. One attaches 3911.55Spk## directly like the sun4c on-board, one uses the ledma device like the 3921.55Spk## sun4m on-board, and one uses the lebuffer device. 3931.55Spk 3941.56Spkle0 at obio0 addr 0xf9000000 level 6 # sun4/300 3951.56Spkle0 at sbus0 slot ? offset ? # sun4c on-board 3961.56Spkledma0 at sbus0 slot ? offset ? # sun4m on-board 3971.56Spkle0 at ledma0 # sun4m on-board 3981.56Spkle* at sbus? slot ? offset ? # SBus 3991.56Spkledma* at sbus? slot ? offset ? # SBus 4001.56Spkle* at ledma? # SBus 4011.56Spklebuffer0 at sbus? slot ? offset ? # SBus 4021.56Spkle0 at lebuffer? # SBus 4031.55Spklebuffer* at sbus? slot ? offset ? # SBus 4041.56Spkle* at lebuffer? # SBus 4051.55Spk 4061.55Spk 4071.55Spk## sun4/100 and sun4/200 Ethernet - an Intel 82586 on-board 4081.55Spk## or on a Multibus/VME card. 4091.55Spkie0 at obio0 addr 0xf6000000 level 6 # sun4/200 on-board 4101.55Spkie0 at obio0 addr 0x06000000 level 6 # sun4/100 on-board 4111.58Spkie1 at vme0 addr 0xe88000 pri 3 vec 0x75 # VME 4121.58Spkie2 at vme0 addr 0x31ff02 pri 3 vec 0x76 # VME 4131.58Spkie3 at vme0 addr 0x35ff02 pri 3 vec 0x77 # VME 4141.58Spkie4 at vme0 addr 0x2dff02 pri 3 vec 0x7c # VME 4151.55Spk 4161.70Spk## qec/be, qec/hme 4171.85Spkqec* at sbus? slot ? offset ? 4181.85Spkbe* at qec? 4191.85Spkqe* at qec? 4201.85Spk 4211.85Spk## hme (driver not quite ready yet) 4221.85Spk#hme* at sbus? slot ? offset ? 4231.70Spk 4241.70Spk# midway ATM 4251.70Spken0 at sbus? slot ? offset ? 4261.75Spk 4271.75Spk# PCMCIA ethernet devices 4281.80Sabs#ep* at pcmcia? 4291.80Sabs#mbe* at pcmcia? 4301.80Sabs#ne* at pcmcia? 4311.80Sabs#sm* at pcmcia? 4321.75Spk 4331.75Spk# MII/PHY support 4341.81Spkexphy* at mii? phy ? # 3Com internal PHYs 4351.81Spkicsphy* at mii? phy ? # Integrated Circuit Systems ICS1890 4361.81Spkinphy* at mii? phy ? # Intel 82555 PHYs 4371.81Spklxtphy* at mii? phy ? # Level One LXT-970 PHYs 4381.81Spknsphy* at mii? phy ? # NS83840 PHYs 4391.81Spkqsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 4401.81Spksqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 4411.81Spktlphy* at mii? phy ? # ThunderLAN PHYs 4421.81Spkukphy* at mii? phy ? # generic unknown PHYs 4431.70Spk 4441.55Spk## Loopback network interface; required 4451.55Spkpseudo-device loop 4461.55Spk 4471.55Spk## SLIP and CSLIP interfaces, for IP over a serial line. 4481.55Spkpseudo-device sl 2 4491.55Spk 4501.55Spk## PPP, the successor to SLIP. See pppd(8). 4511.55Spkpseudo-device ppp 2 4521.55Spk 4531.55Spk## Starmode Radio IP, a special hardware network device. 4541.55Spk#pseudo-device strip 1 4551.55Spk 4561.55Spk## Network "tunnel" device, allowing protocol stacks to run in the userland. 4571.55Spk## This is used by the third-party user-mode "ppp" program, and others. 4581.55Spkpseudo-device tun 4 4591.73Shwr 4601.73Shwr## Generic L3 over IP tunnel 4611.73Shwr#pseudo-device gre 2 # generic L3 over IP tunnel 4621.55Spk 4631.55Spk## Berkeley Packet Filter, required to run RARPD. A generic C-language 4641.55Spk## interface that allows selective examining of incoming packets. 4651.55Spkpseudo-device bpfilter 8 4661.55Spk 4671.55Spk## IP Filter, used in firewall and NAT applications. See ipnat(8) for 4681.55Spk## one example of the use of the IP Filter. 4691.55Spkpseudo-device ipfilter 4701.55Spk 4711.55Spk 4721.55Spk#### Audio and video devices 4731.55Spk 4741.55Spk## /dev/audio support (`audioamd' plus `audio') 4751.55Spk## 4761.55Spkaudioamd0 at mainbus0 # sun4c 4771.63Spk#audioamd0 at obio0 # sun4m 4781.55Spkaudioamd0 at sbus0 slot ? offset ? # sun4m 4791.55Spkaudio* at audioamd0 4801.70Spk 4811.70Spkaudiocs0 at sbus0 slot ? offset ? # SUNW,CS4231 4821.70Spkaudio* at audiocs0 4831.55Spk 4841.55Spk 4851.55Spk## Sun "bwtwo" black and white framebuffer, found on sun4, sun4c, and sun4m 4861.55Spk## systems. If your sun4 system has a cgfour installed in the P4 slot, 4871.55Spk## the P4 entries for "bwtwo" will attach to the overlay plane of the 4881.55Spk## "cgfour". 4891.1Sderaadt 4901.55Spkbwtwo0 at sbus0 slot ? offset ? # sun4c and sun4m 4911.55Spkbwtwo* at sbus? slot ? offset ? # 4921.55Spkbwtwo0 at obio0 addr 0xfd000000 level 4 # sun4/200 4931.55Spkbwtwo0 at obio0 addr 0xfb300000 level 4 # sun4/300 in P4 slot 4941.55Spkbwtwo0 at obio0 addr 0x0b300000 level 4 # sun4/100 in P4 slot 4951.21Sthorpej 4961.55Spk## Sun "cgtwo" VME color framebuffer 4971.58Spkcgtwo0 at vme0 addr 0x400000 pri ? vec 0xa8 4981.21Sthorpej 4991.55Spk## Sun "cgthree" Sbus color framebuffer 5001.55Spkcgthree0 at sbus? slot ? offset ? 5011.55Spkcgthree* at sbus? slot ? offset ? 5021.55Spk#cgthree0 at obio? slot ? offset ? # sun4m 5031.55Spk 5041.55Spk## Sun "cgfour" color framebuffer with overlay plane. See above comment 5051.55Spk## regarding overlay plane. 5061.55Spkcgfour0 at obio0 addr 0xfb300000 level 4 # sun4/300 P4 5071.55Spkcgfour0 at obio0 addr 0x0b300000 level 4 # sun4/100 P4 5081.55Spk 5091.55Spk## Sun "cgsix" accelerated color framebuffer. 5101.55Spkcgsix0 at sbus? slot ? offset ? 5111.55Spkcgsix* at sbus? slot ? offset ? 5121.55Spkcgsix0 at obio0 addr 0xfb000000 level 4 # sun4/300 P4 5131.55Spkcgsix0 at obio0 addr 0x0b000000 level 4 # sun4/100 P4 5141.55Spk 5151.55Spk## Sun "cgeight" 24-bit framebuffer 5161.55Spkcgeight0 at obio0 addr 0xfb300000 level 4 # sun4/300 P4 5171.55Spkcgeight0 at obio0 addr 0x0b300000 level 4 # sun4/100 P4 5181.55Spk 5191.55Spk## Sun "tcx" accelerated color framebuffer. 5201.55Spktcx0 at sbus? slot ? offset ? 5211.55Spktcx* at sbus? slot ? offset ? 5221.33Sabrown 5231.33Sabrown# Sun "cgfourteen" accelerated 24-bit framebuffer. 5241.33Sabrowncgfourteen0 at obio0 # sun4m 5251.1Sderaadt 5261.1Sderaadt 5271.55Spk#### Other device configuration 5281.24Sthorpej 5291.55Spk## Pseudo ttys, required for network logins and programs like screen. 5301.55Spk## 32 is a good number for average systems; you may have as many as you 5311.55Spk## like, though 256 is more or less the upper limit. Increasing this 5321.55Spk## number still requires you to run /dev/MAKEDEV to create the files 5331.55Spk## for the ptys. 5341.24Sthorpej 5351.43Slukempseudo-device pty 32 # pseudo-ttys (for network, etc.) 5361.55Spk 5371.55Spk## Random device, used to implement /dev/random (a source of random noise), 5381.55Spk## and generate randomness for some kernel formulae. 5391.55Spk 5401.84Smrgpseudo-device rnd 541