files revision 1.795
1# $NetBSD: files,v 1.795 2006/08/25 17:32:27 matt Exp $ 2 3# @(#)files.newconf 7.5 (Berkeley) 5/10/93 4 5# 6# device classes 7# 8devclass disk 9devclass tape 10devclass ifnet 11devclass tty 12 13# options understood by the machine-independent part of the kernel 14# (note, these are case-sensitive) 15# 16defflag INSECURE 17defflag KCONT 18defflag KMEMSTATS 19defflag KTRACE 20defflag MBUFTRACE 21defflag SYSTRACE 22defparam DEFCORENAME 23defparam HZ 24defparam MAXUPRC 25defparam RTC_OFFSET 26defflag opt_pipe.h PIPE_SOCKETPAIR PIPE_NODIRECT 27 28defflag BUFQ_DISKSORT 29defflag BUFQ_FCFS 30defflag BUFQ_PRIOCSCAN 31defflag BUFQ_READPRIO 32defflag NEW_BUFQ_STRATEGY # same as BUFQ_READPRIO 33 34defparam SOMAXKVA 35defflag opt_sock_counters.h SOSEND_COUNTERS 36defflag opt_sosend_loan.h SOSEND_NO_LOAN 37 38defflag MULTIPROCESSOR 39 40defflag opt_config.h INCLUDE_CONFIG_FILE INCLUDE_JUST_CONFIG 41 42defparam opt_dump.h DUMP_ON_PANIC 43 44defflag opt_callout.h CALLWHEEL_STATS 45 46defflag opt_posix.h P1003_1B_SEMAPHORE 47defflag opt_sysv.h SYSVMSG SYSVSEM SYSVSHM 48defparam opt_sysvparam.h SHMMAXPGS SEMMNI SEMMNS SEMUME SEMMNU 49 50defflag opt_ntp.h PPS_SYNC NTP 51 52defflag opt_ptm.h NO_DEV_PTM COMPAT_BSDPTY 53 54defparam opt_kmempages.h NKMEMPAGES NKMEMPAGES_MIN NKMEMPAGES_MAX 55defflag opt_malloclog.h MALLOCLOG 56defparam opt_malloclog.h MALLOCLOGSIZE 57defflag opt_malloc_debug.h MALLOC_DEBUG 58defflag opt_pool.h POOL_DIAGNOSTIC 59defparam opt_poollog.h POOL_LOGSIZE 60 61defflag opt_revcache.h NAMECACHE_ENTER_REVERSE 62 63defflag opt_execfmt.h EXEC_AOUT EXEC_COFF EXEC_ECOFF EXEC_ELF32 64 EXEC_ELF64 EXEC_MACHO EXEC_SCRIPT 65 EXEC_ELF_NOTELESS 66 67defflag opt_dkwedge.h DKWEDGE_AUTODISCOVER 68 DKWEDGE_METHOD_BSDLABEL 69 DKWEDGE_METHOD_GPT 70 DKWEDGE_METHOD_MBR 71 72defflag opt_veriexec.h VERIFIED_EXEC_FP_SHA1 73 VERIFIED_EXEC_FP_SHA256 74 VERIFIED_EXEC_FP_SHA384 75 VERIFIED_EXEC_FP_SHA512 76 VERIFIED_EXEC_FP_MD5 77 VERIFIED_EXEC_FP_RMD160 78 79# Per system call number counts and times 80defflag opt_syscall_stats.h SYSCALL_STATS 81defflag opt_syscall_stats.h SYSCALL_TIMES: SYSCALL_STATS 82# Assume cpu_hascounter() returns true - to use disabled rdtsc() (for soekris) 83defflag opt_syscall_stats.h SYSCALL_TIMES_HASCOUNTER: SYSCALL_TIMES 84file kern/subr_syscall_stats.c syscall_stats 85 86defparam opt_pax.h PAX_MPROTECT 87 88defflag opt_fileassoc.h FILEASSOC 89defparam opt_fileassoc.h FILEASSOC_NHOOKS 90 91# compatibility options 92# 93defflag opt_compat_netbsd.h COMPAT_30 94defflag opt_compat_netbsd.h COMPAT_20: COMPAT_30 95defflag opt_compat_netbsd.h COMPAT_16: COMPAT_20 96defflag opt_compat_netbsd.h COMPAT_15: COMPAT_16 97defflag opt_compat_netbsd.h COMPAT_14: COMPAT_15 98defflag opt_compat_netbsd.h COMPAT_13: COMPAT_14 99defflag opt_compat_netbsd.h COMPAT_12: COMPAT_13 100defflag opt_compat_netbsd.h COMPAT_11: COMPAT_12 101defflag opt_compat_netbsd.h COMPAT_10: COMPAT_11 102defflag opt_compat_netbsd.h COMPAT_09: COMPAT_10 103defflag COMPAT_OSSAUDIO 104defflag COMPAT_FREEBSD: COMPAT_30 105defflag COMPAT_HPUX 106defflag COMPAT_IBCS2 107defflag COMPAT_IRIX 108defflag COMPAT_LINUX 109defflag COMPAT_LINUX32 110defflag COMPAT_OSF1 111defflag COMPAT_SUNOS: COMPAT_30 112defflag opt_compat_svr4.h COMPAT_SVR4 COMPAT_SVR4_32 SVR4_COMPAT_SOLARIS2 113defflag COMPAT_ULTRIX 114defflag COMPAT_NETBSD32 115defflag COMPAT_AOUT_M68K 116defflag COMPAT_M68K4K 117defflag COMPAT_MACH 118defflag COMPAT_DARWIN 119defflag COMPAT_VAX1K 120defflag COMPAT_43 121defflag COMPAT_PECOFF 122defflag opt_compat_netbsd.h COMPAT_NOMID 123 124# 125# Cryptography support. Include this early, since several things 126# use it. 127 128# Individual crypto transforms 129include "crypto/arc4/files.arc4" 130include "crypto/des/files.des" 131include "crypto/blowfish/files.blowfish" 132include "crypto/cast128/files.cast128" 133include "crypto/rijndael/files.rijndael" 134include "crypto/ripemd160/files.ripemd160" 135include "crypto/sha2/files.sha2" 136include "crypto/skipjack/files.skipjack" 137 138# General-purpose crypto processing framework. 139include "opencrypto/files.opencrypto" 140 141# 142# System monitoring framework 143# 144include "dev/sysmon/files.sysmon" 145 146# 147# Networking protocols 148# 149include "net80211/files.net80211" 150include "netatalk/files.netatalk" 151include "netbt/files.netbt" 152include "netinet/files.netinet" 153include "netinet/files.ipfilter" 154include "netinet6/files.netinet6" 155include "netinet6/files.ipsec" 156include "netipsec/files.netipsec" 157include "netiso/files.netiso" 158include "netnatm/files.netnatm" 159include "netsmb/files.netsmb" 160include "net/files.pf" 161 162obsolete defflag CCITT # obsolete 163obsolete defflag HDLC # obsolete 164obsolete defflag LLC # obsolete 165obsolete defflag opt_ns.h NS NSIP # obsolete 166obsolete defflag IPX # obsolete 167defflag PFIL_HOOKS # pfil(9) 168defflag opt_bridge_ipf.h BRIDGE_IPF # bridge(4) use inet_pfil_hooks 169defflag opt_ppp.h PPP_DEFLATE PPP_BSDCOMP PPP_FILTER 170 # Include deflate or bsd 171 # compression, enable pppd 172 # packet filtering support 173defflag opt_pppoe.h PPPOE_SERVER PPPOE_TERM_UNKNOWN_SESSIONS 174 175# networking options 176# 177defflag GATEWAY 178defparam opt_nmbclusters.h NMBCLUSTERS 179defparam SB_MAX 180 181# file system options 182# 183defflag SOFTDEP # XXX files.ufs? 184defflag QUOTA # XXX files.ufs? 185defflag VNODE_LOCKDEBUG 186defflag MAGICLINKS 187 188# buffer cache size options 189# 190defparam opt_bufcache.h BUFCACHE BUFPAGES 191 192# userconf 193# 194defflag USERCONF 195 196# sysctl related 197# 198defflag opt_sysctl.h SYSCTL_DISALLOW_CREATE SYSCTL_DISALLOW_KWRITE 199 SYSCTL_DEBUG_SETUP SYSCTL_DEBUG_CREATE 200 SYSCTL_INCLUDE_DESCR 201 202# 203# Not entirely MI, but present on multiple arch's 204# 205 206# PC-style MBR handling 207# 208defflag opt_mbr.h COMPAT_386BSD_MBRPART 209 210# 211# debugging options 212# 213include "ddb/files.ddb" # in-kernel dynamic debugger 214 215defflag opt_kgdb.h KGDB 216defparam opt_kgdb.h KGDB_DEV KGDB_DEVNAME KGDB_DEVPORT 217 KGDB_DEVADDR KGDB_DEVRATE KGDB_DEVMODE 218defflag LOCKDEBUG 219defflag SYSCALL_DEBUG 220defflag opt_kstack.h KSTACK_CHECK_MAGIC 221 222# memory (ram) disk options 223# 224defflag opt_md.h MEMORY_DISK_HOOKS MEMORY_DISK_IS_ROOT 225 MEMORY_DISK_DYNAMIC 226defparam opt_md.h MEMORY_DISK_SERVER MEMORY_DISK_ROOT_SIZE 227 MEMORY_RBFLAGS 228 229# Support for hardware performance monitoring counters 230# 231defflag opt_perfctrs.h PERFCTRS 232 233# Machine-independant device majors assignements 234include "conf/majors" 235 236# generic attributes 237# 238define audiobus { } 239define midibus { } 240define midisyn 241define ata {[channel = -1]} 242define sata 243define scsi_core 244define scsi {[channel = -1]}: scsi_core 245define ata_hl {[drive = -1]} 246define atapi { } 247define radiodev { } 248define gpibdev {[address = -1]} 249define gpiobus { } 250define onewirebus { } 251define pckbport {[slot = -1]} 252define pckbport_machdep_cnattach 253define firmload 254 255# audio device attributes 256# 257define mulaw 258define auconv 259define aurateconv 260 261# audio and midi devices, attaches to audio hardware driver 262# 263device audio 264attach audio at audiobus 265device midi 266attach midi at midibus 267 268# console bell via audio device 269# 270define audiobell 271 272# I2C device support 273include "dev/i2c/files.i2c" 274 275# IR device support 276include "dev/ir/files.ir" 277 278# Parallel Port Bus support 279include "dev/ppbus/files.ppbus" 280 281# raster operations attributes 282# 283define rasops1 284define rasops2 285define rasops4 286define rasops8 287define rasops15 288define rasops16 289define rasops24 290define rasops32 291 292# splash screen support 293include "dev/splash/files.splash" 294 295# videomode support 296include "dev/videomode/files.videomode" 297 298# net device attributes - we have generic code for arc(net), ether(net), 299# fddi, token ring, atm and eco(net). 300# 301define arc 302define atm 303define eco 304define ether 305define fddi 306define hippi 307define ieee1394 308define token 309define sppp 310define wlan: arc4, rijndael 311define crypto 312 313# devices ARPing IPv4 pull this in: 314# 315define arp 316 317# 318# ALTQ network traffic shaping subsystem 319# 320include "altq/files.altq" 321 322# 323# IPKDB kernel debugger 324# 325include "ipkdb/files.ipkdb" 326 327# Logical disk 328# 329device ld: disk 330file dev/ld.c ld needs-flag 331 332# 333# MII/PHY support for network devices 334# 335include "dev/mii/files.mii" 336 337# 338# RAIDframe 339# 340include "dev/raidframe/files.raidframe" 341 342# 343# Hardware-assisted data mover API 344# 345include "dev/dmover/files.dmover" 346 347# 348# "Chipset" drivers. These are the bus-independent routines which 349# contain the cfdrivers. Attachments are provided by files.<bus> 350# 351 352# Adaptec AIC-6[32]60 ICs 353# 354device aic: scsi 355file dev/ic/aic6360.c aic 356 357# SMC 93Cx6 Serial EEPROM devices 358# 359define smc93cx6 360file dev/ic/smc93cx6.c smc93cx6 361 362# Adaptec 2[789]4X, 394X, aic7770 and aic78[5678]0 SCSI controllers 363# 364defparam opt_ahc.h AHC_DEBUG 365defflag opt_ahc.h AHC_NO_TAGS 366device ahc: scsi 367define ahc_seeprom 368define ahc_aic77xx 369file dev/ic/aic7xxx.c ahc 370file dev/ic/aic7xxx_osm.c ahc 371file dev/ic/aic7xxx_seeprom.c ahc_seeprom 372file dev/ic/aic77xx.c ahc_aic77xx 373 374# Adaptec aic79xx SCSI controllers 375defflag opt_ahd.h AHD_DEBUG 376device ahd: scsi 377file dev/ic/aic79xx.c ahd 378file dev/ic/aic79xx_osm.c ahd 379 380# DPT EATA SCSI controllers 381# 382device dpt: scsi 383file dev/ic/dpt.c dpt 384 385# Compaq Smart ARRAY controllers 386# 387device cac {unit = -1} 388file dev/ic/cac.c cac 389 390attach ld at cac with ld_cac 391file dev/ic/ld_cac.c ld_cac 392 393# HP/Compaq Command Interface for SCSI-3 Support 394# 395device ciss: scsi 396file dev/ic/ciss.c ciss 397 398# Mylex DAC960 RAID controllers 399# 400device mlx {unit = -1} 401file dev/ic/mlx.c mlx needs-flag 402 403attach ld at mlx with ld_mlx 404file dev/ic/ld_mlx.c ld_mlx 405 406# ICP-Vortex/Intel RAID controllers 407# 408device icp {unit = -1} 409file dev/ic/icp.c icp needs-flag 410file dev/ic/icp_ioctl.c icp 411 412attach ld at icp with ld_icp 413file dev/ic/ld_icp.c ld_icp 414 415device icpsp: scsi 416file dev/ic/icpsp.c icpsp 417attach icpsp at icp 418 419# Adaptec FSA RAID controllers 420# 421device aac {unit = -1} 422file dev/ic/aac.c aac 423 424attach ld at aac with ld_aac 425file dev/ic/ld_aac.c ld_aac 426 427# AdvanSys 1200A, 1200B and ULTRA SCSI controllers 428# 429device adv: scsi 430file dev/ic/adv.c adv 431file dev/ic/advlib.c adv 432file dev/ic/advmcode.c adv 433 434# AdvanSys ULTRA WIDE SCSI controllers 435# 436device adw: scsi 437file dev/ic/adw.c adw 438 439# BusLogic MultiMaster and MultiMaster Ultra SCSI controllers 440# (Must be declared before AHA to ensure bha probes before aha. 441# Probing AHA first configures bhas as aha, via their AHA 442# hardware-compatibility mode.) 443# 444device bha: scsi 445file dev/ic/bha.c bha 446 447# Adaptec AHA-154x and AHA-164x controllers 448# (must be after bha, see above) 449# 450device aha: scsi 451file dev/ic/aha.c aha 452 453# Initio INIC-940/950 SCSI controllers 454# 455device iha: scsi 456file dev/ic/iha.c iha 457 458# Qlogic ISP 10x0 SCSI Controllers 459# 460defflag opt_isp.h ISP_DISABLE_1020_SUPPORT 461 ISP_DISABLE_1080_SUPPORT 462 ISP_DISABLE_2100_SUPPORT 463 ISP_DISABLE_2200_SUPPORT 464 ISP_DISABLE_FW ISP_TARGET_MODE 465 ISP_FW_CRASH_DUMP 466defparam opt_isp.h ISP_LOGDEFAULT 467device isp: scsi 468file dev/ic/isp.c isp 469file dev/ic/isp_netbsd.c isp 470file dev/ic/isp_target.c isp & isp_target_mode 471 472# LSILogic Fusion-MPT I/O Processor SCSI/FC Controllers 473# 474device mpt: scsi 475file dev/ic/mpt.c mpt 476file dev/ic/mpt_debug.c mpt 477file dev/ic/mpt_netbsd.c mpt 478 479# Workbit NinjaSCSI-32 controllers 480device njs: scsi 481file dev/ic/ninjascsi32.c njs 482 483# Symbios/NCR 53c700 SCSI controllers 484device oosiop: scsi 485file dev/ic/oosiop.c oosiop 486 487# Symbios/NCR 53c710 SCSI controllers 488# 489device osiop: scsi 490file dev/ic/osiop.c osiop 491 492# common stuff for siop and esiop 493# 494define siop_common 495file dev/ic/siop_common.c siop_common 496 497# Symbios/NCR 53c720/53c8xx SCSI controllers 498# 499device siop: scsi,siop_common 500file dev/ic/siop.c siop 501defflag opt_siop.h SIOP_SYMLED 502 503device esiop: scsi,siop_common 504file dev/ic/esiop.c esiop 505 506# UltraStor SCSI controllers 507# 508device uha: scsi 509file dev/ic/uha.c uha 510 511# Aironet PC4500/PC4800 512# 513device an: arp, wlan, ifnet 514file dev/ic/an.c an 515 516# AMD 79c930-based 802.11 cards 517# 518device awi: arp, wlan, ifnet 519file dev/ic/awi.c awi 520file dev/ic/am79c930.c awi 521 522# Lucent & Intersil WaveLan IEEE (802.11) 523# 524device wi: arp, wlan, ifnet 525file dev/ic/wi.c wi 526 527# Atheros 5210/5211/5212 multi-mode 802.11 528# 529defflag opt_athhal.h ATHHAL_ASSERT ATHHAL_DEBUG ATHHAL_DEBUG_ALQ 530device ath: arp, wlan, ifnet 531file dev/ic/ath.c ath 532file dev/ic/ath_netbsd.c ath 533file dev/ic/athrate-sample.c ath 534file contrib/dev/ath/netbsd/ah_osdep.c ath 535object /athhal.o ath 536 537# ADMtek ADM8211 802.11 538# 539device atw: arp, wlan, ifnet, smc93cx6 540file dev/ic/atw.c atw 541 542# Realtek RTL8180 802.11 543# 544device rtw: arp, wlan, ifnet, smc93cx6 545file dev/ic/rtw.c rtw 546file dev/ic/rtwphy.c rtw 547file dev/ic/rtwphyio.c rtw 548 549# Ralink RT2500/RT2600 802.11 550device ral: arp, ether, ifnet, wlan, firmload 551file dev/ic/rt2560.c ral 552file dev/ic/rt2661.c ral 553 554# 3Com Etherlink-III Ethernet controller 555# 556device ep: arp, ether, ifnet, mii, mii_bitbang 557file dev/ic/elink3.c ep 558 559# 3Com EtherLink XL Controller 560# 561device ex: arp, ether, ifnet, mii, mii_bitbang 562file dev/ic/elinkxl.c ex 563 564# DEC EtherWORKS III (LEMAC) Ethernet controllers 565# 566device lc: arp, ether, ifnet 567file dev/ic/lemac.c lc 568 569# LANCE and PCnet Ethernet controllers 570# 571device le: arp, ether, ifnet 572define le24 573define le32 574file dev/ic/am7990.c le24 575file dev/ic/am79900.c le32 576file dev/ic/lance.c le24 | le32 577 578# DEC DEPCA-family of LANCE Ethernet controllers 579# 580device depca { }: le24 581file dev/ic/depca.c depca 582attach le at depca with le_depca 583 584# Sun HME Ethernet controllers 585# 586device hme: arp, ether, ifnet, mii 587file dev/ic/hme.c hme 588 589# Sun GEM Ethernet controllers 590# 591device gem: arp, ether, ifnet, mii 592file dev/ic/gem.c gem 593 594# 8390-family Ethernet controllers 595# 596defflag opt_ipkdb.h IPKDB_DP8390 597define dp8390nic 598file dev/ic/dp8390.c dp8390nic | ipkdb_dp8390 599 600# National Semiconductor DP83905 AT/LANTIC Ethernet media support 601# 602define dp83905 603file dev/ic/dp83905.c dp83905 604 605# Macronix MX98905 Ethernet controller 606# (use as an attribute for an "ne" bus attachment) 607# 608define mx98905 609file dev/ic/mx98905.c mx98905 610 611# TROPIC Token-Ring controller 612# 613device tr: arp, token, ifnet 614file dev/ic/tropic.c tr 615 616# NCR 5380 SCSI Bus Controller 617# 618define ncr5380sbc 619file dev/ic/ncr5380sbc.c ncr5380sbc 620device nca: scsi, ncr5380sbc 621 622# Sun sc PAL SCSI Bus Controller 623# 624define sunscpal 625file dev/ic/sunscpal.c sunscpal 626device ssc: scsi, sunscpal 627 628# DEC FDDI Chipset 629# 630define pdq 631file dev/ic/pdq.c pdq 632file dev/ic/pdq_ifsubr.c pdq 633 634# Cyclades Cyclom-8/16/32 635# 636device cy: tty 637file dev/ic/cy.c cy needs-flag 638 639# Efficient Networks, Inc. ATM interface 640# 641device en: atm, ifnet 642file dev/ic/midway.c en 643 644# NCR 53x9x or Emulex ESP SCSI Controller 645# 646define ncr53c9x 647device esp: scsi, ncr53c9x 648file dev/ic/ncr53c9x.c ncr53c9x 649 650# Fujitsu MB87030/MB89352 SCSI Protocol Controller 651device spc: scsi 652file dev/ic/mb89352.c spc 653 654# Hitachi HD44780 LCD panel controller 655define hd44780 656file dev/ic/hd44780_subr.c hd44780 657file dev/ic/lcdkp_subr.c hd44780 658 659# Matrix keypad 660define matrixkp 661file dev/ic/matrixkp_subr.c matrixkp 662 663# Hitachi HD64570 serial controller 664# 665define hd64570 666file dev/ic/hd64570.c hd64570 667 668# Riscom/N2 ISA/PCI Sync Serial Controller 669# 670device ntwoc: ifnet, hd64570 671 672# Intel 82586 Ethernet Controller 673# 674define i82586 675file dev/ic/i82586.c i82586 676 677# Intel 82596 Ethernet Controller 678# 679define i82596 680file dev/ic/i82596.c i82596 681 682# Intel 82557/82558/82559 Ethernet Controller 683# 684device fxp: ether, ifnet, arp, mii 685file dev/ic/i82557.c fxp 686 687# SEEQ 8005 Advanced Ethernet Data Link Controller 688# 689define seeq8005 690file dev/ic/seeq8005.c seeq8005 691 692# SMC 91Cxx Ethernet Controller 693# 694device sm: arp, ether, ifnet, mii, mii_bitbang 695file dev/ic/smc91cxx.c sm 696 697# SMC 83C170 EPIC/100 Fast Ethernet Controller 698# 699device epic: arp, ether, ifnet, mii 700file dev/ic/smc83c170.c epic 701 702# DEC SGEC Second Generation Ethernet Controller 703# 704define sgec 705file dev/ic/sgec.c sgec 706 707# MB86950 Ethernet Controller 708# 709define mb86950 710file dev/ic/mb86950.c mb86950 711 712# MB8696x Ethernet Controller 713# 714define mb86960 715file dev/ic/mb86960.c mb86960 716 717# Generic MB8696x Ethernet Controller driver 718# 719device mbe: arp, ether, ifnet, mb86960 720 721# Interwave Am78C201 audio driver 722# 723define interwave 724file dev/ic/interwave.c interwave 725 726# TMS 320av110 MPEG2/audio driver 727# 728define tms320av110 729file dev/ic/tms320av110.c tms320av110 730 731# Novell NE2000-compatible Ethernet cards, based on the 732# National Semiconductor DS8390. 733# 734defflag opt_ipkdb.h IPKDB_NE : IPKDB_DP8390 735device ne: ether, ifnet, arp, dp8390nic, mii 736file dev/ic/ne2000.c ne | ipkdb_ne 737 738# 8250/16[45]50-based "com" ports 739# 740defflag opt_com.h COM_DEBUG 741# XXX In a perfect world, this would be done with attributes 742defflag opt_com.h COM_16650 COM_HAYESP COM_PXA2X0 COM_AU1X00 743 COM_REGMAP 744device com { } : tty 745file dev/ic/com.c com needs-flag 746 747# PC-like keyboard controller 748# 749device pckbc: pckbport 750file dev/ic/pckbc.c pckbc needs-flag 751 752device attimer 753file dev/ic/attimer.c attimer needs-flag 754 755# Cirrus Logic CD240[01] 4-port Multi-Protocol Communications Controller 756# 757device clmpcc: tty 758file dev/ic/clmpcc.c clmpcc needs-flag 759 760# National Semiconductor LM7[89] 761# 762device lm: sysmon_envsys 763file dev/ic/nslm7x.c lm needs-flag 764 765# Essential Communications Corp. HIPPI Interface 766# 767device esh: hippi, ifnet 768file dev/ic/rrunner.c esh needs-flag 769 770# SMC 90c26, SMC 90C56 (and 90C66 if in compat mode) chip driver 771# 772device bah: ifnet, arc, arp 773file dev/ic/smc90cx6.c bah 774 775# OPL2/OPL3 FM synth driver 776# 777device opl: midibus, midisyn 778file dev/ic/opl.c opl 779file dev/ic/oplinstrs.c opl 780 781# MPU401 MIDI UART compatibles 782# 783device mpu: midibus 784file dev/ic/mpu.c mpu needs-flag 785 786# AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers 787# 788define ad1848 789file dev/ic/ad1848.c ad1848 790 791# AMD 7930 audio/ISDN codec 792# 793define am7930 794file dev/ic/am7930.c am7930 795 796# SPARC `SUNW,audiocs' 797# 798device audiocs: audiobus, auconv, ad1848 799file dev/ic/cs4231.c audiocs 800 801# AC-97 CODECs 802# 803define ac97 804file dev/ic/ac97.c ac97 805 806# Oki MSM6258 support code 807# 808define msm6258 809file dev/ic/msm6258.c msm6258 810 811# LSI64854 DMA controller back-end 812# 813define lsi64854 814file dev/ic/lsi64854.c lsi64854 815 816# Cirrus Logic CL-CD180/1864/1865 multi port serial controller back-end 817# 818define cd18xx 819file dev/ic/cd18xx.c cd18xx 820 821# Realtek 8019/8029 NE2000-compatible network interface subroutines 822# 823define rtl80x9 824file dev/ic/rtl80x9.c rtl80x9 825 826# Realtek 8129/8139 Ethernet controllers 827# 828device rtk: ether, ifnet, arp, mii 829file dev/ic/rtl81x9.c rtk | re 830 831# Realtek 8169 Ethernet controllers 832# 833device re: ether, ifnet, arp, mii 834file dev/ic/rtl8169.c re 835 836# Common code for ESDI/IDE/etc. controllers 837# 838define wdc_common 839device wdc: ata, wdc_common 840 841device atabus: atapi,ata_hl 842attach atabus at ata 843file dev/ic/wdc.c atabus & wdc_common 844 845# CHIPS and Technologies 82C7[12][01] Universal Peripheral Controller 846# 847device upc { [offset = -1] } 848attach wdc at upc with wdc_upc 849attach com at upc with com_upc 850attach lpt at upc with lpt_upc 851file dev/ic/upc.c upc 852file dev/ic/wdc_upc.c wdc_upc 853file dev/ic/com_upc.c com_upc 854file dev/ic/lpt_upc.c lpt_upc 855 856# Common code for ISA/PCMCIA (non 802.11) WaveLAN adapters 857# 858define wavelan 859device wl: ether, ifnet, arp 860file dev/ic/wavelan.c wavelan 861 862# DECchip 21x4x Ethernet controller family, and assorted clones. 863# 864device tlp: arp, ether, ifnet, mii, mii_bitbang 865file dev/ic/tulip.c tlp 866 867# Adaptec AIC-6915 Ethernet interface 868# 869device sf: arp, ether, ifnet, mii 870file dev/ic/aic6915.c sf 871 872# Mostek time-of-day clock and NVRAM 873# 874define mk48txx 875file dev/ic/mk48txx.c mk48txx 876 877# Intersil 7170 time-of-day clock 878# 879define intersil7170 880file dev/ic/intersil7170.c intersil7170 881 882# National Semiconductor MM58167 time-of-day clock 883# 884define mm58167 885file dev/ic/mm58167.c mm58167 886 887# Motorola mc146818 (and compatible) time-of-day clock 888# 889define mc146818 890file dev/ic/mc146818.c mc146818 891 892# D-Link DL10019/10022 NE2000-compatible network interface subroutines 893# 894define dl10019 895file dev/ic/dl10019.c dl10019 896 897# ASIX AX88190 NE2000-compatible network interface subroutines 898# 899define ax88190 900file dev/ic/ax88190.c ax88190 901 902# WD/SMC 80x3 family, SMC Elite Ultra [8216], SMC EtherEZ 903# 904device we: ether, ifnet, arp, dp8390nic 905file dev/ic/we.c we 906 907# Allied-Telesis Ethernet driver based on Fujitsu MB8696xA controllers 908# 909device ate: arp, ether, ifnet, mb86960 910 911# Fujitsu FMV-18x Ethernet driver based on Fujitsu MB8696xA controllers 912# 913device fmv: arp, ether, ifnet, mb86960 914file dev/ic/fmv.c fmv 915 916# Crystal Semiconductor CS8900, CS8920, and CS8920M Ethernet 917# 918device cs: arp, ether, ifnet 919device tscs: arp, ether, ifnet 920file dev/ic/cs89x0.c cs | tscs 921 922# Radio device attributes 923# 924define tea5757 925file dev/ic/tea5757.c tea5757 926define lm700x 927file dev/ic/lm700x.c lm700x 928 929# ACPI power management timer (hardware access, independent of ACPI) 930# 931define acpipmtimer 932file dev/ic/acpipmtimer.c acpipmtimer 933 934# Definitions for wscons 935# device attributes: display, display with emulator, keyboard, and mouse 936# 937define wsdisplaydev {[kbdmux = 1]} 938define wsemuldisplaydev {[console = -1], [kbdmux = 1]} 939define wskbddev {[console = -1], [mux = 1]} 940define wsmousedev {[mux = 0]} 941define vcons 942# attribute to pull in raster support 943# 944define wsrasteremulops 945# common PC display functions 946# 947defflag opt_pcdisplay.h PCDISPLAY_SOFTCURSOR 948define pcdisplayops 949file dev/ic/pcdisplay_subr.c pcdisplayops 950file dev/ic/pcdisplay_chars.c pcdisplayops 951# an attribute used by arch specific config files to include /dev/fb* (or 952# equivalent) support - on most archs this is just a NOP (untill, maybe 953# someday when we might make /dev/fb* support MI) 954define fb 955# VGA graphics 956# 957defparam opt_vga.h VGA_CONSOLE_SCREENTYPE 958defflag opt_vga.h VGA_CONSOLE_ATI_BROKEN_FONTSEL 959defflag opt_vga.h VGA_RASTERCONSOLE 960defflag opt_vga.h VGA_RESET 961device vga: wsemuldisplaydev, pcdisplayops 962file dev/ic/vga.c vga & !vga_rasterconsole needs-flag 963file dev/ic/vga_raster.c vga_rasterconsole needs-flag 964file dev/ic/vga_subr.c vga | vga_rasterconsole 965file dev/ic/vga_common.c vga | vga_rasterconsole 966# Integraphics Systems IGA168x and CyberPro framebuffers (linear non-VGA mode) 967# 968device igsfb: wsemuldisplaydev, wsrasteremulops, rasops8, vcons 969file dev/ic/igsfb.c igsfb needs-flag 970file dev/ic/igsfb_subr.c igsfb 971 972# STI (hp graphics) 973device sti: wsemuldisplaydev 974file dev/ic/sti.c sti & (sti_pci | sti_sgc | sti_phantom) 975 976# Attributes which machine-independent bus support can be attached to. 977# These should be defined here, because some of these busses can have 978# devices which provide these attributes, and we'd like to avoid hairy 979# ordering constraints on inclusion of the busses' "files" files. 980# 981define isabus { } # ISA attachment 982define eisabus { } # EISA attachment 983define pcibus {[bus = -1]} # PCI attachment 984define tcbus { } # TurboChannel attachment 985define mcabus { } # MicroChannel attachment 986define usbus { } # USB attachment 987define fwbus { } # IEEE 1394 attachment 988define vmebus { } # VME bus attachment 989define acpibus { } # ACPI "bus" attachment 990define pcmciabus { [controller = -1], [socket = -1]} # PCMCIA bus attachment 991define cbbus {[slot = -1]} # CardBus attachment 992define pcmciaslot {[slot = -1]} # PCMCIA slot itself 993 994# We need the USB bus controllers here so different busses can 995# use them in an 'attach-with'. 996# UHCI USB controller 997# 998 999defparam USB_MEM_RESERVE 1000 1001device uhci: usbus 1002file dev/usb/uhci.c uhci needs-flag 1003 1004# OHCI USB controller 1005# 1006device ohci: usbus 1007file dev/usb/ohci.c ohci needs-flag 1008 1009# EHCI USB controller 1010# 1011device ehci: usbus 1012file dev/usb/ehci.c ehci needs-flag 1013 1014# SL811HS/T USB controller 1015defflag opt_slhci.h SLHCI_DEBUG 1016device slhci: usbus 1017file dev/ic/sl811hs.c slhci needs-flag 1018 1019# Myson MTD803 3-in-1 Fast Ethernet Controller 1020device mtd: arp, ether, ifnet, mii 1021file dev/ic/mtd803.c mtd 1022 1023# radio devices, attaches to radio hardware driver 1024device radio 1025attach radio at radiodev 1026 1027# IEEE 1394 controllers 1028# (These need to be here since it will have both PCI and CardBus attachments) 1029# 1030device fwohci: fwbus 1031 1032# Sony Programmable I/O Controller 1033device spic: wsmousedev 1034file dev/ic/spic.c spic 1035 1036# IBM CPC700 PowerPC bridge 1037define cpcbus { addr, [irq=-1] } 1038device cpc: cpcbus, pcibus 1039file dev/ic/cpc700.c cpc 1040 1041attach com at cpcbus with com_cpcbus 1042file dev/ic/com_cpcbus.c com_cpcbus 1043 1044device cpctim 1045attach cpctim at cpcbus 1046file dev/ic/timer_cpcbus.c cpctim 1047 1048device cpciic 1049attach cpciic at cpcbus with iic_cpcbus 1050file dev/ic/iic_cpcbus.c iic_cpcbus 1051 1052 1053# Attribute used by various things that need BPF's virtual machine 1054# 1055define bpf_filter 1056defparam opt_bpf.h BPF_BUFSIZE 1057 1058# Attributes used by the ISDN subsystem 1059# 1060define isdndev # the ISDN subsystem 1061define passive_isdn # files needed by passive cards (XXX - protocol 1062 # specific) 1063define isdncapi # ISDN CAPI (http://www.capi.org/) 1064 1065# The isac found on the Fritz V2.0 Card. 1066define nisacsx 1067file dev/ic/isacsx.c nisacsx needs-flag 1068 1069# The 'standard' isac 1070define nisac 1071file dev/ic/isac.c nisac needs-flag 1072 1073# ISDN cards based on the Siemens ISAC/HSCX chipset (or lookalikes) 1074# 1075device isic: isdndev, passive_isdn, nisac 1076 1077file dev/ic/isic.c isic 1078file dev/ic/isic_l1.c isic|ifpci|ifritz 1079file dev/ic/isic_l1fsm.c isic|ifpci|ifritz 1080file dev/ic/hscx.c isic 1081file dev/ic/isic_bchan.c isic 1082 1083# (old) Diehl active ISDN cards 1084# 1085device daic: isdndev 1086file dev/ic/daic.c daic 1087 1088# AWM B1/T1 1089# XXX: passive_isdn 1090device iavc: isdndev, isdncapi, passive_isdn 1091file dev/ic/iavc.c iavc 1092 1093# legitimate pseudo-devices 1094# 1095defpseudo vnd { }: disk 1096defflag opt_vnd.h VND_COMPRESSION 1097defpseudo ccd: disk 1098defpseudo cgd: disk, des, blowfish, cast128, rijndael 1099defpseudo md { }: disk 1100defpseudo fss: disk 1101 1102defpseudo pty: tty 1103defpseudo rnd 1104defpseudo ksyms 1105defpseudo nullcons 1106 1107defpseudo loop: ifnet 1108defpseudo sl: ifnet 1109defpseudo ppp: ifnet, bpf_filter 1110defpseudo pppoe: ifnet, ether, sppp 1111defpseudo sppp: ifnet 1112defpseudo tun: ifnet 1113defpseudo vlan: ifnet, ether 1114defpseudo bridge: ifnet, ether 1115defpseudo bpfilter: ifnet, bpf_filter 1116defpseudo strip: ifnet 1117defpseudo gre: ifnet 1118defpseudo gif: ifnet 1119defpseudo faith: ifnet 1120defpseudo stf: ifnet 1121defpseudo tap { }: ifnet, ether, arp, bpf_filter 1122defpseudo carp: ifnet, ether, arp, bpf_filter 1123 1124defpseudo sequencer 1125defpseudo clockctl 1126defpseudo irix_kmem 1127defpseudo irix_usema 1128 1129# ISDN userland pseudo devices 1130# 1131defpseudo isdntrc: isdndev, tty 1132defpseudo isdnbchan: isdndev, tty 1133defpseudo isdntel: isdndev, tty 1134defpseudo isdnctl: isdndev, tty 1135defpseudo isdn: isdndev, tty 1136 1137# ISDN network interfaces 1138defpseudo irip: isdndev, ifnet 1139defflag opt_irip.h IRIP_VJ 1140defpseudo ippp: isdndev, sppp, ifnet 1141 1142# KTTCP network throughput testing pseudo-device 1143defpseudo kttcp 1144file dev/kttcp.c kttcp needs-flag 1145 1146# Veriexec 1147defpseudo veriexec 1148file kern/kern_verifiedexec.c veriexec 1149file dev/verified_exec.c veriexec needs-flag 1150 1151# isochronous pseudo device for IEEE 1394, i.LINK or FireWire 1152defpseudo fwiso: ieee1394 1153 1154# driver attach / detach user interface 1155defpseudo drvctl 1156file kern/kern_drvctl.c drvctl 1157 1158# 1159# File systems 1160# 1161include "coda/files.coda" 1162include "fs/adosfs/files.adosfs" 1163include "fs/cd9660/files.cd9660" 1164include "fs/filecorefs/files.filecorefs" 1165include "fs/msdosfs/files.msdosfs" 1166include "fs/ntfs/files.ntfs" 1167include "fs/ptyfs/files.ptyfs" 1168include "fs/udf/files.udf" 1169include "fs/smbfs/files.smbfs" 1170include "fs/sysvbfs/files.sysvbfs" 1171include "fs/tmpfs/files.tmpfs" 1172include "fs/union/files.union" 1173include "miscfs/fdesc/files.fdesc" 1174include "miscfs/kernfs/files.kernfs" 1175include "miscfs/nullfs/files.nullfs" 1176include "miscfs/overlay/files.overlay" 1177include "miscfs/portal/files.portal" 1178include "miscfs/procfs/files.procfs" 1179include "miscfs/umapfs/files.umapfs" 1180include "nfs/files.nfs" 1181include "ufs/files.ufs" 1182 1183# 1184# UVM (virtual memory) 1185# 1186include "uvm/files.uvm" 1187 1188# 1189# kernel sources 1190# 1191file dev/auconv.c auconv | mulaw 1192file dev/audio.c audio | midi | midibus needs-flag 1193file dev/audiobell.c audiobell 1194file dev/aurateconv.c aurateconv needs-flag 1195file dev/ccd.c ccd needs-flag 1196file dev/cgd.c cgd needs-flag 1197file dev/cgd_crypto.c cgd 1198file dev/clock_subr.c 1199file dev/clockctl.c clockctl needs-flag 1200file dev/dksubr.c cgd | xbd 1201file dev/dkwedge/dk.c 1202file dev/dkwedge/dkwedge_bsdlabel.c dkwedge_method_bsdlabel 1203file dev/dkwedge/dkwedge_gpt.c dkwedge_method_gpt 1204file dev/dkwedge/dkwedge_mbr.c dkwedge_method_mbr 1205file dev/firmload.c firmload 1206file dev/fss.c fss needs-count 1207file dev/md.c md needs-count 1208file dev/midi.c midi | midibus needs-flag 1209file dev/midictl.c midisyn 1210file dev/midisyn.c midisyn 1211file dev/mm.c 1212file dev/mulaw.c mulaw needs-flag 1213file dev/nullcons_subr.c nullcons needs-flag 1214file dev/radio.c radio needs-flag 1215file dev/rnd.c rnd needs-flag 1216file dev/rndpool.c rnd needs-flag 1217file dev/sequencer.c sequencer needs-flag 1218file dev/vnd.c vnd needs-flag 1219file kern/bufq_disksort.c bufq_disksort 1220file kern/bufq_fcfs.c bufq_fcfs 1221file kern/bufq_priocscan.c bufq_priocscan 1222file kern/bufq_readprio.c bufq_readprio | new_bufq_strategy 1223file kern/core_elf32.c exec_elf32 1224file kern/core_elf64.c exec_elf64 1225file kern/core_netbsd.c exec_aout | exec_coff | exec_ecoff | 1226 exec_macho | lkm 1227file kern/cnmagic.c 1228file kern/exec_aout.c exec_aout 1229file kern/exec_conf.c 1230file kern/exec_ecoff.c exec_ecoff 1231file kern/exec_elf32.c exec_elf32 1232file kern/exec_elf64.c exec_elf64 1233file kern/exec_macho.c exec_macho 1234file kern/exec_script.c exec_script 1235file kern/exec_subr.c 1236file kern/init_main.c 1237file kern/init_sysctl.c 1238file kern/init_sysent.c 1239file kern/kern_acct.c 1240file kern/kern_auth.c 1241file kern/kern_clock.c 1242file kern/kern_descrip.c 1243file kern/kern_event.c 1244file kern/kern_exec.c 1245file kern/kern_exit.c 1246file kern/kern_fork.c 1247file kern/kern_kcont.c kcont 1248file kern/kern_kthread.c 1249file kern/kern_ktrace.c 1250file kern/kern_ksyms.c ksyms | ddb | lkm needs-flag 1251file kern/kern_lkm.c lkm 1252file kern/kern_lock.c 1253file kern/kern_lwp.c 1254file kern/kern_malloc.c 1255file kern/kern_malloc_debug.c malloc_debug 1256file kern/kern_fileassoc.c fileassoc 1257file kern/kern_ntptime.c 1258file kern/kern_pax.c pax_mprotect 1259file kern/kern_physio.c 1260file kern/kern_proc.c 1261file kern/kern_prot.c 1262file kern/kern_ras.c 1263file kern/kern_resource.c 1264file kern/kern_sa.c 1265file kern/kern_securelevel.c 1266file kern/kern_sig.c 1267file kern/kern_systrace.c systrace 1268file kern/kern_subr.c 1269file kern/kern_synch.c 1270file kern/kern_sysctl.c 1271file kern/kern_tc.c 1272file kern/kern_time.c 1273file kern/kern_timeout.c 1274file kern/kern_uuid.c 1275file kern/kern_xxx.c 1276file kern/kgdb_stub.c kgdb 1277file kern/subr_autoconf.c 1278file kern/subr_blist.c vmswap 1279file kern/subr_bufq.c 1280file kern/subr_callback.c 1281file kern/subr_devsw.c 1282file kern/subr_disk.c 1283file kern/subr_iostat.c 1284file kern/subr_evcnt.c 1285file kern/subr_extent.c 1286file kern/subr_kmem.c 1287file kern/subr_log.c 1288file kern/subr_pool.c 1289file kern/subr_prf.c 1290file kern/subr_prof.c 1291file kern/subr_once.c 1292file kern/subr_optstr.c 1293file kern/subr_userconf.c userconf 1294file kern/subr_vmem.c 1295file kern/subr_workqueue.c 1296file kern/subr_xxx.c 1297file kern/sys_generic.c 1298file kern/sys_pipe.c !pipe_socketpair 1299file kern/sys_pmc.c 1300file kern/sys_process.c 1301file kern/sys_socket.c 1302file kern/syscalls.c syscall_debug 1303file kern/sysv_ipc.c sysvshm | sysvsem | sysvmsg 1304file kern/sysv_msg.c sysvmsg 1305file kern/sysv_sem.c sysvsem 1306file kern/sysv_shm.c sysvshm 1307file kern/tty.c 1308file kern/tty_conf.c 1309file kern/tty_bsdpty.c compat_bsdpty 1310file kern/tty_pty.c pty needs-flag 1311file kern/tty_ptm.c pty 1312file kern/tty_subr.c 1313file kern/tty_tty.c 1314file kern/uipc_domain.c 1315file kern/uipc_mbuf.c 1316file kern/uipc_mbuf2.c 1317file kern/uipc_proto.c 1318file kern/uipc_sem.c p1003_1b_semaphore 1319file kern/uipc_socket.c 1320file kern/uipc_socket2.c 1321file kern/uipc_syscalls.c 1322file kern/uipc_usrreq.c 1323file kern/vfs_bio.c 1324file kern/vfs_cache.c 1325file kern/vfs_getcwd.c 1326file kern/vfs_hooks.c 1327file kern/vfs_init.c 1328file kern/vfs_lockf.c 1329file kern/vfs_lookup.c 1330file kern/vfs_subr.c 1331file kern/vfs_syscalls.c 1332file kern/vfs_vnops.c 1333file kern/vfs_xattr.c 1334file kern/vnode_if.c 1335file miscfs/deadfs/dead_vnops.c 1336file miscfs/fifofs/fifo_vnops.c 1337file miscfs/genfs/genfs_vnops.c 1338file miscfs/genfs/layer_subr.c nullfs | overlay | umapfs | lkm 1339file miscfs/genfs/layer_vfsops.c nullfs | overlay | umapfs | lkm 1340file miscfs/genfs/layer_vnops.c nullfs | overlay | umapfs | lkm 1341file miscfs/specfs/spec_vnops.c 1342file miscfs/syncfs/sync_subr.c 1343file miscfs/syncfs/sync_vnops.c 1344file net/bpf.c bpfilter needs-flag 1345file net/bpf_filter.c bpf_filter 1346file net/bsd-comp.c ppp & ppp_bsdcomp 1347file net/if.c 1348file net/if_arcsubr.c arc needs-flag 1349file net/if_atmsubr.c atm 1350file net/if_bridge.c bridge needs-flag 1351file net/bridgestp.c bridge 1352file net/if_ecosubr.c eco 1353file net/if_ethersubr.c ether | fddi | netatalk | token | 1354 wlan 1355file net/if_faith.c faith & inet & inet6 needs-flag 1356file net/if_fddisubr.c fddi needs-flag 1357file net/if_gif.c gif needs-flag 1358file net/if_gre.c gre needs-flag 1359file net/if_hippisubr.c hippi needs-flag 1360file net/if_ieee1394subr.c ieee1394 1361file net/if_loop.c loop needs-flag 1362file net/if_media.c 1363file net/if_ppp.c ppp needs-flag 1364file net/if_stf.c stf & inet & inet6 needs-flag 1365file net/if_sl.c sl needs-flag 1366file net/if_spppsubr.c sppp 1367file net/if_strip.c strip needs-flag 1368file net/if_tokensubr.c token needs-flag 1369file net/if_tap.c tap needs-flag 1370file net/if_tun.c tun needs-flag 1371file net/if_vlan.c vlan needs-flag 1372file net/if_pppoe.c pppoe needs-flag 1373file net/pfil.c pfil_hooks | ipfilter | pf 1374file net/ppp-deflate.c ppp & ppp_deflate 1375file net/ppp_tty.c ppp 1376file net/radix.c 1377file net/raw_cb.c 1378file net/raw_usrreq.c 1379file net/route.c 1380file net/rtsock.c 1381file net/slcompress.c sl | ppp | strip | (irip & irip_vj) 1382file net/zlib.c (ppp & ppp_deflate) | ipsec | opencrypto | vnd_compression 1383file netinet/if_arp.c arp | netatalk needs-flag 1384file netinet/if_atm.c atm 1385file netinet/in_gif.c gif & inet 1386file netinet/ip_carp.c carp & (inet | inet6) needs-flag 1387file netinet/ip_ecn.c ipsec | fast_ipsec | gif | stf 1388file netinet/ip_encap.c inet | inet6 1389file netinet/ip_gre.c inet & gre 1390file netinet6/in6_gif.c gif & inet6 1391 1392file netisdn/i4b_ctl.c isdnctl needs-flag 1393file netisdn/i4b_isppp.c ippp needs-count 1394file netisdn/i4b_ipr.c irip needs-count 1395file netisdn/i4b_rbch.c isdnbchan needs-count 1396file netisdn/i4b_tel.c isdntel needs-count 1397file netisdn/i4b_trace.c isdntrc needs-count 1398 1399file netisdn/i4b_mbuf.c passive_isdn 1400file netisdn/i4b_l2.c passive_isdn 1401file netisdn/i4b_l2fsm.c passive_isdn 1402file netisdn/i4b_uframe.c passive_isdn 1403file netisdn/i4b_tei.c passive_isdn 1404file netisdn/i4b_sframe.c passive_isdn 1405file netisdn/i4b_iframe.c passive_isdn 1406file netisdn/i4b_l2timer.c passive_isdn 1407file netisdn/i4b_util.c passive_isdn 1408file netisdn/i4b_lme.c passive_isdn 1409# Q.931 handler 1410file netisdn/i4b_q931.c passive_isdn 1411file netisdn/i4b_q932fac.c passive_isdn 1412file netisdn/i4b_l3fsm.c passive_isdn 1413file netisdn/i4b_l3timer.c passive_isdn 1414file netisdn/i4b_l2if.c passive_isdn 1415file netisdn/i4b_l4if.c passive_isdn 1416# isdn device driver, interface to isdnd 1417file netisdn/i4b_i4bdrv.c isdn needs-flag 1418file netisdn/i4b_l4.c isdndev needs-flag 1419file netisdn/i4b_l4mgmt.c isdndev needs-flag 1420file netisdn/i4b_l4timer.c isdndev needs-flag 1421# capi 1422file netisdn/i4b_capi_l4if.c isdncapi 1423file netisdn/i4b_capi_llif.c isdncapi 1424file netisdn/i4b_capi_msgs.c isdncapi 1425 1426# Game adapter (joystick) 1427device joy 1428file dev/ic/joy.c joy needs-flag 1429 1430include "net/agr/files.agr" 1431 1432# 1433# General Purpose Input/Output framework 1434# 1435define onewire_bitbang 1436include "dev/gpio/files.gpio" 1437 1438include "dev/onewire/files.onewire" 1439