Home | History | Annotate | Line # | Download | only in conf
files revision 1.255
      1 #	$NetBSD: files,v 1.255 1998/11/12 19:51:10 thorpej Exp $
      2 
      3 #	@(#)files.newconf	7.5 (Berkeley) 5/10/93
      4 
      5 # options understood by the machine-independent part of the kernel
      6 # (note, these are case-sensitive)
      7 defopt	INSECURE
      8 defopt	KMEMSTATS
      9 defopt	KTRACE
     10 defopt	LOCKDEBUG
     11 defopt	RTC_OFFSET
     12 defopt	SHORTCORENAME
     13 defopt	UCONSOLE
     14 
     15 defopt	MULTIPROCESSOR
     16 
     17 defopt	DEVPAGER
     18 defopt	SWAPPAGER
     19 defopt	VNODEPAGER
     20 
     21 defopt	opt_sysv.h	SYSVMSG SYSVSEM	SYSVSHM
     22 
     23 defopt	opt_ntp.h	PPS_SYNC NTP 
     24 
     25 defopt	opt_nfs_boot.h	NFS_BOOT_BOOTP NFS_BOOT_BOOTPARAM NFS_BOOT_DHCP
     26 			NFS_BOOT_GATEWAY
     27 			NFS_BOOT_TCP NFS_BOOT_OPTIONS NFS_BOOT_RWSIZE
     28 defopt	NFSSERVER
     29 
     30 defopt	opt_malloclog.h	MALLOCLOG MALLOCLOGSIZE
     31 
     32 defopt	opt_execfmt.h	EXEC_AOUT EXEC_ECOFF EXEC_ELF32 EXEC_ELF64 EXEC_SCRIPT
     33 
     34 # compatibility options
     35 defopt	COMPAT_FREEBSD
     36 defopt	COMPAT_HPUX
     37 defopt	COMPAT_IBCS2
     38 defopt	COMPAT_LINUX
     39 defopt	COMPAT_OSF1
     40 defopt	COMPAT_SUNOS
     41 defopt	COMPAT_SVR4
     42 defopt	COMPAT_ULTRIX
     43 defopt	COMPAT_SPARC32
     44 defopt  opt_compat_netbsd.h	COMPAT_09 COMPAT_10 COMPAT_11 COMPAT_12
     45 				COMPAT_13 COMPAT_NOMID
     46 
     47 # networking protocols
     48 defopt	INET
     49 defopt	opt_atalk.h	NETATALK
     50 defopt	opt_ns.h	NS	 	# Xerox Network Services (XNS)
     51 defopt	opt_ns.h	NSIP	 	# XNS tunneled over IP
     52 defopt	opt_iso.h	ISO TPIP	# ISO network stack
     53 defopt	EON				# ISO clnp over IP
     54 defopt	CCITT				# 
     55 defopt	HDLC				# CCITT over HDLC
     56 defopt	LLC				# CCITT over LLC2 (also IEEE LLC?)
     57 defopt	NATM				# "native" ATM protocols
     58 defopt	PFIL_HOOKS			# pfil(9)
     59 
     60 # networking options
     61 defopt	GATEWAY
     62 defopt	MROUTING
     63 defopt	TCP_COMPAT_42
     64 
     65 defopt	TCP_RECVSPACE
     66 defopt	TCP_SENDSPACE
     67 
     68 # these are not together so that turning on UVMHIST only affects files that
     69 # use it, not most of the kernel
     70 defopt	opt_uvm.h	UVM
     71 defopt	opt_uvmhist.h	UVMHIST UVMHIST_PRINT
     72 defopt	opt_pmap_new.h	PMAP_NEW
     73 
     74 # file systems
     75 deffs	FFS EXT2FS
     76 deffs	fs_mfs.h MFS			# XXX
     77 deffs	fs_lfs.h LFS
     78 deffs	CD9660
     79 deffs	ADOSFS
     80 deffs	MSDOSFS
     81 deffs	FILECORE
     82 deffs	fs_nfs.h NFS
     83 deffs	NULLFS FDESC PORTAL UMAPFS PROCFS
     84 deffs	fs_kernfs.h KERNFS		# XXX
     85 deffs	fs_union.h UNION
     86 deffs	fs_coda.h CODA
     87 
     88 # file system options
     89 defopt	QUOTA
     90 defopt	opt_ffs.h	FFS_EI LIFFS
     91 
     92 # Not entirely MI, but present on multiple arch's
     93 defopt	opt_mbr.h	COMPAT_386BSD_MBRPART BIOS_VERBOSE
     94 
     95 # debugging options
     96 defopt	DDB
     97 defopt	opt_ddbparam.h	DDB_FROMCONSOLE DDB_ONPANIC DDB_HISTORY_SIZE
     98 
     99 # device classes
    100 devclass disk
    101 devclass tape
    102 devclass ifnet
    103 devclass tty
    104 
    105 # generic attributes
    106 define	audio { }
    107 define	midibus { }
    108 define	midisyn
    109 define  wdc_base
    110 define	scsi {[channel = -1]}
    111 define	ata {[channel = -1], [drive = -1]}
    112 define	atapi {[channel = -1]}
    113 define  mii {[phy = -1]}
    114 
    115 # audio device attributes
    116 define	mulaw
    117 define	auconv
    118 
    119 # audio and midi devices, attaches to audio hardware driver
    120 device	audio
    121 attach	audio at audio
    122 device	midi
    123 attach	midi at midibus
    124 
    125 # net device attributes - we have generic code for arc(net), ether(net),
    126 # fddi, and atm.
    127 define	arc
    128 define	atm
    129 define	ether
    130 define	fddi
    131 define	hippi
    132 
    133 # devices ARPing IPv4 pull this in:
    134 define	arp
    135 
    136 # Device description for machine-independent IPKDB code.
    137 define	ipkdb
    138 
    139 device	ipkdbif: ipkdb
    140 device	ipkdbslip: ipkdb
    141 device	ipkdbppp: ipkdb
    142 
    143 # Common files for any ipkdb support
    144 file	ipkdb/ipkdb_ipkdb.c		ipkdb			needs-flag
    145 file	ipkdb/ipkdb_if.c		ipkdb
    146 
    147 # Support for slip
    148 file	ipkdb/ipkdb_slip.c		ipkdbslip		needs-flag
    149 
    150 # Support for ppp	(for now only fake)
    151 file	ipkdb/ipkdb_ppp.c		ipkdbppp		needs-flag
    152 
    153 
    154 # "Chipset" drivers.  These are the bus-independent routines which
    155 # contain the cfdrivers.  Attachments are provided by files.<bus>
    156 
    157 # Adaptec AIC-6[32]60 ICs
    158 device	aic: scsi
    159 file	dev/ic/aic6360.c		aic
    160 
    161 # Adaptec 2[789]4X, 394X, aic7770 and aic78[5678]0 SCSI controllers
    162 defopt	opt_ahc.h	AHC_BROKEN_CACHE AHC_DEBUG AHC_TAGENABLE 
    163 device	ahc: scsi
    164 file	dev/ic/aic7xxx.c		ahc
    165 
    166 # AdvanSys 1200A, 1200B and ULTRA SCSI controllers
    167 device	adv: scsi
    168 file	dev/ic/adv.c			adv
    169 
    170 # AdvanSys ULTRA WIDE SCSI controllers
    171 device	adw: scsi
    172 file	dev/ic/adw.c			adw
    173 
    174 # AMD 7930 audio/ISDN codec
    175 device audioamd: audio
    176 file	dev/ic/am7930.c				audioamd
    177 
    178 # BusLogic MultiMaster and MultiMaster Ultra SCSI controllers
    179 # (Must be declared before AHA to ensure bha probes before aha.
    180 #  Probing AHA first configures bhas as aha, via their AHA
    181 #  hardware-compatibility mode.)
    182 device	bha: scsi
    183 file	dev/ic/bha.c			bha
    184 
    185 # Adaptec AHA-154x and AHA-164x controllers
    186 # (must be after bha, see above)
    187 device	aha: scsi
    188 file	dev/ic/aha.c			aha
    189 
    190 # Qlogic ISP 10x0 SCSI Controllers
    191 device	isp: scsi
    192 file	dev/ic/isp.c			isp
    193 file	dev/ic/isp_netbsd.c		isp
    194 
    195 # UltraStor SCSI controllers
    196 device	uha: scsi
    197 file	dev/ic/uha.c			uha
    198 
    199 # 3Com Etherlink-III Ethernet controller
    200 device	ep: arp, ether, ifnet, mii
    201 file	dev/ic/elink3.c			ep
    202 
    203 # 3Com EtherLink XL Controller
    204 device	ex: arp, ether, ifnet, mii
    205 file	dev/ic/elinkxl.c		ex
    206 
    207 # DEC EtherWORKS III (LEMAC) Ethernet controllers
    208 device	lc: arp, ether, ifnet
    209 file	dev/ic/lemac.c			lc
    210 
    211 # LANCE and PCnet Ethernet controllers
    212 device	le: arp, ether, ifnet
    213 define le24
    214 define le32
    215 file	dev/ic/am7990.c			le24
    216 file	dev/ic/am79900.c		le32
    217 file	dev/ic/lance.c			le24 | le32
    218 
    219 # 8390-family Ethernet controllers
    220 define	dp8390nic
    221 file	dev/ic/dp8390.c			dp8390nic
    222 
    223 # NCR 5380 SCSI Bus Controller
    224 define	ncr5380sbc
    225 file	dev/ic/ncr5380sbc.c		ncr5380sbc
    226 
    227 # DEC FDDI Chipset
    228 define	pdq
    229 file	dev/ic/pdq.c			pdq
    230 file	dev/ic/pdq_ifsubr.c		pdq
    231 
    232 # Cyclades Cyclom-8/16/32 
    233 device	cy: tty
    234 file	dev/ic/cy.c			cy			needs-flag
    235 
    236 # Efficient Networks, Inc. ATM interface
    237 device	en: atm, ifnet
    238 file	dev/ic/midway.c			en
    239 
    240 # NCR 53x9x or Emulex ESP SCSI Controller
    241 define	ncr53c9x
    242 file	dev/ic/ncr53c9x.c		ncr53c9x
    243 
    244 # Hitachi HD64570 serial controller
    245 define hd64570
    246 file	dev/ic/hd64570.c		hd64570
    247 
    248 # Intel 82586 Ethernet Controller
    249 define	i82586
    250 file	dev/ic/i82586.c			i82586
    251 
    252 # SMC 91Cxx Ethernet Controller
    253 device	sm: arp, ether, ifnet
    254 file	dev/ic/smc91cxx.c		sm
    255 
    256 # SMC 83C170 EPIC/100 Fast Ethernet Controller
    257 device	epic: arp, ether, ifnet, mii
    258 file	dev/ic/smc83c170.c		epic
    259 
    260 # MB8696x Ethernet Controller
    261 define	mb86960
    262 file	dev/ic/mb86960.c		mb86960
    263 
    264 # Generic MB8696x Ethernet Controller driver
    265 device	mbe: arp, ether, ifnet, mb86960
    266 
    267 # Interwave Am78C201 audio driver
    268 define	interwave
    269 file	dev/ic/interwave.c		interwave
    270 
    271 # TMS 320av110 MPEG2/audio driver
    272 define	tms320av110
    273 file	dev/ic/tms320av110.c		tms320av110
    274 
    275 # Novell NE2000-compatible Ethernet cards, based on the
    276 # National Semiconductor DS8390.
    277 device	ne: ether, ifnet, arp, dp8390nic
    278 file	dev/ic/ne2000.c			ne
    279 
    280 # 8250/16[45]50-based "com" ports
    281 # XXX In a perfect world, this would be done with attributes
    282 device	com: tty
    283 file	dev/ic/com.c			com needs-flag
    284 
    285 # Device description for i2c bus and i2c eeprom
    286 define  i2c
    287 define  i2c_eeprom
    288 
    289 # Essential Communications Corp. HIPPI Interface
    290 device  esh: hippi, ifnet
    291 file    dev/ic/rrunner.c        esh
    292 
    293 # SMC 90c26, SMC 90C56 (and 90C66 if in compat mode) chip driver
    294 device  bah: ifnet, arc, arp
    295 file    dev/ic/smc90cx6.c	bah
    296 
    297 # OPL2/OPL3 FM synth driver
    298 device	opl: midibus, midisyn
    299 file	dev/ic/opl.c			opl
    300 file	dev/ic/oplinstrs.c		opl
    301 
    302 # AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers
    303 define	ad1848
    304 file	dev/ic/ad1848.c			ad1848
    305 
    306 # LSI64854 DMA controller back-end
    307 define	lsi64854
    308 file	dev/ic/lsi64854.c		lsi64854
    309 
    310 # RealTek 8019/8029 NE2000-compatible network interface subroutines
    311 define	rtl80x9
    312 file	dev/ic/rtl80x9.c		rtl80x9
    313 
    314 # XXX THE FOLLOWING BLOCK SHOULD BE UNCOMMENTED, BUT CANNOT
    315 # XXX BECAUSE NOT ALL PORTS USE THE MI wdc DRIVER YET.
    316 #
    317 # device  wdc: ata, atapi, wdc_base
    318 # # Common code for ESDI/IDE/etc. controllers
    319 file    dev/ic/wdc.c wdc_base
    320 
    321 # Definitions for wscons
    322 # device attributes: display, display with emulator, keyboard, and mouse
    323 define  wsdisplaydev { }
    324 define  wsemuldisplaydev {[console = -1]}
    325 define  wskbddev {[console = -1]}
    326 define	wsmousedev { }
    327 # attribute to pull in raster support
    328 define	wsrasteremulops
    329 # common PC display functions
    330 define pcdisplayops
    331 file	dev/ic/pcdisplay_subr.c	pcdisplayops
    332 file	dev/ic/pcdisplay_chars.c	pcdisplayops
    333 # VGA graphics
    334 device	vga: wsemuldisplaydev, pcdisplayops
    335 file	dev/ic/vga.c		vga	needs-flag
    336 file	dev/ic/vga_subr.c	vga
    337 
    338 # Attributes which machine-independent bus support can be attached to.
    339 # These should be defined here, because some of these busses can have
    340 # devices which provide these attributes, and we'd like to avoid hairy
    341 # ordering constraints on inclusion of the busses' "files" files.
    342 define	isabus { }			# ISA attachment
    343 define	eisabus { }			# EISA attachment
    344 define	pcibus {[bus = -1]}		# PCI attachment
    345 define	tcbus { }			# TurboChannel attachment
    346 define	usbus { }			# USB attachment
    347 define	vmebus { }			# VME bus attachment
    348 
    349 # We need the USB bus controllers here so different busses can
    350 # use them in an 'attach-with'.
    351 # UHCI USB controller
    352 device	uhci: usbus
    353 file	dev/usb/uhci.c			uhci
    354 
    355 # OHCI USB controller
    356 device	ohci: usbus
    357 file	dev/usb/ohci.c			ohci
    358 
    359 # legitimate pseudo-devices
    360 pseudo-device vnd: disk
    361 pseudo-device ccd: disk
    362 pseudo-device md: disk
    363 pseudo-device vcoda
    364 
    365 pseudo-device pty: tty
    366 pseudo-device tb: tty
    367 pseudo-device rnd
    368 
    369 pseudo-device loop: ifnet
    370 pseudo-device sl: ifnet
    371 pseudo-device ppp: ifnet
    372 pseudo-device tun: ifnet
    373 pseudo-device bpfilter: ifnet
    374 pseudo-device strip: ifnet
    375 pseudo-device ipfilter: ifnet
    376 pseudo-device gre: ifnet
    377 
    378 pseudo-device sequencer
    379 
    380 # kernel sources
    381 file adosfs/adlookup.c			adosfs
    382 file adosfs/adutil.c			adosfs
    383 file adosfs/advfsops.c			adosfs
    384 file adosfs/advnops.c			adosfs
    385 file coda/coda_namecache.c		coda
    386 file coda/coda_psdev.c			vcoda			needs-count
    387 file coda/coda_subr.c			coda
    388 file coda/coda_venus.c			coda
    389 file coda/coda_vfsops.c			coda
    390 file coda/coda_vnops.c			coda
    391 file ddb/db_access.c			ddb | kgdb
    392 file ddb/db_aout.c			ddb
    393 file ddb/db_break.c			ddb
    394 file ddb/db_command.c			ddb
    395 file ddb/db_elf.c			ddb
    396 file ddb/db_examine.c			ddb
    397 file ddb/db_expr.c			ddb
    398 file ddb/db_input.c			ddb
    399 file ddb/db_lex.c			ddb
    400 file ddb/db_output.c			ddb
    401 file ddb/db_print.c			ddb
    402 file ddb/db_run.c			ddb | kgdb
    403 file ddb/db_sym.c			ddb
    404 file ddb/db_trap.c			ddb
    405 file ddb/db_variables.c			ddb
    406 file ddb/db_watch.c			ddb
    407 file ddb/db_write_cmd.c			ddb
    408 file ddb/db_xxx.c			ddb
    409 file dev/auconv.c			auconv
    410 file dev/audio.c			audio | midi		needs-flag
    411 file dev/ccd.c				ccd			needs-flag
    412 file dev/md.c				md			needs-count
    413 file dev/midi.c				midi			needs-flag
    414 file dev/midisyn.c			midisyn
    415 file dev/mulaw.c			mulaw
    416 file dev/sequencer.c			sequencer		needs-flag
    417 file dev/vnd.c				vnd			needs-flag
    418 file dev/rnd.c				rnd			needs-flag
    419 file dev/rndpool.c			rnd			needs-flag
    420 file dev/i2c/i2c_bus.c		i2c
    421 file dev/i2c/i2c_eeprom.c	i2c_eeprom
    422 file filecorefs/filecore_bmap.c		filecore
    423 file filecorefs/filecore_lookup.c	filecore
    424 file filecorefs/filecore_node.c		filecore
    425 file filecorefs/filecore_utils.c	filecore
    426 file filecorefs/filecore_vfsops.c	filecore
    427 file filecorefs/filecore_vnops.c	filecore
    428 file isofs/cd9660/cd9660_bmap.c		cd9660
    429 file isofs/cd9660/cd9660_lookup.c	cd9660
    430 file isofs/cd9660/cd9660_node.c		cd9660
    431 file isofs/cd9660/cd9660_rrip.c		cd9660
    432 file isofs/cd9660/cd9660_util.c		cd9660
    433 file isofs/cd9660/cd9660_vfsops.c	cd9660
    434 file isofs/cd9660/cd9660_vnops.c	cd9660
    435 file kern/exec_aout.c			exec_aout
    436 file kern/exec_conf.c
    437 file kern/exec_ecoff.c			exec_ecoff
    438 file kern/exec_elf32.c			exec_elf32
    439 file kern/exec_elf64.c			exec_elf64
    440 file kern/exec_elf_common.c		exec_elf32 | exec_elf64
    441 file kern/exec_script.c			exec_script
    442 file kern/exec_subr.c
    443 file kern/init_main.c
    444 file kern/init_sysent.c
    445 file kern/kern_acct.c
    446 file kern/kern_clock.c
    447 file kern/kern_descrip.c
    448 file kern/kern_exec.c
    449 file kern/kern_exit.c
    450 file kern/kern_fork.c
    451 file kern/kern_fthread.c
    452 file kern/kern_kthread.c
    453 file kern/kern_ktrace.c			ktrace
    454 file kern/kern_lkm.c			lkm
    455 file kern/kern_lock.c
    456 file kern/kern_malloc.c
    457 file kern/kern_ntptime.c
    458 file kern/kern_physio.c
    459 file kern/kern_proc.c
    460 file kern/kern_prot.c
    461 file kern/kern_resource.c
    462 file kern/kern_sig.c
    463 file kern/kern_subr.c
    464 file kern/kern_synch.c
    465 file kern/kern_sysctl.c
    466 file kern/kern_time.c
    467 file kern/kern_xxx.c
    468 file kern/kgdb_stub.c			kgdb
    469 file kern/subr_autoconf.c
    470 file kern/subr_disk.c
    471 file kern/subr_extent.c
    472 file kern/subr_log.c
    473 file kern/subr_pool.c
    474 file kern/subr_prf.c
    475 file kern/subr_prof.c
    476 file kern/subr_rmap.c
    477 file kern/subr_xxx.c
    478 file kern/sys_generic.c
    479 file kern/sys_process.c
    480 file kern/sys_socket.c
    481 file kern/syscalls.c			syscall_debug
    482 file kern/sysv_ipc.c			sysvshm | sysvsem | sysvmsg
    483 file kern/sysv_msg.c			sysvmsg
    484 file kern/sysv_sem.c			sysvsem
    485 file kern/sysv_shm.c			sysvshm
    486 file kern/tty.c
    487 file kern/tty_conf.c
    488 file kern/tty_pty.c			pty			needs-count
    489 file kern/tty_subr.c
    490 file kern/tty_tb.c			tb			needs-count
    491 file kern/tty_tty.c
    492 file kern/uipc_domain.c
    493 file kern/uipc_mbuf.c
    494 file kern/uipc_proto.c
    495 file kern/uipc_socket.c
    496 file kern/uipc_socket2.c
    497 file kern/uipc_syscalls.c
    498 file kern/uipc_usrreq.c
    499 file kern/vfs_bio.c
    500 file kern/vfs_cache.c
    501 file kern/vfs_cluster.c
    502 file kern/vfs_init.c
    503 file kern/vfs_lockf.c
    504 file kern/vfs_lookup.c
    505 file kern/vfs_subr.c
    506 file kern/vfs_syscalls.c
    507 file kern/vfs_vnops.c
    508 file kern/vnode_if.c
    509 file miscfs/deadfs/dead_vnops.c
    510 file miscfs/fdesc/fdesc_vfsops.c	fdesc
    511 file miscfs/fdesc/fdesc_vnops.c		fdesc
    512 file miscfs/fifofs/fifo_vnops.c
    513 file miscfs/genfs/genfs_vnops.c
    514 file miscfs/kernfs/kernfs_vfsops.c	kernfs
    515 file miscfs/kernfs/kernfs_vnops.c	kernfs
    516 file miscfs/nullfs/null_subr.c		nullfs
    517 file miscfs/nullfs/null_vfsops.c	nullfs
    518 file miscfs/nullfs/null_vnops.c		nullfs
    519 file miscfs/portal/portal_vfsops.c	portal
    520 file miscfs/portal/portal_vnops.c	portal
    521 file miscfs/procfs/procfs_ctl.c		procfs
    522 file miscfs/procfs/procfs_fpregs.c
    523 file miscfs/procfs/procfs_mem.c
    524 file miscfs/procfs/procfs_note.c	procfs
    525 file miscfs/procfs/procfs_regs.c
    526 file miscfs/procfs/procfs_status.c	procfs
    527 file miscfs/procfs/procfs_subr.c	procfs
    528 file miscfs/procfs/procfs_vfsops.c	procfs
    529 file miscfs/procfs/procfs_vnops.c	procfs
    530 file miscfs/specfs/spec_vnops.c
    531 file miscfs/umapfs/umap_subr.c		umapfs
    532 file miscfs/umapfs/umap_vfsops.c	umapfs
    533 file miscfs/umapfs/umap_vnops.c		umapfs
    534 file miscfs/union/union_subr.c		union
    535 file miscfs/union/union_vfsops.c	union
    536 file miscfs/union/union_vnops.c		union
    537 file msdosfs/msdosfs_conv.c		msdosfs
    538 file msdosfs/msdosfs_denode.c		msdosfs
    539 file msdosfs/msdosfs_fat.c		msdosfs
    540 file msdosfs/msdosfs_lookup.c		msdosfs
    541 file msdosfs/msdosfs_vfsops.c		msdosfs
    542 file msdosfs/msdosfs_vnops.c		msdosfs
    543 file net/bpf.c				bpfilter		needs-count
    544 file net/bpf_filter.c			bpfilter | ppp
    545 file net/bsd-comp.c			ppp & ppp_bsdcomp
    546 file net/if.c
    547 file net/if_arcsubr.c			arc
    548 file net/if_atmsubr.c			atm
    549 file net/if_ethersubr.c			ether | fddi
    550 file net/if_fddisubr.c			fddi
    551 file net/if_hippisubr.c                 hippi                   needs-flag
    552 file net/if_gre.c			gre				needs-count	
    553 file net/if_loop.c			loop			needs-count
    554 file net/if_media.c
    555 file net/if_sl.c			sl			needs-count
    556 file net/if_strip.c			strip			needs-count
    557 file net/if_ppp.c			ppp			needs-count
    558 file net/if_tun.c			tun			needs-count
    559 file net/pfil.c				pfil_hooks | ipfilter
    560 file net/ppp-deflate.c			ppp & ppp_deflate
    561 file net/ppp_tty.c			ppp
    562 file net/radix.c
    563 file net/raw_cb.c
    564 file net/raw_usrreq.c
    565 file net/route.c
    566 file net/rtsock.c
    567 file net/slcompress.c			sl | ppp | strip
    568 file net/zlib.c				ppp & ppp_deflate
    569 file netccitt/ccitt_proto.c		ccitt
    570 file netccitt/hd_debug.c		hdlc
    571 file netccitt/hd_input.c		hdlc
    572 file netccitt/hd_output.c		hdlc
    573 file netccitt/hd_subr.c			hdlc
    574 file netccitt/hd_timer.c		hdlc
    575 file netccitt/if_x25subr.c		ccitt
    576 file netccitt/llc_input.c		llc
    577 file netccitt/llc_output.c		llc
    578 file netccitt/llc_subr.c		llc
    579 file netccitt/llc_timer.c		llc
    580 file netccitt/pk_acct.c			ccitt
    581 file netccitt/pk_debug.c		ccitt
    582 file netccitt/pk_input.c		ccitt
    583 file netccitt/pk_llcsubr.c		llc | hdlc
    584 file netccitt/pk_output.c		ccitt
    585 file netccitt/pk_subr.c			ccitt
    586 file netccitt/pk_timer.c		ccitt
    587 file netccitt/pk_usrreq.c		ccitt
    588 file netinet/if_arp.c			arp			needs-flag
    589 file netinet/if_atm.c			atm
    590 file netinet/igmp.c			inet
    591 file netinet/in.c			inet
    592 file netinet/in_pcb.c			inet
    593 file netinet/in_proto.c			inet
    594 file netinet/ip_gre.c			inet
    595 file netinet/ip_flow.c			inet & gateway
    596 file netinet/ip_icmp.c			inet
    597 file netinet/ip_input.c			inet
    598 file netinet/ip_mroute.c		inet & mrouting
    599 file netinet/ip_output.c		inet
    600 file netinet/raw_ip.c			inet
    601 file netinet/tcp_debug.c		inet
    602 file netinet/tcp_input.c		inet
    603 file netinet/tcp_output.c		inet
    604 file netinet/tcp_subr.c			inet
    605 file netinet/tcp_timer.c		inet
    606 file netinet/tcp_usrreq.c		inet
    607 file netinet/udp_usrreq.c		inet
    608 file netinet/ip_auth.c			ipfilter		needs-flag
    609 file netinet/ip_fil.c			ipfilter
    610 file netinet/fil.c			ipfilter
    611 file netinet/ip_nat.c			ipfilter
    612 file netinet/ip_frag.c			ipfilter
    613 file netinet/ip_log.c			ipfilter & ipfilter_log
    614 file netinet/ip_proxy.c			ipfilter
    615 file netinet/ip_state.c			ipfilter
    616 file netatalk/aarp.c			netatalk
    617 file netatalk/at_control.c		netatalk
    618 file netatalk/at_proto.c		netatalk
    619 file netatalk/at_rmx.c			netatalkdebug
    620 file netatalk/ddp_input.c		netatalk
    621 file netatalk/ddp_output.c		netatalk
    622 file netatalk/ddp_usrreq.c		netatalk
    623 file netiso/clnp_debug.c		iso
    624 file netiso/clnp_er.c			iso
    625 file netiso/clnp_frag.c			iso
    626 file netiso/clnp_input.c		iso
    627 file netiso/clnp_options.c		iso
    628 file netiso/clnp_output.c		iso
    629 file netiso/clnp_raw.c			iso
    630 file netiso/clnp_subr.c			iso
    631 file netiso/clnp_timer.c		iso
    632 file netiso/cltp_usrreq.c		iso
    633 file netiso/esis.c			iso
    634 file netiso/idrp_usrreq.c		iso
    635 file netiso/if_cons.c			iso
    636 file netiso/if_eon.c			eon
    637 file netiso/iso.c			iso
    638 file netiso/iso_chksum.c		iso
    639 file netiso/iso_pcb.c			iso
    640 file netiso/iso_proto.c			iso
    641 file netiso/iso_snpac.c			iso
    642 file netiso/tp_astring.c		iso | tpip
    643 file netiso/tp_cons.c			iso
    644 file netiso/tp_driver.c			iso | tpip
    645 file netiso/tp_emit.c			iso | tpip
    646 file netiso/tp_inet.c			iso | tpip
    647 file netiso/tp_input.c			iso | tpip
    648 file netiso/tp_iso.c			iso
    649 file netiso/tp_meas.c			iso | tpip
    650 file netiso/tp_output.c			iso | tpip
    651 file netiso/tp_pcb.c			iso | tpip
    652 file netiso/tp_subr.c			iso | tpip
    653 file netiso/tp_subr2.c			iso | tpip
    654 file netiso/tp_timer.c			iso | tpip
    655 file netiso/tp_trace.c			iso | tpip
    656 file netiso/tp_usrreq.c			iso | tpip
    657 file netnatm/natm.c			natm
    658 file netnatm/natm_pcb.c			natm
    659 file netnatm/natm_proto.c		natm
    660 file netns/idp_usrreq.c			ns
    661 file netns/ns.c				ns
    662 file netns/ns_error.c			ns
    663 file netns/ns_input.c			ns
    664 file netns/ns_ip.c			ns
    665 file netns/ns_output.c			ns
    666 file netns/ns_pcb.c			ns
    667 file netns/ns_proto.c			ns
    668 file netns/spp_debug.c			ns
    669 file netns/spp_usrreq.c			ns
    670 file nfs/krpc_subr.c			nfs
    671 file nfs/nfs_bio.c			nfs
    672 file nfs/nfs_boot.c			nfs
    673 file nfs/nfs_bootdhcp.c 		nfs & (nfs_boot_bootp | nfs_boot_dhcp)
    674 file nfs/nfs_bootparam.c		nfs & nfs_boot_bootparam
    675 file nfs/nfs_node.c			nfs
    676 file nfs/nfs_nqlease.c			nfsserver | nfs
    677 file nfs/nfs_serv.c			nfsserver
    678 file nfs/nfs_socket.c			nfsserver | nfs
    679 file nfs/nfs_srvcache.c			nfsserver
    680 file nfs/nfs_subs.c			nfsserver | nfs
    681 file nfs/nfs_syscalls.c			nfsserver | nfs
    682 file nfs/nfs_vfsops.c			nfs
    683 file nfs/nfs_vnops.c			nfs
    684 file ufs/ext2fs/ext2fs_alloc.c		ext2fs
    685 file ufs/ext2fs/ext2fs_balloc.c		ext2fs
    686 file ufs/ext2fs/ext2fs_bmap.c		ext2fs
    687 file ufs/ext2fs/ext2fs_bswap.c		ext2fs
    688 file ufs/ext2fs/ext2fs_inode.c		ext2fs
    689 file ufs/ext2fs/ext2fs_lookup.c		ext2fs
    690 file ufs/ext2fs/ext2fs_readwrite.c	ext2fs
    691 file ufs/ext2fs/ext2fs_subr.c		ext2fs
    692 file ufs/ext2fs/ext2fs_vfsops.c		ext2fs
    693 file ufs/ext2fs/ext2fs_vnops.c		ext2fs
    694 file ufs/ffs/ffs_alloc.c		ffs | mfs
    695 file ufs/ffs/ffs_balloc.c		ffs | mfs
    696 file ufs/ffs/ffs_bswap.c		(ffs | mfs | lfs) & ffs_ei
    697 file ufs/ffs/ffs_inode.c		ffs | mfs
    698 file ufs/ffs/ffs_subr.c			ffs | mfs
    699 file ufs/ffs/ffs_tables.c		ffs | mfs
    700 file ufs/ffs/ffs_vfsops.c		ffs | mfs
    701 file ufs/ffs/ffs_vnops.c		ffs | mfs
    702 file ufs/lfs/lfs_alloc.c		lfs
    703 file ufs/lfs/lfs_bio.c			lfs
    704 file ufs/lfs/lfs_balloc.c		lfs
    705 file ufs/lfs/lfs_cksum.c		lfs
    706 file ufs/lfs/lfs_debug.c		lfs
    707 file ufs/lfs/lfs_inode.c		lfs
    708 file ufs/lfs/lfs_segment.c		lfs
    709 file ufs/lfs/lfs_subr.c			lfs
    710 file ufs/lfs/lfs_syscalls.c		lfs
    711 file ufs/lfs/lfs_vfsops.c		lfs
    712 file ufs/lfs/lfs_vnops.c		lfs
    713 file ufs/mfs/mfs_vfsops.c		mfs
    714 file ufs/mfs/mfs_vnops.c		mfs
    715 file ufs/ufs/ufs_bmap.c			ffs | lfs | mfs | ext2fs
    716 file ufs/ufs/ufs_ihash.c		ffs | lfs | mfs | ext2fs
    717 file ufs/ufs/ufs_inode.c		ffs | lfs | mfs
    718 file ufs/ufs/ufs_lookup.c		ffs | lfs | mfs | ext2fs
    719 file ufs/ufs/ufs_quota.c		quota & (ffs | lfs | mfs)
    720 file ufs/ufs/ufs_vfsops.c		ffs | lfs | mfs | ext2fs
    721 file ufs/ufs/ufs_vnops.c		ffs | lfs | mfs | ext2fs
    722 file vm/device_pager.c			!uvm & devpager
    723 file vm/swap_pager.c			!uvm & swappager
    724 file vm/vm_fault.c			!uvm
    725 file vm/vm_glue.c			!uvm
    726 file vm/vm_init.c			!uvm
    727 file vm/vm_kern.c			!uvm
    728 file vm/vm_map.c			!uvm
    729 file vm/vm_meter.c			!uvm
    730 file vm/vm_mmap.c			!uvm
    731 file vm/vm_object.c			!uvm
    732 file vm/vm_page.c			!uvm
    733 file vm/vm_pageout.c			!uvm
    734 file vm/vm_pager.c			!uvm
    735 file vm/vm_swap.c			!uvm
    736 file vm/vm_unix.c			!uvm
    737 file vm/vm_user.c			!uvm
    738 file vm/vnode_pager.c			!uvm & vnodepager
    739 file uvm/uvm_amap.c			uvm
    740 file uvm/uvm_aobj.c			uvm
    741 file uvm/uvm_device.c			uvm
    742 file uvm/uvm_fault.c			uvm
    743 file uvm/uvm_glue.c			uvm
    744 file uvm/uvm_init.c			uvm
    745 file uvm/uvm_io.c			uvm
    746 file uvm/uvm_km.c			uvm
    747 file uvm/uvm_loan.c			uvm
    748 file uvm/uvm_map.c			uvm
    749 file uvm/uvm_meter.c			uvm
    750 file uvm/uvm_mmap.c			uvm
    751 file uvm/uvm_page.c			uvm
    752 file uvm/uvm_pager.c			uvm
    753 file uvm/uvm_pdaemon.c			uvm
    754 file uvm/uvm_pglist.c			uvm
    755 file uvm/uvm_stat.c			uvm
    756 file uvm/uvm_swap.c			uvm
    757 file uvm/uvm_unix.c			uvm
    758 file uvm/uvm_user.c			uvm
    759 file uvm/uvm_vnode.c			uvm
    760