diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-20 07:29:00 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-20 07:29:00 +0000 |
commit | 5af3bb05d265d873790c830b35a511f090ede38a (patch) | |
tree | e16636b1b8d5bae356e98ff84afb75f9e78d273f /sys | |
parent | 32941b8d7a4c3bb13c7a4843dea726e37f65b723 (diff) |
My new toy
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/conf/ALATAR | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/sys/arch/alpha/conf/ALATAR b/sys/arch/alpha/conf/ALATAR new file mode 100644 index 00000000000..c962e4fd92c --- /dev/null +++ b/sys/arch/alpha/conf/ALATAR @@ -0,0 +1,103 @@ +# $OpenBSD: ALATAR,v 1.1 1997/04/20 07:28:59 tholo Exp $ +# +# AXPpci 33 kernel. Enough to get booted, etc., but not much more. + +include "arch/alpha/conf/std.alpha" + +maxusers 8 + +# CPU Support +options DEC_AXPPCI_33 # NoName: AXPpci33, etc. + +# Standard system options +options 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 MFS # Memory-based file system +options NFSSERVER # Sun NFS-compatible file system server +options NFSCLIENT # Sun NFS-compatible file system client +#option NULLFS # Loopback file system +option MSDOSFS # MS-DOS file system +#option UNION # Union file system +option CD9660 # ISO 9660 + Rock Ridge file system + +# SVR IPC +option SYSVMSG +option SYSVSEM +option SYSVSHM + +# Networking options +options INET # Internet protocol suite +option IPSEC # IP-SEC encapsulation + +# 4.3BSD compatibility. Should be optional, but necessary for now. +options COMPAT_43 + +# Binary compatibility with previous versions of NetBSD. +#options COMPAT_09 +options COMPAT_10 +options COMPAT_11 +options COMPAT_12 + +# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK +#options COMPAT_OSF1 + +# Loadable Kernel Modules +options LKM + +# Disable kernel security. +#options INSECURE + +# Misc. options +options PCIVERBOSE # recognize "unknown" PCI devices +options UCONSOLE # users can use TIOCCONS (for xconsole) + +config bsd root on sd0 swap on sd0 + +mainbus0 at root +cpu* at mainbus0 + +# PCI host bus adapter support +lca* at mainbus? + +# PCI bus support +pci* at lca? + +# PCI devices +ncr* at pci? dev ? function ? # NCR 53c8xx SCSI +sio* at pci? dev ? function ? # Intel PCI-ISA bridge +vga* at pci? dev ? function ? # PCI VGA + +# ISA/EISA bus support +isa* at sio? + +# ISA devices +mcclock* at isa? port 0x70 +pcppi* at isa? # PC prog. periph. interface +pckbd* at pcppi? # PC keyboard (kbd port) +com* at isa? port 0x3f8 irq 4 # standard serial ports +com* at isa? port 0x2f8 irq 3 +lpt* at isa? port 0x3bc irq 7 # standard parallel port +ed0 at isa? port 0x300 iomem 0xcc000 irq 10 + +# SCSI bus support +scsibus* at ncr? + +# SCSI devices +cd* at scsibus? target ? lun ? +sd* at scsibus? target ? lun ? +ss* at scsibus? target ? lun ? +st* at scsibus? target ? lun ? +uk* at scsibus? target ? lun ? + +# Workstation Console attachments +wscons* at vga? + +pseudo-device bpfilter 16 +pseudo-device loop +pseudo-device pty 64 +pseudo-device vnd 4 +pseudo-device enc 4 |