1995-12-20 03:14:10 +03:00
|
|
|
# $NetBSD: ALPHA,v 1.8 1995/12/20 00:14:10 cgd Exp $
|
1995-02-14 02:06:39 +03:00
|
|
|
#
|
|
|
|
# Alpha kernel with all the options you'd want, and more.
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
include "std.alpha"
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
maxusers 8
|
|
|
|
|
|
|
|
# does not really do anything anymore, but this replaces "ident GENERIC"
|
|
|
|
options GENERIC
|
|
|
|
|
|
|
|
# CPU Support
|
1995-06-27 04:54:55 +04:00
|
|
|
options DEC_3000_500 # Flamingo etc: 3000/[4-9]00*
|
|
|
|
options DEC_3000_300 # Pelican etc: 3000/300*
|
1995-11-23 05:33:17 +03:00
|
|
|
options DEC_2100_A50 # Avanti etc: AlphaStation 400, 200, etc.
|
|
|
|
options DEC_KN20AA # KN20AA: AlphaStation 600
|
|
|
|
options DEC_AXPPCI_33 # NoName: AXPpci33, etc.
|
|
|
|
#options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150)
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
# needs to be set per system
|
|
|
|
options TIMEZONE="5*60" # Minutes west of GMT (for param.c)
|
|
|
|
options DST=1 # Daylight savings rules (for param.c)
|
|
|
|
|
|
|
|
# Standard system options
|
|
|
|
options SWAPPAGER, VNODEPAGER, DEVPAGER # Paging (mandatory)
|
|
|
|
options DEBUG, DIAGNOSTIC # Extra kernel debugging
|
|
|
|
options KTRACE # System call tracing support
|
|
|
|
|
|
|
|
# File system options
|
|
|
|
options FIFO # POSIX fifo support (in all file systems)
|
|
|
|
options FFS # Fast file system
|
|
|
|
options QUOTA # User and group quotas for the FFS
|
|
|
|
options MFS # Memory-based file system
|
|
|
|
options LFS # Log-structured file system
|
|
|
|
options CD9660 # ISO-9660 CD-ROM FS (w/RockRidge extensions)
|
|
|
|
options MSDOSFS # MS-DOS-compatible file system
|
|
|
|
options ADOSFS # AmigaDOS-compatible file system
|
|
|
|
options NFSSERVER # Sun NFS-compatible file system server
|
|
|
|
options NFSCLIENT # Sun NFS-compatible file system client
|
|
|
|
options NULLFS # Null file system layer
|
|
|
|
options KERNFS # Kernel variable file system (/kern)
|
|
|
|
options FDESC # File descriptor file system (/dev/fd)
|
|
|
|
options PORTAL # Portal file system
|
|
|
|
options UMAP # User-mapping file system layer
|
|
|
|
options PROCFS # Process file system (/proc)
|
|
|
|
|
|
|
|
# Networking options
|
|
|
|
options INET # Internet protocol suite
|
|
|
|
options NS # Xerox NS protocol suite
|
|
|
|
options ISO,TPIP,EON # ISO protocol suite
|
|
|
|
options CCITT,LLC,HDLC # CCITT protocol suite
|
|
|
|
options GATEWAY # packet forwarding and more mbuf space
|
|
|
|
|
|
|
|
# Compatibility with 4.2BSD implementation of TCP/IP. Not suggested.
|
|
|
|
#options TCP_COMPAT_42
|
|
|
|
|
|
|
|
# 4.3BSD compatibility. Should be optional, but necessary for now.
|
|
|
|
options COMPAT_43
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# Binary compatibility with previous versions of NetBSD.
|
1995-02-14 02:06:39 +03:00
|
|
|
#options COMPAT_09
|
1995-11-23 05:33:17 +03:00
|
|
|
options COMPAT_10
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-08-03 04:09:17 +04:00
|
|
|
# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK
|
|
|
|
#options COMPAT_OSF1
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
# System V-like message queues
|
|
|
|
options SYSVMSG
|
|
|
|
|
|
|
|
# System V-like semaphores
|
|
|
|
options SYSVSEM
|
|
|
|
|
|
|
|
# System V-like shared memory
|
|
|
|
options SYSVSHM
|
|
|
|
#options SHMMAXPGS=1024 # 1024 pages is the default
|
|
|
|
|
1995-06-27 04:54:55 +04:00
|
|
|
# Loadable Kernel Modules
|
1995-02-14 02:06:39 +03:00
|
|
|
options LKM
|
|
|
|
|
1995-06-27 04:54:55 +04:00
|
|
|
# Disable kernel security.
|
|
|
|
#options INSECURE
|
|
|
|
|
|
|
|
# Misc. options
|
1995-11-23 05:33:17 +03:00
|
|
|
options PCIVERBOSE # recognize "unknown" PCI devices
|
1995-06-27 04:54:55 +04:00
|
|
|
|
1995-03-08 03:38:44 +03:00
|
|
|
config netbsd swap generic
|
|
|
|
#config netbsd root on sd0 swap on sd0
|
1995-02-14 02:06:39 +03:00
|
|
|
#config netbsd root nfs swap nfs
|
|
|
|
|
1995-06-27 04:54:55 +04:00
|
|
|
mainbus0 at root
|
|
|
|
cpu* at mainbus0
|
|
|
|
|
1995-12-20 03:14:10 +03:00
|
|
|
# TurboChannel host bus adapter support
|
|
|
|
tcasic* at mainbus0
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# TurboChannel bus support
|
1995-12-20 03:14:10 +03:00
|
|
|
tc* at tcasic?
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
# TurboChannel devices
|
1995-12-20 03:14:10 +03:00
|
|
|
ioasic0 at tc? slot ? offset ?
|
|
|
|
clock0 at ioasic? offset ?
|
|
|
|
le0 at ioasic? offset ?
|
|
|
|
scc0 at ioasic? offset ?
|
|
|
|
scc1 at ioasic? offset ?
|
1995-02-14 02:06:39 +03:00
|
|
|
tcds0 at tc? slot ? offset ?
|
|
|
|
esp0 at tcds? slot ?
|
|
|
|
esp1 at tcds? slot ?
|
|
|
|
#sfb* at tc? slot ? offset ?
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# PCI host bus adapter support
|
1995-06-27 04:54:55 +04:00
|
|
|
apecs* at mainbus?
|
1995-11-23 05:33:17 +03:00
|
|
|
cia* at mainbus?
|
|
|
|
lca* at mainbus?
|
1995-06-27 04:54:55 +04:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# PCI bus support
|
1995-06-27 04:54:55 +04:00
|
|
|
pci* at apecs?
|
1995-11-23 05:33:17 +03:00
|
|
|
pci* at cia?
|
|
|
|
pci* at lca?
|
|
|
|
pci* at ppb?
|
1995-06-27 04:54:55 +04:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# PCI devices
|
1995-06-27 04:54:55 +04:00
|
|
|
de* at pci?
|
1995-11-23 05:33:17 +03:00
|
|
|
ncr* at pci?
|
|
|
|
pceb* at pci?
|
|
|
|
pcivga* at pci?
|
|
|
|
ppb* at pci?
|
1995-06-27 04:54:55 +04:00
|
|
|
sio* at pci?
|
1995-11-23 05:33:17 +03:00
|
|
|
tga* at pci?
|
|
|
|
|
|
|
|
# ISA/EISA bus support
|
|
|
|
isa* at pceb?
|
|
|
|
eisa* at pceb?
|
|
|
|
isa* at sio?
|
1995-06-27 04:54:55 +04:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# ISA devices
|
1995-06-27 04:54:55 +04:00
|
|
|
clock0 at isa? port 0x70
|
1995-11-23 05:33:17 +03:00
|
|
|
pckbd0 at isa? port 0x60 irq 1 # PC-ish ISA keyboard
|
|
|
|
#pms0 at isa? port 0x60 irq 12 # PS/2 auxiliary
|
|
|
|
com0 at isa? port 0x3f8 irq 4 # standard serial ports
|
1995-06-27 04:54:55 +04:00
|
|
|
com1 at isa? port 0x2f8 irq 3
|
|
|
|
lpt0 at isa? port 0x3bc irq 7 # standard parallel port
|
1995-11-23 05:33:17 +03:00
|
|
|
#wss0 at isa? port 0x530 irq 9 drq 0 # Windows Sound System
|
1995-06-27 04:54:55 +04:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# SCSI bus support
|
1995-06-27 04:54:55 +04:00
|
|
|
scsibus* at esp?
|
1995-11-23 05:33:17 +03:00
|
|
|
scsibus* at ncr?
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
# SCSI devices
|
1995-04-22 16:46:06 +04:00
|
|
|
sd* at scsibus? target ? lun ?
|
|
|
|
st* at scsibus? target ? lun ?
|
|
|
|
cd* at scsibus? target ? lun ?
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
pseudo-device bpfilter
|
|
|
|
pseudo-device loop
|
|
|
|
pseudo-device ppp
|
|
|
|
pseudo-device pty
|
|
|
|
pseudo-device sl
|
|
|
|
pseudo-device tun
|
1995-02-27 19:36:07 +03:00
|
|
|
pseudo-device vnd
|