GENERIC revision 1.40
1# $NetBSD: GENERIC,v 1.40 1997/02/27 01:21:42 thorpej Exp $ 2# 3# Generic Alpha kernel. Enough to get booted, etc., but not much more. 4 5include "arch/alpha/conf/std.alpha" 6 7maxusers 8 8 9# set kernel load address a bit higher to allow kernel to be netbooted. 10# if not netbooting, the "makeoptions LOADADDRESS" line can be commented 11# out to save a fair chunk (~850k) of RAM. 12makeoptions LOADADDRESS="fffffc0000300000" 13 14# CPU Support 15options DEC_3000_500 # Flamingo etc: 3000/[4-9]00* 16options DEC_3000_300 # Pelican etc: 3000/300* 17options DEC_2100_A50 # Avanti etc: AlphaStation 400, 200, etc. 18options DEC_KN20AA # KN20AA: AlphaStation 600 19options DEC_AXPPCI_33 # NoName: AXPpci33, etc. 20options DEC_EB164 # EB164: AlphaPC 164 21#options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150) 22 23# Standard system options 24options KTRACE # System call tracing support 25 26# Diagnostic/debugging support options 27options DIAGNOSTIC # Cheap kernel consistency checks 28options DEBUG # Expensive debugging checks/support 29 30# File systems 31file-system FFS # Fast file system 32file-system MFS # Memory-based file system 33file-system CD9660 # ISO-9660 CD-ROM FS (w/RockRidge extensions) 34file-system MSDOSFS # MS-DOS-compatible file system 35file-system NFS # Sun NFS-compatible file system client 36 37# File system options 38options FIFO # POSIX fifo support (in all file systems) 39options NFSSERVER # Sun NFS-compatible file system server 40 41# Networking options 42options INET # Internet protocol suite 43 44# 4.3BSD compatibility. Should be optional, but necessary for now. 45options COMPAT_43 46 47# Binary compatibility with previous versions of NetBSD. 48#options COMPAT_09 49options COMPAT_10 50options COMPAT_11 51options COMPAT_12 52 53# System V-like shared memory 54options SYSVSHM 55#options SHMMAXPGS=1024 # 1024 pages is the default 56 57# Loadable Kernel Modules 58options LKM 59 60# Disable kernel security. 61#options INSECURE 62 63# Misc. options 64options EISAVERBOSE # recognize "unknown" EISA devices 65options PCIVERBOSE # recognize "unknown" PCI devices 66options TCVERBOSE # recognize "unknown" TC devices 67options UCONSOLE # users can use TIOCCONS (for xconsole) 68 69config netbsd root on ? type ? 70#config netbsd root on sd0 type ffs swap on sd0 71#config netbsd root on ? type nfs 72 73mainbus0 at root 74cpu* at mainbus0 75 76# TurboChannel host bus adapter support 77tcasic* at mainbus0 78 79# TurboChannel bus support 80tc* at tcasic? 81 82# TurboChannel devices 83ioasic* at tc? slot ? offset ? 84mcclock* at ioasic? offset ? 85le* at ioasic? offset ? 86scc0 at ioasic? offset ? 87scc1 at ioasic? offset ? 88tcds0 at tc? slot ? offset ? 89asc0 at tcds? slot ? 90asc1 at tcds? slot ? 91cfb* at tc? slot ? offset ? 92sfb* at tc? slot ? offset ? 93le* at tc? slot ? offset ? 94fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards 95 96# PCI host bus adapter support 97apecs* at mainbus? 98cia* at mainbus? 99lca* at mainbus? 100 101# PCI bus support 102pci* at apecs? 103pci* at cia? 104pci* at lca? 105pci* at ppb? 106 107# PCI devices 108#ahc* at pci? dev ? function ? # AHA-28xx SCSI (NOT 64-BIT) 109de* at pci? dev ? function ? # 21x4[012]-based Ethernet 110en* at pci? dev ? function ? # ENI PCI ATM (untested) 111ep* at pci? dev ? function ? # 3COM 3c59x (untested) 112fpa* at pci? dev ? function ? # DEC DEFPA FDDI cards 113le* at pci? dev ? function ? # PCI LANCE Ethernet (untested) 114ncr* at pci? dev ? function ? # NCR 53c8xx SCSI 115pceb* at pci? dev ? function ? # Intel PCI-EISA brige 116vga* at pci? dev ? function ? # PCI VGA graphics 117ppb* at pci? dev ? function ? # PCI-PCI bridges 118sio* at pci? dev ? function ? # Intel PCI-ISA bridge 119tga* at pci? dev ? function ? # DEC ZLXp-E[123] graphics 120 121# ISA/EISA bus support 122isa* at pceb? 123eisa* at pceb? 124isa* at sio? 125 126# ISA devices 127mcclock* at isa? port 0x70 128pcppi* at isa? # PC prog. periph. interface 129pckbd* at pcppi? # PC keyboard (kbd port) 130pms* at pcppi? # PS/2-style mouse (aux port) 131com* at isa? port 0x3f8 irq 4 # standard serial ports 132com* at isa? port 0x2f8 irq 3 133lpt* at isa? port 0x3bc irq 7 # standard parallel port 134vga* at isa? # ISA (EISA: XXX) VGA 135#wss* at isa? port 0x530 irq 9 drq 0 # Windows Sound System 136 137# EISA devices 138fea* at eisa? slot ? # DEC DEFEA FDDI cards 139 140# SCSI bus support 141scsibus* at asc? 142scsibus* at ncr? 143 144# SCSI devices 145cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 146sd* at scsibus? target ? lun ? # SCSI disk drives 147st* at scsibus? target ? lun ? # SCSI tape drives 148 149# Workstation Console attachments 150wscons* at cfb? 151wscons* at vga? 152wscons* at sfb? 153wscons* at tga? 154 155pseudo-device bpfilter 16 156pseudo-device ccd 4 157pseudo-device loop 1 158pseudo-device md 1 159pseudo-device ppp 4 160pseudo-device pty 64 161pseudo-device sl 4 162pseudo-device vnd 4 163