diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-24 12:48:19 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-24 12:48:19 +0000 |
commit | 4b71e6d701b98f06614cc7ec1d373255b5c82ebc (patch) | |
tree | 4b1326f3694de0ffdf1e2c6b9abbc7f11700205b /sys | |
parent | 12a3dc25a42108ed0edd0b27515e665d05a68da3 (diff) |
happy birthday
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/compile/.cvsignore | 2 | ||||
-rw-r--r-- | sys/arch/alpha/conf/LOKI | 132 |
2 files changed, 134 insertions, 0 deletions
diff --git a/sys/arch/alpha/compile/.cvsignore b/sys/arch/alpha/compile/.cvsignore index d09b918e852..06ca82ee8ba 100644 --- a/sys/arch/alpha/compile/.cvsignore +++ b/sys/arch/alpha/compile/.cvsignore @@ -6,6 +6,8 @@ GENERIC GENERIC.PROF JURA JURA.PROF +LOKI +LOKI.PROF NOSY NOSY.PROF OPAL diff --git a/sys/arch/alpha/conf/LOKI b/sys/arch/alpha/conf/LOKI new file mode 100644 index 00000000000..a0295d90ae2 --- /dev/null +++ b/sys/arch/alpha/conf/LOKI @@ -0,0 +1,132 @@ +# $OpenBSD: LOKI,v 1.1 1997/06/24 12:48:18 kstailey Exp $ +# +# LOKI, an Alpha AXPPCI33 (NoName) kernel. +# + +include "arch/alpha/conf/std.alpha" + +maxusers 8 + +# CPU Support +option DEC_AXPPCI_33 # NoName: AXPpci33, etc. + +# needs to be set per system +option TIMEZONE="5*60" # Minutes west of GMT (for param.c) +option DST=1 # Daylight savings rules (for param.c) + +# Standard system option +options DEBUG, DIAGNOSTIC # Extra kernel debugging +option KTRACE # System call tracing support + +# File system option +option FFS # Fast file system +#option QUOTA # UFS quotas + +option NFSCLIENT # Sun NFS-compatible file system client +option NFSSERVER # Sun NFS-compatible file system server + +#option CD9660 # ISO 9660 + Rock Ridge file system +#option FDESC # /dev/fd +option FIFO # POSIX fifo support (in all file systems) +option KERNFS # /kern +option MFS # memory file system +#option MSDOSFS # MS-DOS file system +#option NULLFS # mount directories on directories +#option PORTAL # call processes via the FS +option PROCFS # access the insides of procs via the FS +#option UMAPFS # NULLFS + uid and gid remapping +#option UNION # union file system + +# Networking option +option INET # Internet protocol suite +#option GATEWAY # packet forwarding +option IPFILTER # IP packet filter for security +option IPFILTER_LOG # use /dev/ipl to log IPF +#option NS # XNS +#option ISO,TPIP # OSI +#option EON # OSI tunneling over IP +#option CCITT,LLC,HDLC # X.25 + +# 4.3BSD compatibility. Should be optional, but necessary for now. +option COMPAT_43 + +# Binary compatibility with previous versions of NetBSD. +#option COMPAT_09 +option COMPAT_10 +option COMPAT_11 +option COMPAT_12 + +# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK +#option COMPAT_OSF1 + +# Loadable Kernel Modules +option LKM + +# Disable kernel security. +#option INSECURE + +# Misc. option +#option EISAVERBOSE # recognize "unknown" EISA devices +option PCIVERBOSE # recognize "unknown" PCI devices +#option TCVERBOSE # recognize "unknown" TC devices + +#config bsd swap generic +config bsd root on sd0 swap on sd0 dumps on sd0 +#config bsd root nfs swap nfs + +mainbus0 at root +cpu* at mainbus0 + +# PCI host bus adapter support +lca* at mainbus? + +# PCI bus support +pci* at lca? +pci* at ppb? + +# PCI devices +#de* at pci? dev ? function ? # 21x4[012]-based Ethernet +ed* at pci? dev ? function ? # NE2000-compat ethernet cards +ncr* at pci? dev ? function ? # NCR 53c8xx SCSI +vga* at pci? dev ? function ? # PCI VGA graphics +ppb* at pci? dev ? function ? # PCI-PCI bridges +sio* at pci? dev ? function ? # Intel PCI-ISA bridge + +# ISA/EISA bus support +#isa* at pceb? +#eisa* at pceb? +isa* at sio? + +# ISA devices +mcclock* at isa? port 0x70 +pcppi* at isa? # PC prog. periph. interface +pckbd* at pcppi? # PC keyboard (kbd port) +pms* at pcppi? # PS/2-style mouse (aux 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 +vga* at isa? # ISA (EISA: XXX) VGA +ed0 at isa? port 0x300 iomem 0xcc000 irq 10 # NE2000 Klone +#wss* at isa? port 0x530 irq 9 drq 0 # Windows Sound System + +# 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 # Berkeley Packet Filter +pseudo-device loop # network loopback +pseudo-device pty 64 # pseudo-terminals +#pseudo-device rd 1 # ramdisk +#pseudo-device sl 4 # CSLIP +#pseudo-device ppp 1 # PPP +#pseudo-device tun 2 # network tunneling over tty +pseudo-device vnd 4 # paging to files; mount disk images |