diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sys/arch/alpha/conf/ALPHA |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/alpha/conf/ALPHA')
-rw-r--r-- | sys/arch/alpha/conf/ALPHA | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/sys/arch/alpha/conf/ALPHA b/sys/arch/alpha/conf/ALPHA new file mode 100644 index 00000000000..63ead133afd --- /dev/null +++ b/sys/arch/alpha/conf/ALPHA @@ -0,0 +1,134 @@ +# $NetBSD: ALPHA,v 1.6 1995/08/03 00:09:17 cgd Exp $ +# +# Alpha kernel with all the options you'd want, and more. + +machine alpha + +makeoptions DEBUG="-g" + +maxusers 8 + +# does not really do anything anymore, but this replaces "ident GENERIC" +options GENERIC + +# CPU Support +options DEC_3000_500 # Flamingo etc: 3000/[4-9]00* +options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150) +options DEC_3000_300 # Pelican etc: 3000/300* +options DEC_2100_A50 # "Avanti": AlphaStation 400 4/233 + +# 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 + +# NetBSD compatibility. Mostly meaningless on the Alpha. +#options COMPAT_09 +#options COMPAT_10 + +# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK +#options COMPAT_OSF1 + +# 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 + +# Loadable Kernel Modules +options LKM + +# Disable kernel security. +#options INSECURE + +# Misc. options +options PCIVERBOSE # recognize "unknown" PCI devices + +config netbsd swap generic +#config netbsd root on sd0 swap on sd0 +#config netbsd root nfs swap nfs + +mainbus0 at root + +cpu* at mainbus0 + +tc* at mainbus0 +asic0 at tc? slot ? offset ? +clock0 at asic? offset ? +le0 at asic? offset ? +scc0 at asic? offset ? +scc1 at asic? offset ? +tcds0 at tc? slot ? offset ? +esp0 at tcds? slot ? +esp1 at tcds? slot ? +#sfb* at tc? slot ? offset ? + +apecs* at mainbus? +#lca* at cpu? + +pci* at apecs? +#pci* at lca? + +de* at pci? +sio* at pci? +#ncr* at pci? + +isa0 at sio? +clock0 at isa? port 0x70 +#com0 at isa? port 0x3f8 irq 4 # standard serial ports +com1 at isa? port 0x2f8 irq 3 +lpt0 at isa? port 0x3bc irq 7 # standard parallel port + +scsibus* at esp? +#scsibus* at ncr? + +sd* at scsibus? target ? lun ? +st* at scsibus? target ? lun ? +cd* at scsibus? target ? lun ? + +pseudo-device bpfilter +pseudo-device loop +pseudo-device ppp +pseudo-device pty +pseudo-device sl +pseudo-device tun +pseudo-device vnd |