GENERIC revision 1.21 1 # $NetBSD: GENERIC,v 1.21 1996/08/21 16:25:07 cgd Exp $
2 #
3 # Generic Alpha kernel. Enough to get booted, etc., but not much more.
4
5 include "std.alpha"
6
7 maxusers 8
8
9 # CPU Support
10 options DEC_3000_500 # Flamingo etc: 3000/[4-9]00*
11 options DEC_3000_300 # Pelican etc: 3000/300*
12 options DEC_2100_A50 # Avanti etc: AlphaStation 400, 200, etc.
13 options DEC_KN20AA # KN20AA: AlphaStation 600
14 options DEC_AXPPCI_33 # NoName: AXPpci33, etc.
15 #options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150)
16
17 # needs to be set per system
18 options TIMEZONE="5*60" # Minutes west of GMT (for param.c)
19 options DST=1 # Daylight savings rules (for param.c)
20
21 # Standard system options
22 options SWAPPAGER, VNODEPAGER, DEVPAGER # Paging (mandatory)
23 options DEBUG, DIAGNOSTIC # Extra kernel debugging
24 options KTRACE # System call tracing support
25
26 # File system options
27 options FIFO # POSIX fifo support (in all file systems)
28 options FFS # Fast file system
29 options MFS # Memory-based file system
30 options NFSSERVER # Sun NFS-compatible file system server
31 options NFSCLIENT # Sun NFS-compatible file system client
32
33 # Networking options
34 options INET # Internet protocol suite
35
36 # 4.3BSD compatibility. Should be optional, but necessary for now.
37 options COMPAT_43
38
39 # Binary compatibility with previous versions of NetBSD.
40 #options COMPAT_09
41 options COMPAT_10
42 options COMPAT_11
43 options COMPAT_12
44
45 # OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK
46 #options COMPAT_OSF1
47
48 # Loadable Kernel Modules
49 options LKM
50
51 # Disable kernel security.
52 #options INSECURE
53
54 # Misc. options
55 options PCIVERBOSE # recognize "unknown" PCI devices
56
57 config netbsd swap generic
58 #config netbsd root on sd0 swap on sd0
59 #config netbsd root nfs swap nfs
60
61 mainbus0 at root
62 cpu* at mainbus0
63
64 # TurboChannel host bus adapter support
65 tcasic* at mainbus0
66
67 # TurboChannel bus support
68 tc* at tcasic?
69
70 # TurboChannel devices
71 ioasic0 at tc? slot ? offset ?
72 mcclock0 at ioasic? offset ?
73 le* at ioasic? offset ?
74 scc0 at ioasic? offset ?
75 scc1 at ioasic? offset ?
76 tcds0 at tc? slot ? offset ?
77 esp0 at tcds? slot ?
78 esp1 at tcds? slot ?
79 cfb* at tc? slot ? offset ?
80 sfb* at tc? slot ? offset ?
81 le* at tc? slot ? offset ?
82 fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards
83
84 # PCI host bus adapter support
85 apecs* at mainbus?
86 cia* at mainbus?
87 lca* at mainbus?
88
89 # PCI bus support
90 pci* at apecs?
91 pci* at cia?
92 pci* at lca?
93 pci* at ppb?
94
95 # PCI devices
96 #ahc* at pci? dev ? function ? # AHA-28xx SCSI (NOT 64-BIT)
97 de* at pci? dev ? function ? # 21x4[012]-based Ethernet
98 en* at pci? dev ? function ? # ENI PCI ATM (untested)
99 ep* at pci? dev ? function ? # 3COM 3c59x (untested)
100 fpa* at pci? dev ? function ? # DEC DEFPA FDDI cards
101 le* at pci? dev ? function ? # PCI LANCE Ethernet (untested)
102 ncr* at pci? dev ? function ? # NCR 53c8xx SCSI
103 pceb* at pci? dev ? function ? # Intel PCI-EISA brige
104 pcivga* at pci? dev ? function ? # PCI VGA graphics
105 ppb* at pci? dev ? function ? # PCI-PCI bridges
106 sio* at pci? dev ? function ? # Intel PCI-ISA bridge
107 tga* at pci? dev ? function ? # DEC ZLXp-E[123] graphics
108
109 # ISA/EISA bus support
110 isa* at pceb?
111 eisa* at pceb?
112 isa* at sio?
113
114 # ISA devices
115 mcclock0 at isa? port 0x70
116 pckbd0 at isa? port 0x60 irq 1 # PC-ish ISA keyboard
117 pms0 at isa? port 0x60 irq 12 # PS/2 auxiliary
118 com0 at isa? port 0x3f8 irq 4 # standard serial ports
119 com1 at isa? port 0x2f8 irq 3
120 lpt0 at isa? port 0x3bc irq 7 # standard parallel port
121 #wss0 at isa? port 0x530 irq 9 drq 0 # Windows Sound System
122
123 # EISA devices
124 fea* at eisa? slot ? # DEC DEFEA FDDI cards
125
126 # SCSI bus support
127 scsibus* at esp?
128 scsibus* at ncr?
129
130 # SCSI devices
131 sd* at scsibus? target ? lun ?
132 st* at scsibus? target ? lun ?
133 cd* at scsibus? target ? lun ?
134
135 # Workstation Console attachments
136 wscons* at cfb?
137 wscons* at pcivga?
138 wscons* at sfb?
139 wscons* at tga?
140
141 pseudo-device bpfilter 16
142 pseudo-device loop
143 pseudo-device pty 64
144 pseudo-device sl 4
145 pseudo-device vnd 4
146