diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2000-04-30 15:27:58 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2000-04-30 15:27:58 +0000 |
commit | d2cf12f126a769cf608847028d6bc36efd19878c (patch) | |
tree | 3b33498008484805c3f95fef7e07af97570184ae /sys/arch/sun3/conf/SMD_TEST | |
parent | 8efb5be588958a42ac600f5d4d7bb8cde03a5463 (diff) |
Add $OpenBSD$, update pseudo-device settings
Diffstat (limited to 'sys/arch/sun3/conf/SMD_TEST')
-rw-r--r-- | sys/arch/sun3/conf/SMD_TEST | 53 |
1 files changed, 35 insertions, 18 deletions
diff --git a/sys/arch/sun3/conf/SMD_TEST b/sys/arch/sun3/conf/SMD_TEST index 8e9cf30f0b9..0ff71fa4739 100644 --- a/sys/arch/sun3/conf/SMD_TEST +++ b/sys/arch/sun3/conf/SMD_TEST @@ -1,3 +1,4 @@ +# $OpenBSD: SMD_TEST,v 1.11 2000/04/30 15:27:57 miod Exp $ # $NetBSD: SMD_TEST,v 1.2.4.1 1996/08/19 23:35:11 gwr Exp $ # @@ -10,18 +11,18 @@ include "arch/sun3/conf/std.sun3" # Machines to be supported by this kernel option GENERIC option FPU_EMULATE -option HAVECACHE # Sun3/260 VAC +option HAVECACHE # Sun3/260 VAC # Needs to be set per system. i.e change these as you see fit maxusers 4 # Standard system options -option KTRACE # system call tracing support +option KTRACE # system call tracing support # Debugging options. Uncomment either this: option DDB # ... or these two: (for KGDB on another machine) -#makeoptions DEBUG="-g" # symbols for kgdb + nm +#makeoptions DEBUG="-g" # symbols for kgdb + nm #option KGDB # Filesystem options @@ -40,6 +41,8 @@ option MFS # memory-based filesystem # Networking options option INET # IP prototol stack support +option IPFILTER # IP packet filter for security +option IPFILTER_LOG # use /dev/ipl to log IPF #option GATEWAY # IP packet forwarding option TCP_COMPAT_42 # TCP bug compatibility with 4.2BSD # XXX - Work-around for root on slow SunOS/Sun3 servers (sigh...) @@ -53,7 +56,7 @@ option COMPAT_11 # NetBSD 1.1 option COMPAT_12 # NetBSD 1.2 # Sun3-specific debugging options -#option PMAP_DEBUG +option PMAP_DEBUG #option VMFAULT_TRACE #option SYSCALL_DEBUG #option EXEC_DEBUG @@ -76,18 +79,28 @@ ms0 at zsc0 channel 1 # mouse # # Intel Ethernet (onboard, or VME) -ie0 at obio0 addr ? level ? +ie0 at obio0 addr 0x0C0000 level 3 ie1 at vmes0 addr 0xffe88000 level 3 vect 0x75 # Lance Ethernet (only onboard) -le0 at obio0 addr ? level ? +le0 at obio0 addr 0x120000 level 3 # # Disk and tape devices # # Sun3 "si" SCSI controller (NCR 5380) -si0 at obio0 addr ? level ? +# This driver has several flags which may be enabled by OR'ing +# the values and using the "flags" directive. (PR#1929) +# Valid flags are: +# +# 0x01 Use DMA (may be polled) +# 0x02 Use DMA completion interrupts +# 0x04 Allow disconnect/reselect +# +# E.g. "flags 0x07" would enable DMA, interrupts, and reselect. +# Note: these values are quite a bit paranoid... +si0 at obio0 addr 0x140000 level 2 si0 at vmes0 addr 0xff200000 level 2 vect 0x40 si1 at vmes0 addr 0xff204000 level 2 vect 0x41 @@ -152,17 +165,21 @@ st* at scsibus? target ? lun ? cd0 at scsibus? target 6 lun 0 cd* at scsibus? target ? lun ? -#ch* at scsibus? target ? lun ? +ch* at scsibus? target ? lun ? +ss* at scsibus? target ? lun ? +uk* at scsibus? target ? lun ? -# RAM-disk drivers -pseudo-device rd 2 +pseudo-device loop 1 # network loopback +pseudo-device bpfilter 8 # packet filter +pseudo-device sl 2 # CSLIP +pseudo-device ppp 2 # PPP +pseudo-device tun 2 # network tunneling over tty +pseudo-device enc 4 # encryption device -# Misc. -pseudo-device loop 1 # network loopback -pseudo-device bpfilter 8 # packet filter -pseudo-device sl 2 # CSLIP -pseudo-device ppp 2 # PPP -pseudo-device tun 2 # network tunneling over tty +pseudo-device pty 64 # pseudo-terminals +#pseudo-device vnd 4 # paging to files +pseudo-device ksyms 1 # kernel symbols device -pseudo-device pty 64 # pseudo-terminals -#pseudo-device vnd 4 # paging to files +# for IPv6 +pseudo-device gif 4 +#pseudo-device faith 1 |