NetBSD/sys/arch/vax/conf/GENERIC

297 lines
9.7 KiB
Plaintext
Raw Normal View History

2003-12-14 22:39:24 +03:00
# $NetBSD: GENERIC,v 1.116 2003/12/14 19:39:24 ragge Exp $
1994-08-03 00:18:46 +04:00
#
# GENERIC machine description file
#
# This machine description file is used to generate the default NetBSD
# kernel. The generic kernel does not include all options, subsystems
# and device drivers, but should be useful for most applications.
1994-08-03 00:18:46 +04:00
#
# The machine description file can be customised for your specific
# machine to reduce the kernel size and improve its performance.
#
# For further information on compiling NetBSD kernels, see the config(8)
# man page.
#
# For further information on hardware support for this architecture, see
# the intro(4) man page. For further information about kernel options
# for this architecture, see the options(4) man page. For an explanation
# of each device driver in this file see the section 4 man page for the
# device.
1994-08-03 00:18:46 +04:00
include "arch/vax/conf/std.vax"
1994-08-03 00:18:46 +04:00
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
2003-12-14 22:39:24 +03:00
#ident "GENERIC-$Revision: 1.116 $"
2000-01-24 02:46:04 +03:00
# Here are all different supported CPU types listed.
#options VAX8800 # VAX 8500, 8530, 8550, 8700, 8800
options VAX8600
options VAX8200
#options VAX6400
options VAX780
options VAX750
options VAX630 # MV II
options VAX650 # MV III, 3300, 3400, 3500, 3600, 3800, 3900
options VAX660 # VAX 4000/200
options VAX670 # VAX 4000/300
options VAX680 # VAX 4000/[45]00
options VAX410 # VS 2000
options VAX43 # VS 3100/76
options VAX46 # VS 4000/60
options VAX48 # VS 4000 VLC
options VAX49 # VS 4000/90
options VAX53 # VAX 4000/10[058], MicroVAX 3100/m96
1994-08-03 00:18:46 +04:00
# Max users on system; this is just a hint
maxusers 8
1995-03-30 02:50:47 +04:00
# Kernel compiled-in symbolic debugger & system call tracer
#makeoptions DEBUG="-g"
2000-05-29 00:21:04 +04:00
options DDB
#options DDB_HISTORY_SIZE=100 # enable history editing in DDB
options KTRACE
2002-10-06 06:11:54 +04:00
options SYSTRACE # system call vetting via systrace(1)
#options DIAGNOSTIC
2000-12-02 20:18:54 +03:00
#options DEBUG,KMEMSTATS,PMAPDEBUG,TRAPDEBUG,LOCKDEBUG
options SCSIVERBOSE # Verbose SCSI errors
# Networking options
#options GATEWAY # packet forwarding
options NTP # NTP kernel support
options INET # IP + ICMP + TCP + UDP
options INET6 # IPV6
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
#options MROUTING # IP multicast routing
#options NS # XNS
#options NSIP # XNS tunneling over IP
#options ISO,TPIP # OSI
#options EON # OSI tunneling over IP
#options CCITT,LLC,HDLC # X.25
#options NETATALK # AppleTalk networking protocols
2002-10-01 13:52:10 +04:00
options PPP_BSDCOMP # BSD-Compress compression support for PPP
options PPP_DEFLATE # Deflate compression support for PPP
options PPP_FILTER # Active filter support for PPP (requires bpf)
#options PFIL_HOOKS # pfil(9) packet filter hooks
#options IPFILTER_LOG # ipmon(8) log support
#options IPFILTER_DEFAULT_BLOCK # block all packets by default
# All supported filesystem types
file-system FFS
file-system LFS
file-system MFS
file-system NFS
file-system FDESC
file-system KERNFS
file-system NULLFS
2000-01-20 22:12:28 +03:00
file-system OVERLAY # overlay file system
file-system PROCFS
file-system UMAPFS
file-system UNION
file-system CD9660
options QUOTA
1998-03-18 19:34:41 +03:00
#options FFS_EI # FFS Endian Independant support
options SOFTDEP # FFS soft updates support.
options NFSSERVER
options NFS_BOOT_BOOTP,NFS_BOOT_DHCP # Use bootp <> dhcp
options NFS_BOOT_BOOTPARAM # Use the Sun way for netbooting.
# WS console uses VT100 terminal emulation
options WSEMUL_VT100
options WSDISPLAY_DEFAULTSCREENS=8
2000-12-02 20:18:54 +03:00
options FONT_QVSS8x15
# System V shared memory & semaphores support.
options SYSVMSG
options SYSVSEM
#options SEMMNI=10 # number of semaphore identifiers
#options SEMMNS=60 # number of semaphores in system
#options SEMUME=10 # max number of undo entries per process
#options SEMMNU=30 # number of undo structures in system
options SYSVSHM
# Old compat stuff; needed to run 4.3BSD Reno programs.
# Note that if COMPAT_ULTRIX is set, you lose compatibility with
# 4.3BSD Reno programs and get Ultrix compatibility instead.
# (They cannot coexist).
1998-08-21 17:46:38 +04:00
options COMPAT_VAX1K # Must be present to run pre-1.4 binaries.
options COMPAT_43
options COMPAT_09
options COMPAT_10
options COMPAT_11
options COMPAT_12
1997-12-01 19:31:29 +03:00
options COMPAT_13
1999-07-29 14:37:12 +04:00
options COMPAT_14
options COMPAT_15
options COMPAT_16
#options COMPAT_ULTRIX
2000-01-13 18:09:52 +03:00
options COMPAT_IBCS2 # DEC SVR.3 compatilibity
#options NO_INSN_EMULATE # CPU does not lack some hardware instructions.
1995-03-30 02:50:47 +04:00
options LKM
1995-03-30 02:50:47 +04:00
options USERCONF # userconf(4) support
#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
#options NEW_BUFQ_STRATEGY
# Kernel(s) to compile
config netbsd root on ? type ?
1994-08-03 00:18:46 +04:00
mainbus0 at root
# All buses; from the beginning attached to mainbus.
abus0 at mainbus0 # Master bus on VAX 8600
sbi0 at mainbus0 # SBI, master bus on 11/780.
cmi0 at mainbus0 # 11/750 internal bus.
bi0 at mainbus0 # VAX 8200
vsbus0 at mainbus0 # All VAXstations
ibus0 at mainbus0 # All MicroVAX
#nbi0 at mainbus0 # VAX 8800
#xmi0 at mainbus0 # VAX 6000
# NMI (internal bus) on VAX 88xx-series.
#cpu* at nmi0 slot? # 1-4 KA88 CPUs
#mem* at nmi0 slot?
#bi* at nmi0 slot? # BI bus adapters
# XMI on VAX 6000 (and higher)
#cpu* at xmi? node? # 1-? VAX 6000 CPUs
#mem* at xmi? node?
#bi* at xmi? node? # XMI-BI adapter
# Vsbus, the virtual VAXstation bus, and possible devices.
1999-08-14 22:44:00 +04:00
le0 at vsbus0 csr 0x200e0000 # LANCE ethernet
1999-08-28 00:04:32 +04:00
ze0 at vsbus0 csr 0x20008000 # SGEC ethernet
dz0 at vsbus0 csr 0x200a0000 # DC-367 DZ-11 lookalike ctlr
dz0 at vsbus0 csr 0x25000000 # VS4000/90 and 4000/10x serial line
si0 at vsbus0 csr 0x200c0080 # VS2000/3100 SCSI-ctlr
si1 at vsbus0 csr 0x200c0180 # VS2000/3100 SCSI-ctlr
asc0 at vsbus0 csr 0x200c0080 # VS4000/60 (or VLC) SCSI-ctlr
asc0 at vsbus0 csr 0x26000080 # VS4000/90 and 4000/10x SCSI-ctlr
smg0 at vsbus0 csr 0x200f0000 # Small monochrome display ctlr.
#clr0 at vsbus0 csr 0x30000000 # 4- or 8-bitplans color graphics
2003-10-19 19:03:25 +04:00
lcspx0 at vsbus0 csr 0x38000000 # Low Cost SPX on VS4000/90.
2000-06-27 22:50:47 +04:00
hdc0 at vsbus0 csr 0x200c0000 # HDC9224 MFM/floppy ctlr
rd* at hdc0 drive? # RD5x disks
#ry* at hdc0 drive? # RX floppies
# Ibus, the internal bus on most Microvaxen
uba0 at ibus0 # Qbus adapter
1999-08-08 15:45:01 +04:00
ze0 at ibus0 # SGEC on-board ethernet
le0 at ibus0 # LANCE ethernet (MV3400)
#shac0 at ibus0 # DSSI controller
# Devices connected at VAXBI
cpu* at bi? node? # KA820/KA825 cpu
mem* at bi? node? # Memory subsystems
#uba* at bi? node? # DWBUA BI-Unibus adapter
ni* at bi? node? # DEBNA/DEBNT ethernet adapter
kdb* at bi? node? # KDB50 MSCP disk ctlr
# CMI (VAX 11/750)
mem* at cmi? tr? # Memory subsystems
uba* at cmi? tr? # Unibus adapters
mba* at cmi? tr? # Massbus adapters
# SBI (VAX 11/780, VAX 8600)
sbi* at abus0 # VAX 8600 can have up to 4 SBI's.
mem* at sbi? tr? # Memory subsystems
uba* at sbi? tr? # Unibus adapters
mba* at sbi? tr? # Massbus adapters
# Devices on Massbus adapters
hp* at mba? drive? # RM/RP disk drives
# Devices on Unibus/Qbus adapters
uda* at uba? csr 0172150 # UDA50/RQDX?
uda* at uba? csr 0160334
mtc* at uba? csr 0174500 # Tape MSCP ctlr
#ts0 at uba? csr 0172520 # TS11/TSV05 tape.
#qd0 at uba? csr 0177400 # 4- or 8-bitplans color graphics
#qv0 at uba? csr 0177400 # Monochrome graphics
de* at uba? csr 0174510 # DELUA/DEUNA
qe* at uba? csr 0174440 # DEQNA/DELQA
2003-08-29 17:51:47 +04:00
qt* at uba? csr 0174440 # DELQA-PLUS in Turbo mode
dhu* at uba? csr 0160440 # DHU-11
#dmf* at uba? csr 0160340 # DMF-32
dz* at uba? csr 0160100 # DZ-11
dl* at uba? csr 0176500 # DL-11
rlc* at uba? csr 0174400 # RL11/RLV11 controller
2000-04-22 20:48:53 +04:00
rl* at rlc? drive? # RL01/RL02 disk drive
2003-03-23 14:02:29 +03:00
rfc0 at uba? csr 0177170 # RX01/02 controller
rf* at rfc? drive? # RX01/RX02 floppy disk drive
# MSCP devices
mscpbus* at uda?
mscpbus* at mtc?
mscpbus* at kdb?
ra* at mscpbus? drive? # MSCP disk
rx* at mscpbus? drive? # MSCP floppy
1996-07-11 03:51:53 +04:00
mt* at mscpbus? drive? # MSCP tape
# SCSI devices
scsibus* at asc?
scsibus* at si?
sd* at scsibus? target? lun?
st* at scsibus? target? lun?
cd* at scsibus? target? lun?
ch* at scsibus? target? lun?
ss* at scsibus? target? lun?
uk* at scsibus? target? lun?
# VAXstation graphics support
wsdisplay0 at smg0
2003-10-19 19:03:25 +04:00
wsdisplay0 at lcspx0
#wsdisplay0 at clr0
#wsdisplay0 at qd0
#wsdisplay0 at qv0
2000-12-02 20:18:54 +03:00
lkkbd0 at dz0 line 0
wskbd* at lkkbd? console ?
lkms0 at dz0 line 1
wsmouse* at lkms?
pseudo-device loop 1
pseudo-device pty # pseudo-terminals
pseudo-device bpfilter 8 # Not supported by de yet.
pseudo-device ipfilter # IP filter (firewall) and NAT
#pseudo-device sl 2
2002-10-01 13:37:11 +04:00
pseudo-device ppp 2
#pseudo-device pppoe # PPP over Ethernet (RFC 2516)
pseudo-device tun 2
#pseudo-device gre 2 # generic L3 over IP tunnel
pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
#pseudo-device faith 1 # IPv[46] tcp relay translation i/f
#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
2000-12-19 13:42:02 +03:00
pseudo-device vlan # IEEE 802.1q encapsulation
pseudo-device bridge # simple inter-network bridging
#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
pseudo-device tb 1
pseudo-device vnd 4
pseudo-device ccd 4
#pseudo-device cgd 4 # cryptographic disk devices
pseudo-device raid 8 # RAIDframe disk driver
options RAID_AUTOCONFIG # auto-configuration of RAID components
# Options to enable various other RAIDframe RAID types.
# options RF_INCLUDE_EVENODD=1
# options RF_INCLUDE_RAID5_RS=1
# options RF_INCLUDE_PARITYLOGGING=1
# options RF_INCLUDE_CHAINDECLUSTER=1
# options RF_INCLUDE_INTERDECLUSTER=1
# options RF_INCLUDE_PARITY_DECLUSTERING=1
# options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
pseudo-device rnd # /dev/random and in-kernel generator
#pseudo-device leds # control the leds on vaxstations.
pseudo-device clockctl # user control of clock subsystem
2003-04-26 18:10:04 +04:00
pseudo-device ksyms # /dev/ksyms