GENERIC revision 1.49 1 1.49 riastrad # $NetBSD: GENERIC,v 1.49 2025/03/27 12:22:43 riastradh Exp $
2 1.1 skrll #
3 1.1 skrll # GENERIC machine description file
4 1.1 skrll #
5 1.1 skrll # This machine description file is used to generate the default NetBSD
6 1.1 skrll # kernel. The generic kernel does not include all options, subsystems
7 1.1 skrll # and device drivers, but should be useful for most applications.
8 1.1 skrll #
9 1.1 skrll # The machine description file can be customised for your specific
10 1.1 skrll # machine to reduce the kernel size and improve its performance.
11 1.1 skrll #
12 1.1 skrll # For further information on compiling NetBSD kernels, see the config(8)
13 1.1 skrll # man page.
14 1.1 skrll #
15 1.1 skrll # For further information on hardware support for this architecture, see
16 1.1 skrll # the intro(4) man page. For further information about kernel options
17 1.1 skrll # for this architecture, see the options(4) man page. For an explanation
18 1.1 skrll # of each device driver in this file see the section 4 man page for the
19 1.1 skrll # device.
20 1.1 skrll
21 1.1 skrll include "arch/hppa/conf/std.hppa"
22 1.1 skrll
23 1.1 skrll options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.1 skrll options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
25 1.1 skrll
26 1.49 riastrad #ident "GENERIC-$Revision: 1.49 $"
27 1.1 skrll
28 1.1 skrll maxusers 32 # estimated number of users
29 1.1 skrll
30 1.1 skrll # CPU support. At least one is REQUIRED.
31 1.1 skrll options HP7000_CPU # PCX, PCX-S
32 1.1 skrll options HP7100_CPU,HP7150_CPU # PCX-T
33 1.1 skrll options HP7100LC_CPU # PCX-L
34 1.1 skrll options HP7200_CPU,HP7250_CPU # PCX-T'
35 1.1 skrll options HP7300LC_CPU # PCX-L2
36 1.1 skrll options HP8000_CPU # PCX-U (in 32bit mode)
37 1.1 skrll options HP8200_CPU # PCX-V/U+ (in 32bit mode)
38 1.1 skrll options HP8500_CPU # PCX-W (in 32bit mode)
39 1.1 skrll options HP8600_CPU # PCX-W+ (in 32bit mode)
40 1.1 skrll options HP8700_CPU # PCX-W2 (in 32bit mode)
41 1.1 skrll
42 1.1 skrll # CPU-related options.
43 1.1 skrll options USELEDS # blink 'em
44 1.1 skrll
45 1.1 skrll # delay between "rebooting ..." message and hardware reset, in milliseconds
46 1.1 skrll #options CPURESET_DELAY=2000
47 1.1 skrll
48 1.1 skrll # Standard system options
49 1.1 skrll
50 1.1 skrll options INSECURE # disable kernel security levels
51 1.1 skrll
52 1.1 skrll options NTP # NTP phase/frequency locked loop
53 1.1 skrll
54 1.1 skrll options KTRACE # system call tracing via ktrace(1)
55 1.1 skrll
56 1.1 skrll options SYSVMSG # System V-like message queues
57 1.1 skrll options SYSVSEM # System V-like semaphores
58 1.1 skrll options SYSVSHM # System V-like memory sharing
59 1.1 skrll
60 1.33 skrll options MODULAR # new style module(7) framework
61 1.33 skrll options MODULAR_DEFAULT_AUTOLOAD
62 1.33 skrll
63 1.1 skrll options USERCONF # userconf(4) support
64 1.1 skrll
65 1.17 sevan # Alternate buffer queue strategies for better responsiveness under high
66 1.17 sevan # disk I/O load.
67 1.1 skrll #options BUFQ_READPRIO
68 1.27 sevan options BUFQ_PRIOCSCAN
69 1.1 skrll
70 1.1 skrll # Diagnostic/debugging support options
71 1.1 skrll #options DIAGNOSTIC # expensive kernel consistency checks
72 1.1 skrll #options DEBUG # expensive debugging checks/support
73 1.1 skrll options DDB # in-kernel debugger
74 1.1 skrll options DDB_HISTORY_SIZE=512 # enable history editing in DDB
75 1.1 skrll #options KGDB # remote debugger
76 1.1 skrll #options KGDB_DEVNAME="\"com\"",KGDBADDR=0xf0822000,KGDBRATE=9600
77 1.1 skrll #makeoptions DEBUG="-g" # compile full symbol table
78 1.1 skrll
79 1.1 skrll # Compatibility options
80 1.16 christos include "conf/compat_netbsd20.config"
81 1.1 skrll
82 1.1 skrll #options COMPAT_LINUX # binary compatibility with Linux
83 1.37 nia #options COMPAT_OSSAUDIO # binary compatibility with Linux
84 1.1 skrll
85 1.1 skrll # File systems
86 1.1 skrll file-system FFS # UFS
87 1.1 skrll file-system EXT2FS # second extended file system (linux)
88 1.1 skrll file-system LFS # log-structured file system
89 1.1 skrll file-system MFS # memory file system
90 1.1 skrll file-system NFS # Network File System client
91 1.1 skrll file-system NTFS # Windows/NT file system (experimental)
92 1.1 skrll file-system CD9660 # ISO 9660 + Rock Ridge file system
93 1.1 skrll file-system MSDOSFS # MS-DOS file system
94 1.1 skrll file-system FDESC # /dev/fd
95 1.1 skrll file-system KERNFS # /kern
96 1.1 skrll file-system NULLFS # loopback file system
97 1.1 skrll file-system OVERLAY # overlay file system
98 1.39 skrll file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
99 1.1 skrll file-system PROCFS # /proc
100 1.1 skrll file-system UMAPFS # NULLFS + uid and gid remapping
101 1.1 skrll file-system UNION # union file system
102 1.39 skrll file-system CODA # Coda File System; also needs vcoda (below)
103 1.39 skrll file-system PTYFS # /dev/pts/N support
104 1.39 skrll file-system TMPFS # Efficient memory file-system
105 1.39 skrll #file-system UDF # experimental - OSTA UDF CD/DVD file-system
106 1.1 skrll
107 1.1 skrll # File system options
108 1.40 simonb #options FFS_EI # FFS Endian Independent support
109 1.40 simonb #options FFS_NO_SNAPSHOT # No FFS snapshot support
110 1.1 skrll options QUOTA # legacy UFS quotas
111 1.1 skrll options QUOTA2 # new, in-filesystem UFS quotas
112 1.40 simonb options UFS_DIRHASH # UFS Large Directory Hashing
113 1.40 simonb options UFS_EXTATTR # Extended attribute support for UFS1
114 1.1 skrll options WAPBL # File system journaling support
115 1.40 simonb options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental
116 1.40 simonb options NFSSERVER # Network File System server
117 1.1 skrll
118 1.1 skrll # Networking options
119 1.1 skrll #options GATEWAY # packet forwarding
120 1.1 skrll options INET # IP + ICMP + TCP + UDP
121 1.1 skrll options INET6 # IPV6
122 1.1 skrll #options IPSEC # IP security
123 1.1 skrll #options IPSEC_DEBUG # debug for IP security
124 1.1 skrll #options MROUTING # IP multicast routing
125 1.1 skrll #options PIM # Protocol Independent Multicast
126 1.1 skrll #options NETATALK # AppleTalk networking protocols
127 1.1 skrll options PPP_BSDCOMP # BSD-Compress compression support for PPP
128 1.1 skrll options PPP_DEFLATE # Deflate compression support for PPP
129 1.1 skrll options PPP_FILTER # Active filter support for PPP (requires bpf)
130 1.1 skrll #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
131 1.1 skrll
132 1.1 skrll #options ALTQ # Manipulate network interfaces' output queues
133 1.1 skrll #options ALTQ_BLUE # Stochastic Fair Blue
134 1.1 skrll #options ALTQ_CBQ # Class-Based Queueing
135 1.1 skrll #options ALTQ_CDNR # Diffserv Traffic Conditioner
136 1.1 skrll #options ALTQ_FIFOQ # First-In First-Out Queue
137 1.1 skrll #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
138 1.1 skrll #options ALTQ_HFSC # Hierarchical Fair Service Curve
139 1.1 skrll #options ALTQ_LOCALQ # Local queueing discipline
140 1.1 skrll #options ALTQ_PRIQ # Priority Queueing
141 1.1 skrll #options ALTQ_RED # Random Early Detection
142 1.1 skrll #options ALTQ_RIO # RED with IN/OUT
143 1.1 skrll #options ALTQ_WFQ # Weighted Fair Queueing
144 1.1 skrll
145 1.1 skrll # These options enable verbose messages for several subsystems.
146 1.1 skrll # Warning, these may compile large string tables into the kernel!
147 1.1 skrll options GSCVERBOSE # verbose GSC device autoconfig messages
148 1.1 skrll options PCIVERBOSE # verbose PCI device autoconfig messages
149 1.1 skrll options EISAVERBOSE # verbose EISA device autoconfig messages
150 1.1 skrll options MIIVERBOSE # verbose PHY autoconfig messages
151 1.1 skrll options SCSIVERBOSE # human readable SCSI error messages
152 1.1 skrll
153 1.1 skrll options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
154 1.1 skrll
155 1.1 skrll #
156 1.1 skrll # wscons options
157 1.1 skrll #
158 1.1 skrll # builtin terminal emulations
159 1.1 skrll #options WSEMUL_SUN # sun terminal emulation
160 1.1 skrll options WSEMUL_VT100 # VT100 / VT220 emulation
161 1.1 skrll # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
162 1.1 skrll options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
163 1.1 skrll #options WS_DEFAULT_FG=WSCOL_WHITE
164 1.1 skrll #options WS_DEFAULT_BG=WSCOL_BLACK
165 1.1 skrll #options WS_DEFAULT_COLATTR=""
166 1.1 skrll #options WS_DEFAULT_MONOATTR=""
167 1.1 skrll options WS_KERNEL_FG=WSCOL_GREEN
168 1.1 skrll #options WS_KERNEL_BG=WSCOL_BLACK
169 1.1 skrll #options WS_KERNEL_COLATTR=""
170 1.1 skrll #options WS_KERNEL_MONOATTR=""
171 1.1 skrll # customization of console border color
172 1.1 skrll options WSDISPLAY_CUSTOM_BORDER # border customization from wsconsctl(8)
173 1.1 skrll #options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color
174 1.1 skrll # compatibility to other console drivers
175 1.1 skrll options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
176 1.1 skrll options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
177 1.1 skrll options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
178 1.1 skrll options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
179 1.1 skrll # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
180 1.1 skrll #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
181 1.1 skrll # allocate a number of virtual screens at autoconfiguration time
182 1.1 skrll #options WSDISPLAY_DEFAULTSCREENS=4
183 1.1 skrll # use a large software cursor that doesn't blink
184 1.1 skrll options PCDISPLAY_SOFTCURSOR
185 1.1 skrll # modify the screen type of the console; defaults to "80x25"
186 1.1 skrll #options VGA_CONSOLE_SCREENTYPE="\"80x24\""
187 1.1 skrll # work around a hardware bug that loaded fonts don't work; found on ATI cards
188 1.1 skrll #options VGA_CONSOLE_ATI_BROKEN_FONTSEL
189 1.1 skrll # console scrolling support.
190 1.1 skrll #options WSDISPLAY_SCROLLSUPPORT
191 1.1 skrll # enable VGA raster mode capable of displaying multilingual text on console
192 1.1 skrll #options VGA_RASTERCONSOLE
193 1.1 skrll
194 1.1 skrll # Kernel root file system and dump configuration.
195 1.1 skrll config netbsd root on ? type ?
196 1.1 skrll #config netbsd root on sd0a type ffs
197 1.1 skrll #config netbsd root on ? type nfs
198 1.1 skrll
199 1.1 skrll #
200 1.1 skrll # Device configuration
201 1.1 skrll #
202 1.1 skrll
203 1.1 skrll mainbus0 at root
204 1.1 skrll
205 1.1 skrll # CPU and memory - DO NOT REMOVE THESE
206 1.1 skrll cpu* at mainbus0 irq 31 # HP PA-RISC CPU
207 1.1 skrll mem* at mainbus0 # /dev/*mem and memory controller
208 1.1 skrll
209 1.1 skrll # Coprocessor/SFU Support
210 1.1 skrll #fpu* at mainbus0 # HP PA-RISC fpu (iv N/A)
211 1.18 dholland #pmu* at mainbus0 # HP PA-RISC performance monitor unit (iv 29)
212 1.1 skrll
213 1.1 skrll # Miscellaneous
214 1.1 skrll pdc0 at mainbus0 # PDC/IODC wrapper for boot console
215 1.1 skrll power0 at mainbus0 # power/fail manager
216 1.1 skrll lcd0 at mainbus0 # LCD
217 1.1 skrll
218 1.1 skrll # Basic Bus Support
219 1.1 skrll lasi0 at mainbus0 irq 28 # LASI host adapter
220 1.1 skrll lasi0 at phantomas0 irq 28 # LASI on [AB]*
221 1.1 skrll lasi0 at uturn? irq 28 # LASI on [CJ]*
222 1.1 skrll lasi1 at mainbus0 irq 27 # 712 GIO card
223 1.1 skrll asp* at mainbus0 irq 28 # this one comes w/ Viper and LEDs
224 1.1 skrll wax* at mainbus0 # Wax GSC to GSC Bus Adapter
225 1.1 skrll mongoose* at mainbus0 # EISA Bus Adapter ( i82350 or TI??? )
226 1.1 skrll #vmeb* at mainbus0 irq ? # VME bus adapter
227 1.1 skrll phantomas* at mainbus0 # Phantom PseudoBC GSC+ Port
228 1.1 skrll
229 1.1 skrll lasi* at phantomas? # LASI on [ABCJ?]*
230 1.1 skrll dino* at phantomas? # PCI bus bridge
231 1.1 skrll wax* at phantomas? # Wax GSC to GSC Bus Adapter
232 1.1 skrll
233 1.1 skrll # GSC bus support
234 1.1 skrll gsc* at lasi? # 712
235 1.1 skrll gsc* at asp? # 7xx (old)
236 1.1 skrll gsc* at wax? # {725,715}/{64,80,100}, C*, B*, J*
237 1.1 skrll
238 1.1 skrll # Wax GSC to EISA Bus Adapter
239 1.1 skrll #weisa* at mainbus0 # 7xx
240 1.1 skrll #weisa* at gsc? # C*, B*
241 1.1 skrll
242 1.1 skrll # Uturn/U2 IOA
243 1.1 skrll uturn0 at mainbus0 # U2/UTurn Runway IOA
244 1.1 skrll uturn1 at mainbus0
245 1.1 skrll lasi* at uturn? # LASI on [CJ]*
246 1.1 skrll dino* at uturn? # PCI bus bridge
247 1.1 skrll #wax* at uturn? # Wax on C*
248 1.1 skrll
249 1.1 skrll #gecko* at uturn? # GeckoBOA
250 1.1 skrll #lasi* at gecko? # LASI
251 1.1 skrll #dino* at gecko? # PCI bus bridge
252 1.1 skrll #wax* at gecko? # Wax GSC to GSC Bus Adapter
253 1.1 skrll
254 1.26 skrll # Astro memory & I/O controller
255 1.1 skrll astro* at mainbus0 # Astro memory & I/O controller
256 1.1 skrll elroy* at astro?
257 1.1 skrll
258 1.1 skrll # PCI bus support
259 1.1 skrll pci* at elroy?
260 1.1 skrll pci* at dino?
261 1.1 skrll com* at dino?
262 1.1 skrll ppb* at pci? dev ? function ?
263 1.1 skrll pci* at ppb?
264 1.1 skrll
265 1.1 skrll ssio* at pci?
266 1.1 skrll
267 1.1 skrll # EISA bus support
268 1.1 skrll eisa* at mongoose?
269 1.1 skrll #eisa* at weisa?
270 1.1 skrll
271 1.1 skrll # ISA bus support
272 1.1 skrll # Beware: Most ISA MI drivers are not endianness clean!
273 1.1 skrll #isa* at mongoose?
274 1.1 skrll #isa* at weisa?
275 1.1 skrll
276 1.1 skrll # VME bus support
277 1.1 skrll #vme* at vmeb?
278 1.1 skrll
279 1.1 skrll # Console Devices
280 1.1 skrll
281 1.1 skrll # STI graphics
282 1.1 skrll sti* at mainbus0 # [H]CRX-{8,24,48}[Z] and Visualize graphics
283 1.1 skrll sti* at phantomas? # [H]CRX-{8,24,48}[Z] and Visualize graphics
284 1.1 skrll sti* at uturn?
285 1.1 skrll sti* at pci? # EG-PCI, FX*
286 1.45 macallan
287 1.45 macallan # graphics with native drivers
288 1.45 macallan hyperfb* at uturn? # hyperdrive / HCRX
289 1.45 macallan gftfb* at pci? # PCI Visualize EG
290 1.47 jakllsch summitfb* at pci? # Visualize FX4
291 1.1 skrll
292 1.1 skrll # Human Interface Loop
293 1.1 skrll hil* at gsc? irq 1 # Human Interface Loop, kbd and mouse
294 1.1 skrll hilkbd* at hil? # keyboard, knob and buttons
295 1.1 skrll hilms* at hil? # mouse and tablets
296 1.1 skrll hilid* at hil? # ID module
297 1.1 skrll
298 1.1 skrll # wscons
299 1.1 skrll gsckbc* at gsc? # pc keyboard controller
300 1.1 skrll pckbd* at gsckbc? # PC keyboard
301 1.1 skrll pms* at gsckbc? # PS/2 mouse for wsmouse
302 1.1 skrll wskbd* at pckbd? console ?
303 1.1 skrll wsmouse* at pms? mux 0
304 1.1 skrll wskbd* at hilkbd? console ?
305 1.1 skrll wsmouse* at hilms? mux 0
306 1.44 macallan # make sure the console display is always wsdisplay0
307 1.44 macallan wsdisplay0 at wsemuldisplaydev? console 1
308 1.44 macallan wsdisplay* at wsemuldisplaydev?
309 1.1 skrll
310 1.1 skrll # Serial Devices
311 1.1 skrll
312 1.1 skrll # SSIO serial interfaces
313 1.1 skrll com0 at ssio? irq 4
314 1.1 skrll com1 at ssio? irq 3
315 1.1 skrll
316 1.1 skrll # GSC serial interfaces
317 1.1 skrll com* at gsc? # RS/232 serial port
318 1.1 skrll
319 1.1 skrll # PCI serial interfaces
320 1.1 skrll puc* at pci? dev ? function ? # PCI "universal" comm. cards
321 1.1 skrll com* at puc? port ? # 16x50s on "universal" comm boards
322 1.1 skrll cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
323 1.1 skrll cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
324 1.1 skrll
325 1.1 skrll # Parallel Printer Interfaces
326 1.1 skrll
327 1.1 skrll # SSIO parallel printer interface
328 1.1 skrll lpt0 at ssio?
329 1.1 skrll
330 1.1 skrll # GSC parallel printer interface
331 1.1 skrll lpt* at gsc?
332 1.1 skrll
333 1.1 skrll # PCI parallel printer interfaces
334 1.1 skrll lpt* at puc? port ? # || ports on "universal" comm boards
335 1.1 skrll
336 1.1 skrll # SCSI Controllers and Devices
337 1.1 skrll
338 1.1 skrll # GSC SCSI controllers
339 1.1 skrll oosiop* at gsc? # NCR 53c700
340 1.1 skrll osiop* at gsc? flags 0x00000 # NCR 53c710
341 1.1 skrll siop* at gsc? # NCR 53c720 (Fast/Wide)
342 1.1 skrll siop* at mainbus0 # NCR 53c720 (Fast/Wide)
343 1.1 skrll siop* at phantomas? # NCR 53c720 (Fast/Wide)
344 1.39 skrll siop* at uturn? # NCR 53c720 (Fast/Wide)
345 1.1 skrll
346 1.1 skrll # PCI SCSI controllers
347 1.1 skrll adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
348 1.1 skrll adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
349 1.1 skrll ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
350 1.1 skrll ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI
351 1.1 skrll bha* at pci? dev ? function ? # BusLogic 9xx SCSI
352 1.1 skrll dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
353 1.1 skrll iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
354 1.1 skrll isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel
355 1.1 skrll mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID
356 1.1 skrll mpt* at pci? dev ? function ? # LSI Fusion SCSI/FC
357 1.1 skrll pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
358 1.1 skrll siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
359 1.1 skrll esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer
360 1.1 skrll #options SIOP_SYMLED # drive the act. LED in software
361 1.1 skrll trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
362 1.1 skrll
363 1.1 skrll # EISA SCSI controllers
364 1.1 skrll ahb* at eisa? slot ? # Adaptec 174[02] SCSI
365 1.1 skrll ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
366 1.1 skrll bha* at eisa? slot ? # BusLogic 7xx SCSI
367 1.1 skrll dpt* at eisa? slot ? # DPT EATA SCSI
368 1.1 skrll uha* at eisa? slot ? # UltraStor 24f SCSI
369 1.1 skrll
370 1.1 skrll # SCSI bus support
371 1.1 skrll scsibus* at scsi?
372 1.1 skrll
373 1.1 skrll # SCSI devices
374 1.1 skrll sd* at scsibus? target ? lun ? # SCSI disk drives
375 1.1 skrll st* at scsibus? target ? lun ? # SCSI tape drives
376 1.1 skrll cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
377 1.1 skrll ch* at scsibus? target ? lun ? # SCSI autochangers
378 1.1 skrll ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
379 1.1 skrll ss* at scsibus? target ? lun ? # SCSI scanners
380 1.1 skrll uk* at scsibus? target ? lun ? # SCSI unknown
381 1.1 skrll
382 1.1 skrll
383 1.1 skrll # RAID controllers and devices
384 1.1 skrll # aac is broken
385 1.1 skrll #aac* at pci? dev ? function ? # Adaptec AAC family
386 1.1 skrll amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID
387 1.1 skrll cac* at eisa? slot ? # Compaq EISA array controllers
388 1.1 skrll cac* at pci? dev ? function ? # Compaq PCI array controllers
389 1.1 skrll icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID
390 1.1 skrll mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family
391 1.1 skrll mlx* at eisa? slot ? # Mylex DAC960 & DEC SWXCR family
392 1.1 skrll twe* at pci? dev ? function ? # 3ware Escalade RAID controllers
393 1.1 skrll
394 1.1 skrll #ld* at aac? unit ? # logical disk devices
395 1.1 skrll ld* at amr? unit ?
396 1.1 skrll ld* at cac? unit ?
397 1.1 skrll ld* at icp? unit ?
398 1.1 skrll ld* at mlx? unit ?
399 1.1 skrll ld* at twe? unit ?
400 1.1 skrll
401 1.1 skrll icpsp* at icp? unit ? # SCSI pass-through
402 1.1 skrll
403 1.1 skrll # IDE and related devices
404 1.1 skrll # PCI IDE controllers - see pciide(4) for supported hardware.
405 1.1 skrll # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
406 1.1 skrll # how to set up DMA modes for this chip. This may work, or may cause
407 1.1 skrll # a machine hang with some controllers.
408 1.1 skrll pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
409 1.39 skrll acardide* at pci? dev ? function ? # Acard IDE controllers
410 1.1 skrll aceride* at pci? dev ? function ? # Acer Lab IDE controllers
411 1.1 skrll artsata* at pci? dev ? function ? # Intel i31244 SATA controller
412 1.1 skrll cmdide* at pci? dev ? function ? # CMD tech IDE controllers
413 1.1 skrll cypide* at pci? dev ? function ? # Cypress IDE controllers
414 1.1 skrll geodeide* at pci? dev ? function ? # AMD Geode IDE controllers
415 1.1 skrll hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
416 1.1 skrll nside* at pci? dev ? function ? # National Semiconductor IDE controllers
417 1.1 skrll optiide* at pci? dev ? function ? # Opti IDE controllers
418 1.1 skrll pdcide* at pci? dev ? function ? # Promise IDE controllers
419 1.39 skrll pdcsata* at pci? dev ? function ? # Promise SATA150 controllers
420 1.1 skrll rccide* at pci? dev ? function ? # ServerWorks IDE controllers
421 1.39 skrll satalink* at pci? dev ? function ? # SiI SATALink controllers
422 1.1 skrll siside* at pci? dev ? function ? # SiS IDE controllers
423 1.1 skrll slide* at pci? dev ? function ? # Symphony Labs IDE controllers
424 1.39 skrll stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers
425 1.1 skrll viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
426 1.1 skrll
427 1.1 skrll # ATA (IDE) bus support
428 1.1 skrll atabus* at ata?
429 1.1 skrll
430 1.1 skrll # IDE drives
431 1.1 skrll # Flags are used only with controllers that support DMA operations
432 1.1 skrll # and mode settings (e.g. some pciide controllers)
433 1.1 skrll # The lowest order four bits (rightmost digit) of the flags define the PIO
434 1.1 skrll # mode to use, the next set of four bits the DMA mode and the third set the
435 1.1 skrll # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
436 1.1 skrll # to use, and the last bit must be 1 for this setting to be used.
437 1.1 skrll # For DMA and UDMA, 0xf (1111) means 'disable'.
438 1.1 skrll # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
439 1.1 skrll # (0xc=1100, 0xa=1010, 0xf=1111)
440 1.1 skrll # 0x0000 means "use whatever the drive claims to support".
441 1.1 skrll wd* at atabus? drive ? flags 0x0000
442 1.1 skrll
443 1.1 skrll # ATA RAID configuration support, as found on some Promise controllers.
444 1.1 skrll pseudo-device ataraid
445 1.1 skrll ld* at ataraid? vendtype ? unit ?
446 1.1 skrll
447 1.1 skrll # ATAPI bus support
448 1.1 skrll atapibus* at atapi?
449 1.1 skrll
450 1.1 skrll # ATAPI devices
451 1.1 skrll # flags have the same meaning as for IDE drives.
452 1.1 skrll cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
453 1.1 skrll sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
454 1.1 skrll st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives
455 1.1 skrll uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
456 1.1 skrll
457 1.1 skrll # Miscellaneous mass storage devices
458 1.1 skrll
459 1.1 skrll # GSC floppy
460 1.39 skrll #fdc* at gsc? # PC floppy controller (WD37C65C)
461 1.1 skrll #fd* at fdc? drive ? # the drives themselves
462 1.1 skrll
463 1.1 skrll # Network Interfaces
464 1.1 skrll
465 1.1 skrll # GSC network interfaces
466 1.1 skrll #medusa* at gsc? # FDDI
467 1.1 skrll ie* at gsc? # old 82C5[89]6 Ethernet, use iee(4)
468 1.1 skrll iee* at gsc? # 82C596 Ethernet
469 1.1 skrll
470 1.1 skrll # PCI network interfaces
471 1.39 skrll an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11)
472 1.39 skrll atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11)
473 1.1 skrll bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet
474 1.1 skrll bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet
475 1.39 skrll ep* at pci? dev ? function ? # 3Com 3c59x
476 1.39 skrll epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
477 1.39 skrll ex* at pci? dev ? function ? # 3Com 90x[BC]
478 1.39 skrll fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
479 1.39 skrll gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet
480 1.39 skrll mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet
481 1.39 skrll ne* at pci? dev ? function ? # NE2000-compatible Ethernet
482 1.39 skrll ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial
483 1.39 skrll pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
484 1.39 skrll re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
485 1.39 skrll rtk* at pci? dev ? function ? # Realtek 8129/8139
486 1.39 skrll sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet
487 1.39 skrll sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet
488 1.39 skrll skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet
489 1.39 skrll sk* at skc? # SysKonnect SK9821 Gigabit Ethernet
490 1.39 skrll ste* at pci? dev ? function ? # Sundance ST-201 Ethernet
491 1.39 skrll stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit
492 1.39 skrll ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet
493 1.39 skrll tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
494 1.39 skrll tlp* at pci? dev ? function ? # DECchip 21x4x and clones
495 1.39 skrll vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
496 1.39 skrll wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b)
497 1.39 skrll wm* at pci? dev ? function ? # Intel 8254x gigabit
498 1.1 skrll
499 1.1 skrll # EISA network interfaces
500 1.1 skrll ep* at eisa? slot ? # 3Com 3c579 Ethernet
501 1.1 skrll tlp* at eisa? slot ? # DEC DE-425 Ethernet
502 1.1 skrll #sh* at eisa? slot ? # Interphase Seahawk 4811 FDDI
503 1.1 skrll #ie* at eisa? slot ? # Intel Ethernet
504 1.1 skrll
505 1.1 skrll # MII/PHY support
506 1.1 skrll acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs
507 1.1 skrll amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
508 1.1 skrll bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
509 1.1 skrll brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
510 1.1 skrll dmphy* at mii? phy ? # Davicom DM9101 PHYs
511 1.1 skrll exphy* at mii? phy ? # 3Com internal PHYs
512 1.1 skrll gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs
513 1.1 skrll glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
514 1.1 skrll gphyter* at mii? phy ? # NS83861 Gig-E PHY
515 1.1 skrll icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
516 1.1 skrll igphy* at mii? phy ? # Intel IGP01E1000
517 1.1 skrll ikphy* at mii? phy ? # Intel 82563 PHYs
518 1.1 skrll inphy* at mii? phy ? # Intel 82555 PHYs
519 1.1 skrll iophy* at mii? phy ? # Intel 82553 PHYs
520 1.1 skrll lxtphy* at mii? phy ? # Level One LXT-970 PHYs
521 1.1 skrll makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
522 1.1 skrll nsphy* at mii? phy ? # NS83840 PHYs
523 1.39 skrll nsphyter* at mii? phy ? # NS83843 PHYs
524 1.1 skrll pnaphy* at mii? phy ? # generic HomePNA PHYs
525 1.1 skrll qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
526 1.24 rin rgephy* at mii? phy ? # Realtek 8169S/8110S/8211 PHYs
527 1.24 rin rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
528 1.1 skrll sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
529 1.1 skrll tlphy* at mii? phy ? # ThunderLAN PHYs
530 1.1 skrll tqphy* at mii? phy ? # TDK Semiconductor PHYs
531 1.1 skrll ukphy* at mii? phy ? # generic unknown PHYs
532 1.1 skrll urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
533 1.1 skrll
534 1.1 skrll # Audio Devices
535 1.1 skrll
536 1.1 skrll # GSC audio devices
537 1.1 skrll #aone* at gsc? # Audio Type 1 (PSB 2160-N)
538 1.1 skrll harmony* at gsc? # Audio Type 2 (CS4215)
539 1.1 skrll #com* at harmony? # Telephone add-in card
540 1.1 skrll audio* at audiobus?
541 1.1 skrll
542 1.11 christos spkr* at audio? # PC speaker (synthesized)
543 1.9 nat
544 1.1 skrll # USB Controller and Devices
545 1.1 skrll
546 1.1 skrll # PCI USB controllers
547 1.1 skrll ehci* at pci? dev ? function ? # Enhanced Host Controller
548 1.1 skrll ohci* at pci? dev ? function ? # Open Host Controller
549 1.1 skrll uhci* at pci? dev ? function ? # Universal Host Controller (Intel)
550 1.1 skrll
551 1.1 skrll # USB bus support
552 1.1 skrll usb* at ehci?
553 1.1 skrll usb* at ohci?
554 1.1 skrll usb* at uhci?
555 1.1 skrll
556 1.1 skrll # USB Hubs
557 1.1 skrll uhub* at usb?
558 1.1 skrll uhub* at uhub? port ?
559 1.1 skrll
560 1.1 skrll # USB HID device
561 1.1 skrll uhidev* at uhub? port ? configuration ? interface ?
562 1.1 skrll
563 1.1 skrll # USB Mice
564 1.1 skrll ums* at uhidev? reportid ?
565 1.1 skrll wsmouse* at ums? mux 0
566 1.1 skrll
567 1.1 skrll # USB eGalax touch-panel
568 1.1 skrll uep* at uhub? port ?
569 1.1 skrll wsmouse* at uep? mux 0
570 1.1 skrll
571 1.1 skrll # USB Keyboards
572 1.1 skrll ukbd* at uhidev? reportid ?
573 1.1 skrll wskbd* at ukbd? console ? mux 1
574 1.1 skrll
575 1.1 skrll # USB serial adapter
576 1.1 skrll ucycom* at uhidev? reportid ?
577 1.1 skrll
578 1.1 skrll # USB Generic HID devices
579 1.1 skrll uhid* at uhidev? reportid ?
580 1.1 skrll
581 1.1 skrll # USB LCDs and USB-VGA adaptors
582 1.1 skrll udl* at uhub? port ? # DisplayLink DL-1x0/1x5
583 1.1 skrll wsdisplay* at udl?
584 1.1 skrll
585 1.1 skrll # USB Printer
586 1.1 skrll ulpt* at uhub? port ? configuration ? interface ?
587 1.1 skrll
588 1.1 skrll # USB Modem
589 1.1 skrll umodem* at uhub? port ? configuration ?
590 1.1 skrll ucom* at umodem?
591 1.1 skrll
592 1.1 skrll # Option N.V. Wireless WAN modems
593 1.1 skrll uhso* at uhub? port ? configuration ?
594 1.1 skrll
595 1.1 skrll # USB Mass Storage
596 1.1 skrll umass* at uhub? port ? configuration ? interface ?
597 1.1 skrll
598 1.1 skrll # USB audio
599 1.1 skrll uaudio* at uhub? port ? configuration ?
600 1.1 skrll
601 1.1 skrll # USB MIDI
602 1.1 skrll umidi* at uhub? port ? configuration ?
603 1.4 uebayasi midi* at midibus?
604 1.1 skrll
605 1.1 skrll # USB IrDA
606 1.1 skrll # USB-IrDA bridge spec
607 1.1 skrll uirda* at uhub? port ? configuration ? interface ?
608 1.1 skrll irframe* at uirda?
609 1.1 skrll
610 1.1 skrll stuirda* at uhub? port ? configuration ? interface ?
611 1.1 skrll irframe* at stuirda?
612 1.1 skrll
613 1.1 skrll # SigmaTel STIr4200 USB/IrDA Bridge
614 1.1 skrll ustir* at uhub? port ?
615 1.1 skrll irframe* at ustir?
616 1.1 skrll
617 1.1 skrll # USB Ethernet adapters
618 1.1 skrll aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
619 1.1 skrll axe* at uhub? port ? # ASIX AX88172 based adapters
620 1.1 skrll cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
621 1.1 skrll cue* at uhub? port ? # CATC USB-EL1201A based adapters
622 1.1 skrll kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
623 1.20 rin mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
624 1.1 skrll udav* at uhub? port ? # Davicom DM9601 based adapters
625 1.24 rin ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
626 1.1 skrll url* at uhub? port ? # Realtek RTL8150L based adapters
627 1.1 skrll
628 1.1 skrll # USB 802.11 adapters
629 1.1 skrll atu* at uhub? port ? # Atmel AT76C50XX based adapters
630 1.1 skrll ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
631 1.1 skrll rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g
632 1.1 skrll zyd* at uhub? port ? # Zydas ZD1211
633 1.1 skrll
634 1.1 skrll # Prolific PL2301/PL2302 host-to-host adapter
635 1.1 skrll upl* at uhub? port ?
636 1.1 skrll
637 1.1 skrll # Serial adapters
638 1.1 skrll ubsa* at uhub? port ? # Belkin serial adapter
639 1.1 skrll ucom* at ubsa? portno ?
640 1.1 skrll
641 1.39 skrll uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter
642 1.1 skrll ucom* at uchcom? portno ?
643 1.1 skrll
644 1.1 skrll uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
645 1.1 skrll ucom* at uftdi? portno ?
646 1.1 skrll
647 1.1 skrll uipaq* at uhub? port ? # iPAQ PDAs
648 1.1 skrll ucom* at uipaq? portno ?
649 1.1 skrll
650 1.1 skrll umct* at uhub? port ? # MCT USB-RS232 serial adapter
651 1.1 skrll ucom* at umct? portno ?
652 1.1 skrll
653 1.39 skrll uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
654 1.1 skrll ucom* at uplcom? portno ?
655 1.1 skrll
656 1.1 skrll uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter
657 1.1 skrll ucom* at uslsa? portno ?
658 1.1 skrll
659 1.39 skrll uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
660 1.1 skrll ucom* at uvscom? portno ?
661 1.1 skrll
662 1.1 skrll # RIM BlackBerry
663 1.1 skrll uberry* at uhub? port ?
664 1.1 skrll
665 1.1 skrll # USB Handspring Visor
666 1.1 skrll uvisor* at uhub? port ?
667 1.1 skrll ucom* at uvisor?
668 1.1 skrll
669 1.1 skrll # Kyocera AIR-EDGE PHONE
670 1.1 skrll ukyopon* at uhub? port ?
671 1.1 skrll ucom* at ukyopon? portno ?
672 1.1 skrll
673 1.1 skrll # USB scanners that use SCSI emulation, e.g., HP5300
674 1.1 skrll usscanner* at uhub? port ?
675 1.1 skrll
676 1.1 skrll # Topfield TF5000PVR range of DVB recorders
677 1.1 skrll utoppy* at uhub? port ?
678 1.1 skrll
679 1.1 skrll # D-Link DSB-R100 USB radio
680 1.1 skrll udsbr* at uhub? port ?
681 1.1 skrll radio* at udsbr?
682 1.1 skrll
683 1.1 skrll # USB Generic driver
684 1.1 skrll ugen* at uhub? port ?
685 1.1 skrll
686 1.1 skrll # USB 3G datacards
687 1.12 christos umodeswitch* at uhub? port ?
688 1.1 skrll u3g* at uhub? port ?
689 1.1 skrll ucom* at u3g?
690 1.1 skrll
691 1.1 skrll # USB generic serial port (e.g., data over cellular)
692 1.1 skrll ugensa* at uhub? port ?
693 1.1 skrll ucom* at ugensa?
694 1.1 skrll
695 1.48 tsutsui # Virtio devices
696 1.48 tsutsui virtio* at pci? dev ? function ? # Virtio PCI device
697 1.49 riastrad
698 1.49 riastrad include "dev/virtio/virtio.config"
699 1.49 riastrad no vio9p* at virtio? # XXX ?
700 1.49 riastrad no viocon* at virtio? # XXX ?
701 1.49 riastrad no viomb* at virtio? # XXX ?
702 1.48 tsutsui
703 1.1 skrll # Pseudo-Devices
704 1.1 skrll
705 1.1 skrll pseudo-device crypto # /dev/crypto device
706 1.39 skrll pseudo-device swcrypto # software crypto implementation
707 1.1 skrll
708 1.1 skrll # disk/mass storage pseudo-devices
709 1.39 skrll pseudo-device ccd # concatenated/striped disk devices
710 1.39 skrll #pseudo-device cgd # cryptographic disk devices
711 1.39 skrll pseudo-device raid # RAIDframe disk driver
712 1.1 skrll options RAID_AUTOCONFIG # auto-configuration of RAID components
713 1.1 skrll #Options to enable various other RAIDframe RAID types.
714 1.1 skrll #options RF_INCLUDE_EVENODD=1
715 1.1 skrll #options RF_INCLUDE_RAID5_RS=1
716 1.1 skrll #options RF_INCLUDE_PARITYLOGGING=1
717 1.1 skrll #options RF_INCLUDE_CHAINDECLUSTER=1
718 1.1 skrll #options RF_INCLUDE_INTERDECLUSTER=1
719 1.1 skrll #options RF_INCLUDE_PARITY_DECLUSTERING=1
720 1.1 skrll #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
721 1.1 skrll pseudo-device fss # file system snapshot device
722 1.1 skrll pseudo-device md # memory disk device (ramdisk)
723 1.1 skrll pseudo-device vnd # disk-like interface to files
724 1.1 skrll #options VND_COMPRESSION # compressed vnd(4)
725 1.1 skrll pseudo-device putter # for puffs and pud
726 1.1 skrll
727 1.1 skrll # network pseudo-devices
728 1.1 skrll pseudo-device bpfilter # Berkeley packet filter
729 1.27 sevan pseudo-device carp # Common Address Redundancy Protocol
730 1.19 maxv pseudo-device npf # NPF packet filter
731 1.1 skrll pseudo-device loop # network loopback
732 1.1 skrll pseudo-device ppp # Point-to-Point Protocol
733 1.1 skrll pseudo-device pppoe # PPP over Ethernet (RFC 2516)
734 1.1 skrll pseudo-device sl # Serial Line IP
735 1.1 skrll pseudo-device irframetty # IrDA frame line discipline
736 1.1 skrll pseudo-device tun # network tunneling over tty
737 1.1 skrll pseudo-device tap # virtual Ethernet
738 1.1 skrll pseudo-device gre # generic L3 over IP tunnel
739 1.1 skrll pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
740 1.1 skrll #pseudo-device faith # IPv[46] tcp relay translation i/f
741 1.1 skrll pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
742 1.1 skrll pseudo-device vlan # IEEE 802.1q encapsulation
743 1.1 skrll pseudo-device bridge # simple inter-network bridging
744 1.36 roy pseudo-device vether # Virtual Ethernet for bridge
745 1.1 skrll pseudo-device agr # IEEE 802.3ad link aggregation
746 1.1 skrll
747 1.1 skrll #
748 1.1 skrll # accept filters
749 1.1 skrll pseudo-device accf_data # "dataready" accept filter
750 1.1 skrll pseudo-device accf_http # "httpready" accept filter
751 1.1 skrll
752 1.1 skrll # miscellaneous pseudo-devices
753 1.1 skrll pseudo-device pty # pseudo-terminals
754 1.1 skrll pseudo-device sequencer # MIDI sequencer
755 1.1 skrll # rnd works; RND_COM does not on port hppa yet.
756 1.1 skrll #options RND_COM # use "com" randomness as well (BROKEN)
757 1.1 skrll pseudo-device clockctl # user control of clock subsystem
758 1.41 riastrad pseudo-device swwdog # software watchdog timer -- swwdog(4)
759 1.1 skrll
760 1.1 skrll # a pseudo device needed for Coda # also needs CODA (above)
761 1.1 skrll pseudo-device vcoda # coda minicache <-> venus comm.
762 1.1 skrll
763 1.1 skrll # wscons pseudo-devices
764 1.1 skrll pseudo-device wsmux # mouse & keyboard multiplexor
765 1.1 skrll pseudo-device wsfont
766 1.1 skrll pseudo-device ksyms # /dev/ksyms
767 1.1 skrll
768 1.1 skrll # userland interface to drivers, including autoconf and properties retrieval
769 1.1 skrll pseudo-device drvctl
770 1.1 skrll
771 1.27 sevan include "dev/veriexec.config"
772 1.42 abs
773 1.42 abs # Pull in optional local configuration - always at end
774 1.42 abs cinclude "arch/hppa/conf/GENERIC.local"
775