NetBSD/sys/conf/files

1637 lines
39 KiB
Plaintext
Raw Normal View History

2008-10-15 10:51:17 +04:00
# $NetBSD: files,v 1.924 2008/10/15 06:51:20 wrstuden Exp $
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
version 20080610
#
# device classes
#
devclass disk
devclass tape
devclass ifnet
devclass tty
2007-12-09 23:27:42 +03:00
devclass audiodev
devclass displaydev
devclass bus
1997-02-03 00:16:25 +03:00
# options understood by the machine-independent part of the kernel
# (note, these are case-sensitive)
#
defflag INSECURE
defflag KMEMSTATS
defflag KTRACE
defflag MBUFTRACE
defflag PTRACE
defflag COREDUMP
defflag opt_modular.h MODULAR
defparam DEFCORENAME
defparam HZ
defparam MAXUPRC
defparam RTC_OFFSET
defflag opt_pipe.h PIPE_SOCKETPAIR PIPE_NODIRECT
defflag BUFQ_DISKSORT
defflag BUFQ_FCFS
defflag BUFQ_PRIOCSCAN
defflag BUFQ_READPRIO
defflag NEW_BUFQ_STRATEGY # same as BUFQ_READPRIO
defflag opt_sched.h SCHED_4BSD
defflag opt_sched.h SCHED_M2
2003-07-03 05:42:10 +04:00
defparam SOMAXKVA
defflag opt_sock_counters.h SOSEND_COUNTERS
defflag opt_sosend_loan.h SOSEND_NO_LOAN
Eliminate address family-specific route caches (struct route, struct route_in6, struct route_iso), replacing all caches with a struct route. The principle benefit of this change is that all of the protocol families can benefit from route cache-invalidation, which is necessary for correct routing. Route-cache invalidation fixes an ancient PR, kern/3508, at long last; it fixes various other PRs, also. Discussions with and ideas from Joerg Sonnenberger influenced this work tremendously. Of course, all design oversights and bugs are mine. DETAILS 1 I added to each address family a pool of sockaddrs. I have introduced routines for allocating, copying, and duplicating, and freeing sockaddrs: struct sockaddr *sockaddr_alloc(sa_family_t af, int flags); struct sockaddr *sockaddr_copy(struct sockaddr *dst, const struct sockaddr *src); struct sockaddr *sockaddr_dup(const struct sockaddr *src, int flags); void sockaddr_free(struct sockaddr *sa); sockaddr_alloc() returns either a sockaddr from the pool belonging to the specified family, or NULL if the pool is exhausted. The returned sockaddr has the right size for that family; sa_family and sa_len fields are initialized to the family and sockaddr length---e.g., sa_family = AF_INET and sa_len = sizeof(struct sockaddr_in). sockaddr_free() puts the given sockaddr back into its family's pool. sockaddr_dup() and sockaddr_copy() work analogously to strdup() and strcpy(), respectively. sockaddr_copy() KASSERTs that the family of the destination and source sockaddrs are alike. The 'flags' argumet for sockaddr_alloc() and sockaddr_dup() is passed directly to pool_get(9). 2 I added routines for initializing sockaddrs in each address family, sockaddr_in_init(), sockaddr_in6_init(), sockaddr_iso_init(), etc. They are fairly self-explanatory. 3 structs route_in6 and route_iso are no more. All protocol families use struct route. I have changed the route cache, 'struct route', so that it does not contain storage space for a sockaddr. Instead, struct route points to a sockaddr coming from the pool the sockaddr belongs to. I added a new method to struct route, rtcache_setdst(), for setting the cache destination: int rtcache_setdst(struct route *, const struct sockaddr *); rtcache_setdst() returns 0 on success, or ENOMEM if no memory is available to create the sockaddr storage. It is now possible for rtcache_getdst() to return NULL if, say, rtcache_setdst() failed. I check the return value for NULL everywhere in the kernel. 4 Each routing domain (struct domain) has a list of live route caches, dom_rtcache. rtflushall(sa_family_t af) looks up the domain indicated by 'af', walks the domain's list of route caches and invalidates each one.
2007-05-03 00:40:22 +04:00
defflag opt_route.h RTCACHE_DEBUG RTFLUSH_DEBUG
defflag MULTIPROCESSOR
1998-09-24 07:55:15 +04:00
defflag opt_config.h INCLUDE_CONFIG_FILE INCLUDE_JUST_CONFIG
defparam opt_dump.h DUMP_ON_PANIC
defflag opt_callout.h CALLWHEEL_STATS
2001-09-13 09:22:16 +04:00
2008-02-03 16:25:57 +03:00
defflag CPU_IN_CKSUM
defflag opt_posix.h P1003_1B_SEMAPHORE
defflag opt_sysv.h SYSVMSG SYSVSEM SYSVSHM
defparam opt_sysvparam.h SHMMAXPGS SEMMNI SEMMNS SEMUME SEMMNU
1998-10-20 02:14:54 +04:00
defflag opt_ntp.h PPS_SYNC NTP
2004-11-10 20:26:16 +03:00
defflag opt_ptm.h NO_DEV_PTM COMPAT_BSDPTY
2005-01-13 23:16:02 +03:00
defparam opt_kmempages.h NKMEMPAGES NKMEMPAGES_MIN NKMEMPAGES_MAX
defflag opt_malloclog.h MALLOCLOG
defparam opt_malloclog.h MALLOCLOGSIZE
defflag opt_malloc_debug.h MALLOC_DEBUG
defflag opt_pool.h POOL_DIAGNOSTIC
defparam opt_poollog.h POOL_LOGSIZE
defflag opt_powerhook.h POWERHOOK_DEBUG
defflag opt_revcache.h NAMECACHE_ENTER_REVERSE
2001-03-30 02:40:06 +04:00
defflag opt_execfmt.h EXEC_AOUT EXEC_COFF EXEC_ECOFF EXEC_ELF32
EXEC_ELF64 EXEC_MACHO EXEC_SCRIPT
EXEC_ELF_NOTELESS
defflag opt_dkwedge.h DKWEDGE_AUTODISCOVER
DKWEDGE_METHOD_BSDLABEL
DKWEDGE_METHOD_GPT
DKWEDGE_METHOD_MBR
defflag opt_veriexec.h VERIFIED_EXEC_FP_SHA1
2005-07-17 02:50:15 +04:00
VERIFIED_EXEC_FP_SHA256
VERIFIED_EXEC_FP_SHA384
VERIFIED_EXEC_FP_SHA512
VERIFIED_EXEC_FP_MD5
VERIFIED_EXEC_FP_RMD160
# Per system call number counts and times
defflag opt_syscall_stats.h SYSCALL_STATS
defflag opt_syscall_stats.h SYSCALL_TIMES: SYSCALL_STATS
# Assume cpu_hascounter() returns true - to use disabled rdtsc() (for soekris)
defflag opt_syscall_stats.h SYSCALL_TIMES_HASCOUNTER: SYSCALL_TIMES
file kern/subr_syscall_stats.c syscall_stats
defparam opt_pax.h PAX_MPROTECT
PAX_SEGVGUARD
PAX_ASLR
PAX_ASLR_DELTA_MMAP_LSB
PAX_ASLR_DELTA_MMAP_LEN
PAX_ASLR_DELTA_STACK_LSB
PAX_ASLR_DELTA_STACK_LEN
PAX_ASLR_DELTA_PROG_LEN
defflag opt_fileassoc.h FILEASSOC
defflag opt_gre.h GRE_DEBUG
# Write Ahead Physical Block Logging
defflag opt_wapbl.h WAPBL WAPBL_DEBUG
defparam opt_wapbl.h WAPBL_DEBUG_PRINT
1998-06-26 02:49:18 +04:00
# compatibility options
#
2008-10-15 10:51:17 +04:00
defflag opt_sa.h KERN_SA
defflag opt_compat_netbsd.h COMPAT_40: KERN_SA
defflag opt_compat_netbsd.h COMPAT_30: COMPAT_40
defflag opt_compat_netbsd.h COMPAT_20: COMPAT_30
defflag opt_compat_netbsd.h COMPAT_16: COMPAT_20
defflag opt_compat_netbsd.h COMPAT_15: COMPAT_16
defflag opt_compat_netbsd.h COMPAT_14: COMPAT_15
defflag opt_compat_netbsd.h COMPAT_13: COMPAT_14
defflag opt_compat_netbsd.h COMPAT_12: COMPAT_13
defflag opt_compat_netbsd.h COMPAT_11: COMPAT_12
defflag opt_compat_netbsd.h COMPAT_10: COMPAT_11
defflag opt_compat_netbsd.h COMPAT_09: COMPAT_10
2003-01-19 01:34:23 +03:00
defflag COMPAT_OSSAUDIO
defflag COMPAT_FREEBSD: COMPAT_30
defflag COMPAT_IBCS2
defflag COMPAT_IRIX
defflag COMPAT_LINUX
defflag COMPAT_LINUX32
defflag COMPAT_OSF1
2006-07-13 21:39:47 +04:00
defflag COMPAT_SUNOS: COMPAT_30
defflag opt_compat_svr4.h COMPAT_SVR4 COMPAT_SVR4_32 SVR4_COMPAT_SOLARIS2
defflag COMPAT_ULTRIX
defflag COMPAT_NETBSD32
defflag COMPAT_AOUT_M68K: COMPAT_40
defflag COMPAT_M68K4K
defflag COMPAT_MACH
defflag COMPAT_DARWIN
defflag COMPAT_VAX1K
defflag COMPAT_43
defflag COMPAT_PECOFF
defflag opt_compat_netbsd.h COMPAT_NOMID
1998-07-06 02:48:05 +04:00
#
# Cryptography support. Include this early, since several things
# use it.
# Individual crypto transforms
include "crypto/arc4/files.arc4"
include "crypto/des/files.des"
include "crypto/blowfish/files.blowfish"
include "crypto/cast128/files.cast128"
include "crypto/rijndael/files.rijndael"
include "crypto/skipjack/files.skipjack"
# General-purpose crypto processing framework.
include "opencrypto/files.opencrypto"
2003-07-21 09:35:49 +04:00
#
# System monitoring framework
#
include "dev/sysmon/files.sysmon"
#
2002-10-11 02:12:53 +04:00
# Networking protocols
#
include "net80211/files.net80211"
2002-10-11 02:12:53 +04:00
include "netatalk/files.netatalk"
include "netbt/files.netbt"
include "netinet/files.netinet"
include "netinet/files.ipfilter"
include "netinet6/files.netinet6"
include "netinet6/files.ipsec"
include "netipsec/files.netipsec"
include "netiso/files.netiso"
include "netnatm/files.netnatm"
2003-02-18 15:20:19 +03:00
include "netsmb/files.netsmb"
include "net/files.pf"
2002-10-11 02:12:53 +04:00
obsolete defflag CCITT # obsolete
obsolete defflag HDLC # obsolete
obsolete defflag LLC # obsolete
obsolete defflag opt_ns.h NS NSIP # obsolete
obsolete defflag IPX # obsolete
obsolete defflag opt_iso.h TPCONS
defflag PFIL_HOOKS # pfil(9)
defflag opt_bridge_ipf.h BRIDGE_IPF # bridge(4) use inet_pfil_hooks
defflag opt_ppp.h PPP_DEFLATE PPP_BSDCOMP PPP_FILTER
# Include deflate or bsd
# compression, enable pppd
# packet filtering support
defflag opt_pppoe.h PPPOE_SERVER PPPOE_TERM_UNKNOWN_SESSIONS
1998-07-05 04:51:04 +04:00
# networking options
#
defflag GATEWAY
2005-12-21 13:57:22 +03:00
defparam opt_nmbclusters.h NMBCLUSTERS
defparam SB_MAX
# file system options
#
defflag SOFTDEP # XXX files.ufs?
defflag QUOTA # XXX files.ufs?
defflag VNODE_LOCKDEBUG
defflag MAGICLINKS
1999-02-27 09:39:34 +03:00
# buffer cache size options
#
defparam opt_bufcache.h BUFCACHE BUFPAGES
1999-02-27 09:39:34 +03:00
# userconf
#
defflag USERCONF
# sysctl related
#
defflag opt_sysctl.h SYSCTL_DISALLOW_CREATE SYSCTL_DISALLOW_KWRITE
SYSCTL_DEBUG_SETUP SYSCTL_DEBUG_CREATE
SYSCTL_INCLUDE_DESCR
#
# Not entirely MI, but present on multiple arch's
#
1999-02-27 09:39:34 +03:00
# PC-style MBR handling
#
defflag opt_mbr.h COMPAT_386BSD_MBRPART
#
1998-07-05 02:18:13 +04:00
# debugging options
#
include "ddb/files.ddb" # in-kernel dynamic debugger
defflag opt_kgdb.h KGDB
defparam opt_kgdb.h KGDB_DEV KGDB_DEVNAME KGDB_DEVPORT
KGDB_DEVADDR KGDB_DEVRATE KGDB_DEVMODE
defflag LOCKDEBUG
defflag SYSCALL_DEBUG
defflag opt_kstack.h KSTACK_CHECK_MAGIC
1998-07-05 02:18:13 +04:00
# memory (ram) disk options
#
defflag opt_md.h MEMORY_DISK_HOOKS MEMORY_DISK_IS_ROOT
MEMORY_DISK_DYNAMIC
defparam opt_md.h MEMORY_DISK_SERVER=1 MEMORY_DISK_ROOT_SIZE
MEMORY_RBFLAGS
1999-03-17 21:59:21 +03:00
defflag opt_tftproot.h TFTPROOT TFTPROOT_DEBUG
# Support for hardware performance monitoring counters
#
defflag opt_perfctrs.h PERFCTRS
# Machine-independent device majors assignements
include "conf/majors"
# generic attributes
#
define audiobus { }
define midibus { }
define midisyn
2008-09-06 23:18:16 +04:00
define videobus { }
define ata {[channel = -1]}
define sata
define scsi_core
define scsi {[channel = -1]}: scsi_core
define ata_hl {[drive = -1]}
define atapi { }
define radiodev { }
2003-06-02 08:12:07 +04:00
define gpibdev {[address = -1]}
2005-09-27 06:41:10 +04:00
define gpiobus { }
define onewirebus { }
define pckbport {[slot = -1]}
define pckbport_machdep_cnattach
define firmload
# audio device attributes
#
1995-07-19 23:58:09 +04:00
define mulaw
define auconv
2002-03-10 00:21:57 +03:00
define aurateconv
# audio and midi devices, attaches to audio hardware driver
#
2007-12-09 23:27:42 +03:00
device audio: audiodev
attach audio at audiobus
device midi
attach midi at midibus
# console bell via audio device
#
define audiobell
2008-09-06 23:18:16 +04:00
# video devices, attaches to video hardware driver
#
device video
attach video at videobus
# National Semiconductor LM7[89]
#
# (included here so files.i2c can define an attachment)
device lm: sysmon_envsys
file dev/ic/nslm7x.c lm needs-flag
# I2C device support
include "dev/i2c/files.i2c"
# SPI device support
include "dev/spi/files.spi"
# IR device support
include "dev/ir/files.ir"
# Parallel Port Bus support
include "dev/ppbus/files.ppbus"
# raster operations attributes
#
2001-02-24 04:34:28 +03:00
define rasops1
define rasops2
define rasops4
define rasops8
define rasops15
define rasops16
define rasops24
define rasops32
define rasops_rotation
# splash screen support
include "dev/splash/files.splash"
# videomode support
include "dev/videomode/files.videomode"
# net device attributes - we have generic code for arc(net), ether(net),
# fddi, token ring, atm and eco(net).
#
define arcnet
1996-06-22 05:49:00 +04:00
define atm
define eco
define ether
define fddi
define hippi
define ieee1394
define token
define sppp
define wlan: arc4, rijndael
define crypto
# devices ARPing IPv4 pull this in:
#
define arp
#
# ALTQ network traffic shaping subsystem
#
include "altq/files.altq"
#
# IPKDB kernel debugger
#
include "ipkdb/files.ipkdb"
2000-11-26 20:44:02 +03:00
# Logical disk
#
2000-11-26 20:44:02 +03:00
device ld: disk
2001-02-24 04:34:28 +03:00
file dev/ld.c ld needs-flag
2000-10-19 18:26:41 +04:00
#
# MII/PHY support for network devices
#
include "dev/mii/files.mii"
#
# RAIDframe
#
include "dev/raidframe/files.raidframe"
2002-08-02 04:32:12 +04:00
#
# Hardware-assisted data mover API
#
include "dev/dmover/files.dmover"
#
# "Chipset" drivers. These are the bus-independent routines which
# contain the cfdrivers. Attachments are provided by files.<bus>
#
# Adaptec AIC-6[32]60 ICs
#
device aic: scsi
file dev/ic/aic6360.c aic
# SMC 93Cx6 Serial EEPROM devices
#
define smc93cx6
file dev/ic/smc93cx6.c smc93cx6
# Adaptec 2[789]4X, 394X, aic7770 and aic78[5678]0 SCSI controllers
#
defparam opt_ahc.h AHC_DEBUG
defflag opt_ahc.h AHC_NO_TAGS
device ahc: scsi
define ahc_seeprom
define ahc_aic77xx
file dev/ic/aic7xxx.c ahc
file dev/ic/aic7xxx_osm.c ahc
file dev/ic/aic7xxx_seeprom.c ahc_seeprom
file dev/ic/aic77xx.c ahc_aic77xx
# Adaptec aic79xx SCSI controllers
defflag opt_ahd.h AHD_DEBUG
device ahd: scsi
file dev/ic/aic79xx.c ahd
file dev/ic/aic79xx_osm.c ahd
1999-09-28 03:44:27 +04:00
# DPT EATA SCSI controllers
#
1999-09-28 03:44:27 +04:00
device dpt: scsi
file dev/ic/dpt.c dpt
# Compaq Smart ARRAY controllers
#
device cac {unit = -1}
file dev/ic/cac.c cac
2000-11-26 20:44:02 +03:00
attach ld at cac with ld_cac
file dev/ic/ld_cac.c ld_cac
# HP/Compaq Command Interface for SCSI-3 Support
#
device ciss: scsi
file dev/ic/ciss.c ciss
# Mylex DAC960 RAID controllers
#
device mlx {unit = -1}
file dev/ic/mlx.c mlx needs-flag
attach ld at mlx with ld_mlx
file dev/ic/ld_mlx.c ld_mlx
# ICP-Vortex/Intel RAID controllers
#
device icp {unit = -1}
file dev/ic/icp.c icp needs-flag
file dev/ic/icp_ioctl.c icp
attach ld at icp with ld_icp
file dev/ic/ld_icp.c ld_icp
device icpsp: scsi
file dev/ic/icpsp.c icpsp
attach icpsp at icp
# Adaptec FSA RAID controllers
#
device aac {unit = -1}
file dev/ic/aac.c aac
attach ld at aac with ld_aac
file dev/ic/ld_aac.c ld_aac
1998-08-26 18:20:37 +04:00
# AdvanSys 1200A, 1200B and ULTRA SCSI controllers
#
1998-08-26 18:20:37 +04:00
device adv: scsi
file dev/ic/adv.c adv
file dev/ic/advlib.c adv
file dev/ic/advmcode.c adv
1998-08-26 18:20:37 +04:00
# AdvanSys ULTRA WIDE SCSI controllers
#
device adw: scsi
file dev/ic/adw.c adw
1996-09-01 00:27:55 +04:00
# BusLogic MultiMaster and MultiMaster Ultra SCSI controllers
# (Must be declared before AHA to ensure bha probes before aha.
# Probing AHA first configures bhas as aha, via their AHA
# hardware-compatibility mode.)
#
device bha: scsi
file dev/ic/bha.c bha
1996-09-01 00:27:55 +04:00
# Adaptec AHA-154x and AHA-164x controllers
# (must be after bha, see above)
#
device aha: scsi
file dev/ic/aha.c aha
# Initio INIC-940/950 SCSI controllers
#
device iha: scsi
file dev/ic/iha.c iha
# Qlogic ISP 10x0 SCSI Controllers
#
defflag opt_isp.h ISP_DISABLE_1020_SUPPORT
ISP_DISABLE_1080_SUPPORT
ISP_DISABLE_2100_SUPPORT
ISP_DISABLE_2200_SUPPORT
ISP_DISABLE_2300_SUPPORT
ISP_DISABLE_2322_SUPPORT
ISP_DISABLE_2400_SUPPORT
ISP_DISABLE_FW
ISP_TARGET_MODE
defparam opt_isp.h ISP_LOGDEFAULT
ISP_VPORTS
device isp: scsi
file dev/ic/isp.c isp
file dev/ic/isp_library.c isp
file dev/ic/isp_netbsd.c isp
file dev/ic/isp_target.c isp & isp_target_mode
# LSILogic MegaRAID SAS
#
device mfi: scsi
file dev/ic/mfi.c mfi
# LSILogic Fusion-MPT I/O Processor SCSI/FC Controllers
#
device mpt: scsi
file dev/ic/mpt.c mpt
file dev/ic/mpt_debug.c mpt
file dev/ic/mpt_netbsd.c mpt
# Workbit NinjaSCSI-32 controllers
device njs: scsi
file dev/ic/ninjascsi32.c njs
# Symbios/NCR 53c700 SCSI controllers
device oosiop: scsi
file dev/ic/oosiop.c oosiop
# Symbios/NCR 53c710 SCSI controllers
#
device osiop: scsi
file dev/ic/osiop.c osiop
2000-05-15 12:27:24 +04:00
# common stuff for siop and esiop
#
2001-02-24 04:34:28 +03:00
define siop_common
file dev/ic/siop_common.c siop_common
2000-05-15 12:27:24 +04:00
# Symbios/NCR 53c720/53c8xx SCSI controllers
#
2001-02-24 04:34:28 +03:00
device siop: scsi,siop_common
file dev/ic/siop.c siop & (siop_pci | siop_gedoens)
2002-04-18 16:04:05 +04:00
defflag opt_siop.h SIOP_SYMLED
device esiop: scsi,siop_common
file dev/ic/esiop.c esiop
1996-09-01 00:27:55 +04:00
# UltraStor SCSI controllers
#
device uha: scsi
file dev/ic/uha.c uha
1996-09-01 00:27:55 +04:00
# 3Com common probe code
define elink
file dev/isa/elink.c elink
# Aironet PC4500/PC4800
#
2004-02-03 22:46:18 +03:00
device an: arp, wlan, ifnet
file dev/ic/an.c an
# AMD 79c930-based 802.11 cards
#
device awi: arp, wlan, ifnet
file dev/ic/awi.c awi
file dev/ic/am79c930.c awi
# Lucent & Intersil WaveLan IEEE (802.11)
#
2004-02-14 19:35:58 +03:00
device wi: arp, wlan, ifnet
file dev/ic/wi.c wi
# Atheros 5210/5211/5212 multi-mode 802.11
#
defflag opt_athhal.h ATHHAL_ASSERT ATHHAL_DEBUG ATHHAL_DEBUG_ALQ
2004-02-14 19:35:58 +03:00
device ath: arp, wlan, ifnet
file dev/ic/ath.c ath
file dev/ic/ath_netbsd.c ath
file dev/ic/athrate-sample.c ath
file contrib/dev/ath/netbsd/ah_osdep.c ath
object /athhal.o ath
# ADMtek ADM8211 802.11
#
2004-02-14 19:35:58 +03:00
device atw: arp, wlan, ifnet, smc93cx6
file dev/ic/atw.c atw
2004-09-26 07:03:17 +04:00
# Realtek RTL8180 802.11
#
device rtw: arp, wlan, ifnet, smc93cx6
file dev/ic/rtw.c rtw
file dev/ic/rtwphy.c rtw
file dev/ic/rtwphyio.c rtw
2006-06-07 19:24:12 +04:00
# Ralink RT2500/RT2600 802.11
device ral: arp, ether, ifnet, wlan, firmload
2006-06-07 12:06:56 +04:00
file dev/ic/rt2560.c ral
file dev/ic/rt2661.c ral
# 3Com Etherlink-III Ethernet controller
#
device ep: arp, ether, ifnet, mii, mii_bitbang
file dev/ic/elink3.c ep
1998-11-04 03:28:05 +03:00
# 3Com EtherLink XL Controller
#
device ex: arp, ether, ifnet, mii, mii_bitbang
1998-11-04 03:28:05 +03:00
file dev/ic/elinkxl.c ex
# DEC EtherWORKS III (LEMAC) Ethernet controllers
#
device lc: arp, ether, ifnet
file dev/ic/lemac.c lc
1996-05-07 12:56:54 +04:00
# LANCE and PCnet Ethernet controllers
#
device le: arp, ether, ifnet
2001-02-24 04:34:28 +03:00
define le24
define le32
file dev/ic/am7990.c le24
file dev/ic/am79900.c le32
file dev/ic/lance.c le24 | le32
1996-05-07 12:56:54 +04:00
# DEC DEPCA-family of LANCE Ethernet controllers
#
device depca { }: le24
file dev/ic/depca.c depca
attach le at depca with le_depca
# Sun HME Ethernet controllers
#
1999-06-27 16:43:08 +04:00
device hme: arp, ether, ifnet, mii
file dev/ic/hme.c hme
# Sun GEM Ethernet controllers
#
device gem: arp, ether, ifnet, mii
file dev/ic/gem.c gem
# 8390-family Ethernet controllers
#
defflag opt_ipkdb.h IPKDB_DP8390
define dp8390nic
file dev/ic/dp8390.c dp8390nic | ipkdb_dp8390
# National Semiconductor DP83905 AT/LANTIC Ethernet media support
#
define dp83905
file dev/ic/dp83905.c dp83905
# Macronix MX98905 Ethernet controller
# (use as an attribute for an "ne" bus attachment)
#
define mx98905
file dev/ic/mx98905.c mx98905
# TROPIC Token-Ring controller
#
device tr: arp, token, ifnet
file dev/ic/tropic.c tr
# NCR 5380 SCSI Bus Controller
#
define ncr5380sbc
file dev/ic/ncr5380sbc.c ncr5380sbc
device nca: scsi, ncr5380sbc
# Sun sc PAL SCSI Bus Controller
#
define sunscpal
file dev/ic/sunscpal.c sunscpal
device ssc: scsi, sunscpal
# DEC FDDI Chipset
#
define pdq
file dev/ic/pdq.c pdq
file dev/ic/pdq_ifsubr.c pdq
# Cyclades Cyclom-8/16/32
#
device cy: tty
file dev/ic/cy.c cy needs-flag
# Efficient Networks, Inc. ATM interface
#
device en: atm, ifnet
file dev/ic/midway.c en
# NCR 53x9x or Emulex ESP SCSI Controller
#
define ncr53c9x
2000-03-25 22:58:04 +03:00
device esp: scsi, ncr53c9x
file dev/ic/ncr53c9x.c ncr53c9x
2004-07-07 12:41:34 +04:00
# Fujitsu MB87030/MB89352 SCSI Protocol Controller
device spc: scsi
file dev/ic/mb89352.c spc
# Western Digital WD33C93/WD33C93A SCSI Bus Interface Controller
define wd33c93
file dev/ic/wd33c93.c wd33c93
# Hitachi HD44780 LCD panel controller
define hd44780
file dev/ic/hd44780_subr.c hd44780
file dev/ic/lcdkp_subr.c hd44780
2005-01-31 09:09:03 +03:00
# Matrix keypad
define matrixkp
file dev/ic/matrixkp_subr.c matrixkp
# Hitachi HD64570 serial controller
#
2000-03-25 22:58:04 +03:00
define hd64570
file dev/ic/hd64570.c hd64570
# Riscom/N2 ISA/PCI Sync Serial Controller
#
device ntwoc: ifnet, hd64570
1997-07-23 03:33:33 +04:00
# Intel 82586 Ethernet Controller
#
1997-07-23 03:33:33 +04:00
define i82586
file dev/ic/i82586.c i82586
1997-07-23 03:33:33 +04:00
# Intel 82596 Ethernet Controller
#
define i82596
file dev/ic/i82596.c i82596
# Intel 82557/82558/82559 Ethernet Controller
#
device fxp: ether, ifnet, arp, mii
file dev/ic/i82557.c fxp
# SEEQ 8005 Advanced Ethernet Data Link Controller
#
define seeq8005
file dev/ic/seeq8005.c seeq8005
# SMC 91Cxx Ethernet Controller
#
device sm: arp, ether, ifnet, mii, mii_bitbang
file dev/ic/smc91cxx.c sm
# SMC 83C170 EPIC/100 Fast Ethernet Controller
#
device epic: arp, ether, ifnet, mii
file dev/ic/smc83c170.c epic
# DEC SGEC Second Generation Ethernet Controller
#
define sgec
file dev/ic/sgec.c sgec
# MB86950 Ethernet Controller
#
define mb86950
file dev/ic/mb86950.c mb86950
# MB8696x Ethernet Controller
#
define mb86960
file dev/ic/mb86960.c mb86960
# Generic MB8696x Ethernet Controller driver
#
device mbe: arp, ether, ifnet, mb86960
1997-10-07 00:12:26 +04:00
# Interwave Am78C201 audio driver
#
1997-10-07 00:12:26 +04:00
define interwave
file dev/ic/interwave.c interwave
# TMS 320av110 MPEG2/audio driver
#
define tms320av110
file dev/ic/tms320av110.c tms320av110
# Novell NE2000-compatible Ethernet cards, based on the
# National Semiconductor DS8390.
#
defflag opt_ipkdb.h IPKDB_NE : IPKDB_DP8390
device ne: ether, ifnet, arp, dp8390nic, mii
file dev/ic/ne2000.c ne | ipkdb_ne
# 8250/16[45]50-based "com" ports
#
defflag opt_com.h COM_DEBUG
# XXX In a perfect world, this would be done with attributes
defflag opt_com.h COM_16650 COM_HAYESP COM_PXA2X0 COM_AU1X00
COM_REGMAP
device com { } : tty
2001-02-24 04:34:28 +03:00
file dev/ic/com.c com needs-flag
# PC-like keyboard controller
#
device pckbc: pckbport
file dev/ic/pckbc.c pckbc needs-flag
device attimer
file dev/ic/attimer.c attimer needs-flag
1999-02-13 20:07:36 +03:00
# Cirrus Logic CD240[01] 4-port Multi-Protocol Communications Controller
#
1999-02-13 20:07:36 +03:00
device clmpcc: tty
2001-02-24 04:34:28 +03:00
file dev/ic/clmpcc.c clmpcc needs-flag
1999-02-13 20:07:36 +03:00
# Abit uGuru
#
device ug: sysmon_envsys
file dev/ic/ug.c ug needs-flag
# Essential Communications Corp. HIPPI Interface
#
2001-02-24 04:34:28 +03:00
device esh: hippi, ifnet
file dev/ic/rrunner.c esh needs-flag
# SMC 90c26, SMC 90C56 (and 90C66 if in compat mode) chip driver
#
device bah: ifnet, arcnet, arp
2001-02-24 04:34:28 +03:00
file dev/ic/smc90cx6.c bah
# OPL2/OPL3 FM synth driver
#
1998-08-23 02:53:06 +04:00
device opl: midibus, midisyn
file dev/ic/opl.c opl
file dev/ic/oplinstrs.c opl
# MPU401 MIDI UART compatibles
#
device mpu: midibus
2001-02-24 04:34:28 +03:00
file dev/ic/mpu.c mpu needs-flag
1998-08-26 02:38:29 +04:00
# AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers
#
1998-08-26 02:38:29 +04:00
define ad1848
file dev/ic/ad1848.c ad1848
# AMD 7930 audio/ISDN codec
#
define am7930
file dev/ic/am7930.c am7930
# SPARC `SUNW,audiocs'
#
device audiocs: audiobus, auconv, ad1848
file dev/ic/cs4231.c audiocs
# AC-97 CODECs
#
define ac97
file dev/ic/ac97.c ac97
# Oki MSM6258 support code
#
define msm6258
file dev/ic/msm6258.c msm6258
1998-08-30 01:52:54 +04:00
# LSI64854 DMA controller back-end
#
1998-08-30 01:52:54 +04:00
define lsi64854
file dev/ic/lsi64854.c lsi64854
# Cirrus Logic CL-CD180/1864/1865 multi port serial controller back-end
#
define cd18xx
file dev/ic/cd18xx.c cd18xx
2004-02-13 13:00:54 +03:00
# Realtek 8019/8029 NE2000-compatible network interface subroutines
#
define rtl80x9
file dev/ic/rtl80x9.c rtl80x9
2004-02-13 13:00:54 +03:00
# Realtek 8129/8139 Ethernet controllers
#
device rtk: ether, ifnet, arp, mii
file dev/ic/rtl81x9.c rtk | re
1998-08-30 01:52:54 +04:00
# Realtek 8169 Ethernet controllers
#
device re: ether, ifnet, arp, mii
file dev/ic/rtl8169.c re
# Common code for ESDI/IDE/etc. controllers
#
define wdc_common
define ata_dma
define ata_udma
define ata_piobm
device wdc: ata, wdc_common
defflag opt_ata.h ATADEBUG
2004-02-14 19:35:58 +03:00
device atabus: atapi,ata_hl
attach atabus at ata
# The strange expression is to dump ata_* definitions to ata_dma.h.
file dev/ic/wdc.c (ata_dma | ata_udma | ata_piobm | atabus) & atabus & wdc_common needs-flag
# Workbit NinjaATA-32 IDE controllers
device njata: ata, ata_piobm, wdc_common
file dev/ic/ninjaata32.c njata
# CHIPS and Technologies 82C7[12][01] Universal Peripheral Controller
#
device upc { [offset = -1] }
attach wdc at upc with wdc_upc
attach com at upc with com_upc
attach lpt at upc with lpt_upc
2001-02-24 04:34:28 +03:00
file dev/ic/upc.c upc
file dev/ic/wdc_upc.c wdc_upc
file dev/ic/com_upc.c com_upc
file dev/ic/lpt_upc.c lpt_upc
# AHCI-compatible SATA controllers
define ahcisata_core
file dev/ic/ahcisata_core.c ahcisata_core
device ahcisata: ata, ata_dma, ata_udma, sata, ahcisata_core
# DECchip 21x4x Ethernet controller family, and assorted clones.
#
device tlp: arp, ether, ifnet, mii, mii_bitbang
file dev/ic/tulip.c tlp
# Adaptec AIC-6915 Ethernet interface
#
device sf: arp, ether, ifnet, mii
file dev/ic/aic6915.c sf
2000-07-26 02:41:58 +04:00
# Mostek time-of-day clock and NVRAM
#
2000-07-26 02:41:58 +04:00
define mk48txx
2002-03-28 14:56:32 +03:00
file dev/ic/mk48txx.c mk48txx
2000-07-26 02:41:58 +04:00
# Intersil 7170 time-of-day clock
#
2000-07-26 02:41:58 +04:00
define intersil7170
file dev/ic/intersil7170.c intersil7170
# National Semiconductor MM58167 time-of-day clock
#
define mm58167
file dev/ic/mm58167.c mm58167
# Motorola mc146818 (and compatible) time-of-day clock
#
define mc146818
file dev/ic/mc146818.c mc146818
# Ricoh RS5C313 time of-day-clock
#
define rs5c313
file dev/ic/rs5c313.c rs5c313
# D-Link DL10019/10022 NE2000-compatible network interface subroutines
#
define dl10019
file dev/ic/dl10019.c dl10019
2001-08-04 15:38:57 +04:00
# ASIX AX88190 NE2000-compatible network interface subroutines
#
2001-08-04 15:38:57 +04:00
define ax88190
file dev/ic/ax88190.c ax88190
# WD/SMC 80x3 family, SMC Elite Ultra [8216], SMC EtherEZ
#
device we: ether, ifnet, arp, dp8390nic
file dev/ic/we.c we
# Allied-Telesis Ethernet driver based on Fujitsu MB8696xA controllers
#
device ate: arp, ether, ifnet, mb86960
# Fujitsu FMV-18x Ethernet driver based on Fujitsu MB8696xA controllers
#
device fmv: arp, ether, ifnet, mb86960
file dev/ic/fmv.c fmv
# Crystal Semiconductor CS8900, CS8920, and CS8920M Ethernet
#
device cs: arp, ether, ifnet
2005-01-08 05:56:35 +03:00
device tscs: arp, ether, ifnet
file dev/ic/cs89x0.c cs | tscs
# Radio device attributes
#
define tea5757
2004-02-14 19:35:58 +03:00
file dev/ic/tea5757.c tea5757
define lm700x
2004-02-14 19:35:58 +03:00
file dev/ic/lm700x.c lm700x
# Philips PCF8584 i2c controller
define pcf8584
file dev/ic/pcf8584.c pcf8584
# ACPI power management timer (hardware access, independent of ACPI)
#
define acpipmtimer
file dev/ic/acpipmtimer.c acpipmtimer
device hpet
file dev/ic/hpet.c hpet needs-flag
# DRM - Direct Rendering Infrastructure: dev/drm
define drm {}
include dev/drm/files.drm
# Definitions for wscons
# device attributes: display, display with emulator, keyboard, and mouse
#
define wsdisplaydev {[kbdmux = 1]}
define wsemuldisplaydev {[console = -1], [kbdmux = 1]}
define wskbddev {[console = -1], [mux = 1]}
define wsmousedev {[mux = 0]}
define vcons
# attribute to pull in raster support
#
define wsrasteremulops
# common PC display functions
#
defflag opt_pcdisplay.h PCDISPLAY_SOFTCURSOR
2001-02-24 04:34:28 +03:00
define pcdisplayops
file dev/ic/pcdisplay_subr.c pcdisplayops
file dev/ic/pcdisplay_chars.c pcdisplayops
# an attribute used by arch specific config files to include /dev/fb* (or
# equivalent) support - on most archs this is just a NOP (untill, maybe
# someday when we might make /dev/fb* support MI)
define fb
# VGA graphics
#
defparam opt_vga.h VGA_CONSOLE_SCREENTYPE
2002-06-29 02:32:58 +04:00
defflag opt_vga.h VGA_CONSOLE_ATI_BROKEN_FONTSEL
defflag opt_vga.h VGA_RASTERCONSOLE
defflag opt_vga.h VGA_RESET
2007-12-09 23:27:42 +03:00
device vga: displaydev, wsemuldisplaydev, pcdisplayops, drm
file dev/ic/vga.c vga & !vga_rasterconsole needs-flag
file dev/ic/vga_raster.c vga_rasterconsole needs-flag
file dev/ic/vga_subr.c vga | vga_rasterconsole
file dev/ic/vga_common.c vga | vga_rasterconsole
# Integraphics Systems IGA168x and CyberPro framebuffers (linear non-VGA mode)
#
device igsfb: wsemuldisplaydev, wsrasteremulops, rasops8, vcons
2003-06-03 02:51:49 +04:00
file dev/ic/igsfb.c igsfb needs-flag
file dev/ic/igsfb_subr.c igsfb
# STI (hp graphics)
device sti: wsemuldisplaydev
file dev/ic/sti.c sti & (sti_pci | sti_gedoens)
include "dev/wscons/files.wscons"
include "dev/rasops/files.rasops"
include "dev/wsfont/files.wsfont"
include "dev/wsfb/files.wsfb"
# Attributes which machine-independent bus support can be attached to.
# These should be defined here, because some of these busses can have
# devices which provide these attributes, and we'd like to avoid hairy
# ordering constraints on inclusion of the busses' "files" files.
#
define isabus { } # ISA attachment
define eisabus { } # EISA attachment
define pcibus {[bus = -1]} # PCI attachment
define tcbus { } # TurboChannel attachment
define mcabus { } # MicroChannel attachment
define usbus { } # USB attachment
2005-07-11 19:29:05 +04:00
define fwbus { } # IEEE 1394 attachment
define vmebus { } # VME bus attachment
define acpibus { } # ACPI "bus" attachment
1998-11-26 18:31:22 +03:00
define pcmciabus { [controller = -1], [socket = -1]} # PCMCIA bus attachment
define cbbus { } # CardBus attachment
define pcmciaslot { } # PCMCIA slot itself
# We need the USB bus controllers here so different busses can
# use them in an 'attach-with'.
# UHCI USB controller
#
2004-12-21 19:36:53 +03:00
defparam USB_MEM_RESERVE
define usbroothub
file dev/usb/usbroothub_subr.c usbroothub
device uhci: usbus, usbroothub
2001-02-24 04:34:28 +03:00
file dev/usb/uhci.c uhci needs-flag
# OHCI USB controller
#
device ohci: usbus, usbroothub
2001-02-24 04:34:28 +03:00
file dev/usb/ohci.c ohci needs-flag
# EHCI USB controller
#
device ehci: usbus, usbroothub
2001-02-24 04:34:28 +03:00
file dev/usb/ehci.c ehci needs-flag
# SL811HS/T USB controller
defflag opt_slhci.h SLHCI_DEBUG SLHCI_TRY_LSVH SLHCI_PROFILE_TRANSFER
2008-02-24 08:29:31 +03:00
device slhci: usbus, usbroothub
file dev/ic/sl811hs.c slhci needs-flag
# USB HID processing (as used by bluetooth and usb code)
define hid
file dev/usb/hid.c hid
# Myson MTD803 3-in-1 Fast Ethernet Controller
device mtd: arp, ether, ifnet, mii
file dev/ic/mtd803.c mtd
# radio devices, attaches to radio hardware driver
device radio
attach radio at radiodev
# IEEE 1394 controllers
# (These need to be here since it will have both PCI and CardBus attachments)
#
device fwohci: fwbus
2002-04-22 17:03:06 +04:00
# Sony Programmable I/O Controller
device spic: wsmousedev
file dev/ic/spic.c spic
2002-05-21 07:01:02 +04:00
# IBM CPC700 PowerPC bridge
define cpcbus { addr, [irq=-1] }
device cpc: cpcbus, pcibus
file dev/ic/cpc700.c cpc
attach com at cpcbus with com_cpcbus
file dev/ic/com_cpcbus.c com_cpcbus
device cpctim
attach cpctim at cpcbus
file dev/ic/timer_cpcbus.c cpctim
2002-05-21 07:05:00 +04:00
device cpciic
attach cpciic at cpcbus with iic_cpcbus
2002-05-21 07:01:02 +04:00
file dev/ic/iic_cpcbus.c iic_cpcbus
# Attribute used by various things that need BPF's virtual machine
#
define bpf_filter
2002-06-07 03:54:47 +04:00
defparam opt_bpf.h BPF_BUFSIZE
# Attributes used by the ISDN subsystem
#
define isdndev # the ISDN subsystem
2001-09-13 09:19:53 +04:00
define passive_isdn # files needed by passive cards (XXX - protocol
# specific)
2003-09-25 19:58:14 +04:00
define isdncapi # ISDN CAPI (http://www.capi.org/)
# The isac found on the Fritz V2.0 Card.
define nisacsx
file dev/ic/isacsx.c nisacsx needs-flag
# The 'standard' isac
define nisac
file dev/ic/isac.c nisac needs-flag
# ISDN cards based on the Siemens ISAC/HSCX chipset (or lookalikes)
#
device isic: isdndev, passive_isdn, nisac
2001-02-24 04:34:28 +03:00
file dev/ic/isic.c isic
file dev/ic/isic_l1.c isic|ifpci|ifritz
file dev/ic/isic_l1fsm.c isic|ifpci|ifritz
2001-02-24 04:34:28 +03:00
file dev/ic/hscx.c isic
file dev/ic/isic_bchan.c isic
# (old) Diehl active ISDN cards
#
#device daic: isdndev
#file dev/ic/daic.c daic
2003-09-25 19:58:14 +04:00
# AWM B1/T1
# XXX: passive_isdn
device iavc: isdndev, isdncapi, passive_isdn
file dev/ic/iavc.c iavc
# legitimate pseudo-devices
#
defpseudodev vnd: disk
defflag opt_vnd.h VND_COMPRESSION
defpseudo ccd: disk
defpseudo cgd: disk, des, blowfish, cast128, rijndael
defpseudodev md: disk
defpseudodev fss: disk
defpseudo pty: tty
defpseudo rnd
defpseudo ksyms
defpseudo nullcons
defpseudo lockstat
defpseudo bio: sysmon_envsys
defpseudo loop: ifnet
defpseudo sl: ifnet
defpseudo ppp: ifnet, bpf_filter
defpseudo pppoe: ifnet, ether, sppp
defpseudo sppp: ifnet
defpseudo tun: ifnet
defpseudo vlan: ifnet, ether
defpseudo bridge: ifnet, ether
defpseudo bpfilter: ifnet, bpf_filter
defpseudo strip: ifnet
defpseudo gre: ifnet
defpseudo gif: ifnet
defpseudo faith: ifnet
defpseudo srt: ifnet
defpseudo stf: ifnet
defpseudodev tap: ifnet, ether, arp, bpf_filter
defpseudo carp: ifnet, ether, arp, bpf_filter
defpseudodev etherip: ifnet, ether, arp, bpf_filter
defpseudo sequencer
2001-09-16 11:33:31 +04:00
defpseudo clockctl
defpseudo irix_kmem
defpseudo irix_usema
#
# Accept filters. XXX should use another registration/initialization method.
#
defpseudo accf_data
defpseudo accf_http
# ISDN userland pseudo devices
#
defpseudo isdntrc: isdndev, tty
defpseudo isdnbchan: isdndev, tty
defpseudo isdntel: isdndev, tty
defpseudo isdnctl: isdndev, tty
defpseudo isdn: isdndev, tty
# ISDN network interfaces
defpseudo irip: isdndev, ifnet
defflag opt_irip.h IRIP_VJ
defpseudo ippp: isdndev, sppp, ifnet
# KTTCP network throughput testing pseudo-device
defpseudo kttcp
file dev/kttcp.c kttcp needs-flag
# Veriexec
defpseudo veriexec
file kern/kern_verifiedexec.c veriexec
file dev/verified_exec.c veriexec needs-flag
# isochronous pseudo device for IEEE 1394, i.LINK or FireWire
defpseudo fwiso: ieee1394
# driver attach / detach user interface
defpseudo drvctl
file kern/kern_drvctl.c drvctl needs-flag
# cpu control
defpseudo cpuctl
# pass-to-userspace transporter
defpseudo putter
file dev/putter/putter.c putter
# userspace block/char device drivers
defpseudo pud
file dev/pud/pud.c pud
file dev/pud/pud_dev.c pud
#
# File systems
#
include "coda/files.coda"
include "fs/adosfs/files.adosfs"
include "fs/cd9660/files.cd9660"
include "fs/efs/files.efs"
include "fs/filecorefs/files.filecorefs"
include "fs/hfs/files.hfs"
include "fs/msdosfs/files.msdosfs"
include "fs/ntfs/files.ntfs"
include "fs/ptyfs/files.ptyfs"
2006-10-23 02:44:44 +04:00
include "fs/puffs/files.puffs"
include "fs/udf/files.udf"
include "fs/smbfs/files.smbfs"
include "fs/sysvbfs/files.sysvbfs"
include "fs/tmpfs/files.tmpfs"
include "fs/union/files.union"
include "miscfs/fdesc/files.fdesc"
include "miscfs/kernfs/files.kernfs"
include "miscfs/nullfs/files.nullfs"
include "miscfs/overlay/files.overlay"
include "miscfs/portal/files.portal"
include "miscfs/procfs/files.procfs"
include "miscfs/umapfs/files.umapfs"
include "nfs/files.nfs"
include "ufs/files.ufs"
2005-11-28 01:18:41 +03:00
#
# UVM (virtual memory)
#
include "uvm/files.uvm"
First take at security model abstraction. - Add a few scopes to the kernel: system, network, and machdep. - Add a few more actions/sub-actions (requests), and start using them as opposed to the KAUTH_GENERIC_ISSUSER place-holders. - Introduce a basic set of listeners that implement our "traditional" security model, called "bsd44". This is the default (and only) model we have at the moment. - Update all relevant documentation. - Add some code and docs to help folks who want to actually use this stuff: * There's a sample overlay model, sitting on-top of "bsd44", for fast experimenting with tweaking just a subset of an existing model. This is pretty cool because it's *really* straightforward to do stuff you had to use ugly hacks for until now... * And of course, documentation describing how to do the above for quick reference, including code samples. All of these changes were tested for regressions using a Python-based testsuite that will be (I hope) available soon via pkgsrc. Information about the tests, and how to write new ones, can be found on: http://kauth.linbsd.org/kauthwiki NOTE FOR DEVELOPERS: *PLEASE* don't add any code that does any of the following: - Uses a KAUTH_GENERIC_ISSUSER kauth(9) request, - Checks 'securelevel' directly, - Checks a uid/gid directly. (or if you feel you have to, contact me first) This is still work in progress; It's far from being done, but now it'll be a lot easier. Relevant mailing list threads: http://mail-index.netbsd.org/tech-security/2006/01/25/0011.html http://mail-index.netbsd.org/tech-security/2006/03/24/0001.html http://mail-index.netbsd.org/tech-security/2006/04/18/0000.html http://mail-index.netbsd.org/tech-security/2006/05/15/0000.html http://mail-index.netbsd.org/tech-security/2006/08/01/0000.html http://mail-index.netbsd.org/tech-security/2006/08/25/0000.html Many thanks to YAMAMOTO Takashi, Matt Thomas, and Christos Zoulas for help stablizing kauth(9). Full credit for the regression tests, making sure these changes didn't break anything, goes to Matt Fleming and Jaime Fournier. Happy birthday Randi! :)
2006-09-09 00:58:56 +04:00
#
# Security models
#
include "secmodel/files.secmodel"
#
# kernel sources
#
2008-10-15 10:51:17 +04:00
file compat/sa/compat_sa.c
file conf/debugsyms.c
merge kent-audio1 branch, which introduces audio filter pipeline to the MI audio framework Summary of changes: * struct audio_params - remove sw_code, factor, factor_denom, hw_sample_rate, hw_encoding ,hw_precision, and hw_channels. Conversion information is conveyed by stream_filter_list_t. - change the type of sample_rate: u_long -> u_int - add `validbits,' which represents the valid data size in precision bits. It is required in order to distinguish 24/32bit from 24/24bit or 32/32bit. * audio_hw_if - add two parameters to set_params() stream_filter_list_t *pfil, stream_filter_list *rfil A HW driver should set filter recipes for requested formats - constify audio_params parameters of trigger_output() and trigger_input(). They represent audio formats for the hardware. - make open() and close() optional - add int (AUMODE_PLAY or AUMODE_RECORD) and audio_params_t parameters to round_blocksize() * sw_code is replaced with stream_filter_t. stream_filer_t converts audio data in an input buffer and writes into another output buffer unlike sw_code, which converts data in single buffer. converters in dev/auconv.c, dev/mulaw.c, dev/aurateconv.c, dev/tc/bba.c, dev/ic/msm6258.c, and arch/arm/iomd/vidcaudio.c are reimplemented as stream_filter_t * MI audio - audiosetinfo() builds filter pipelines from stream_filter_list_t filled by audio_hw_if::set_params() - audiosetinfo() returns with EINVAL if mmapped and set_params() requests filters - audio_write(), audio_pint(), and audio_rint() invoke a filter pipeline. - ioctl() for FIONREAD, AUDIO_WSEEK, AUDIO_GETIOFFS, AUDIO_GETOOFFS, and audio_prinfo::{seek,samples} for AUDIO_GETINFO handle values for a buffer nearest to userland. * add `struct device *' parameter to ac97_attach() * all of audio HW drivers follow audio_hw_if and ac97 changes
2005-01-11 01:01:36 +03:00
file dev/auconv.c auconv | mulaw
2001-02-24 04:34:28 +03:00
file dev/audio.c audio | midi | midibus needs-flag
file dev/audiobell.c audiobell
file dev/aurateconv.c aurateconv needs-flag
file dev/bio.c bio needs-flag
2001-02-24 04:34:28 +03:00
file dev/ccd.c ccd needs-flag
2002-10-04 22:25:51 +04:00
file dev/cgd.c cgd needs-flag
file dev/cgd_crypto.c cgd
file dev/clock_subr.c
2002-01-15 15:10:50 +03:00
file dev/clockctl.c clockctl needs-flag
2006-08-27 08:58:06 +04:00
file dev/dksubr.c cgd | xbd | ccd | raid
file dev/dkwedge/dk.c
file dev/dkwedge/dkwedge_bsdlabel.c dkwedge_method_bsdlabel
file dev/dkwedge/dkwedge_gpt.c dkwedge_method_gpt
file dev/dkwedge/dkwedge_mbr.c dkwedge_method_mbr
file dev/firmload.c firmload
file dev/fss.c fss needs-count
file dev/lockstat.c lockstat needs-flag
2001-02-24 04:34:28 +03:00
file dev/md.c md needs-count
file dev/midi.c midi | midibus needs-flag
file dev/midictl.c midisyn
2001-02-24 04:34:28 +03:00
file dev/midisyn.c midisyn
2002-02-27 04:16:30 +03:00
file dev/mm.c
file dev/mulaw.c mulaw needs-flag
file dev/nullcons_subr.c nullcons needs-flag
file dev/radio.c radio needs-flag
2001-02-24 04:34:28 +03:00
file dev/rnd.c rnd needs-flag
file dev/rndpool.c rnd needs-flag
file dev/sequencer.c sequencer needs-flag
2008-09-06 23:18:16 +04:00
file dev/video.c video needs-flag
2001-02-24 04:34:28 +03:00
file dev/vnd.c vnd needs-flag
file kern/bufq_disksort.c bufq_disksort
file kern/bufq_fcfs.c bufq_fcfs
file kern/bufq_priocscan.c bufq_priocscan
file kern/bufq_readprio.c bufq_readprio | new_bufq_strategy
file kern/core_elf32.c coredump & exec_elf32
file kern/core_elf64.c coredump & exec_elf64
file kern/core_netbsd.c coredump & (exec_aout | exec_coff |
exec_ecoff | exec_macho | lkm)
2001-02-24 04:34:28 +03:00
file kern/cnmagic.c
file kern/exec_aout.c exec_aout
file kern/exec_conf.c
file kern/exec_ecoff.c exec_ecoff
file kern/exec_elf32.c exec_elf32
file kern/exec_elf64.c exec_elf64
2001-07-14 06:05:54 +04:00
file kern/exec_macho.c exec_macho
2001-02-24 04:34:28 +03:00
file kern/exec_script.c exec_script
file kern/exec_subr.c
file kern/init_main.c
file kern/init_sysctl.c
2001-02-24 04:34:28 +03:00
file kern/init_sysent.c
file kern/kern_acct.c
2006-05-15 01:19:33 +04:00
file kern/kern_auth.c
2001-02-24 04:34:28 +03:00
file kern/kern_clock.c
2007-02-10 00:55:00 +03:00
file kern/kern_condvar.c
file kern/kern_core.c
file kern/kern_cpu.c
2001-02-24 04:34:28 +03:00
file kern/kern_descrip.c
file kern/kern_event.c
2001-02-24 04:34:28 +03:00
file kern/kern_exec.c
file kern/kern_exit.c
file kern/kern_fork.c
file kern/kern_idle.c
2001-02-24 04:34:28 +03:00
file kern/kern_kthread.c
file kern/kern_ktrace.c ktrace
file kern/kern_ksyms.c ksyms | ddb | lkm needs-flag
2001-02-24 04:34:28 +03:00
file kern/kern_lkm.c lkm
file kern/kern_lock.c
2003-01-18 11:51:40 +03:00
file kern/kern_lwp.c
2001-02-24 04:34:28 +03:00
file kern/kern_malloc.c
file kern/kern_malloc_stdtype.c
file kern/kern_malloc_debug.c malloc_debug
file kern/kern_module.c
2007-02-10 00:55:00 +03:00
file kern/kern_mutex.c
file kern/kern_fileassoc.c fileassoc
2001-02-24 04:34:28 +03:00
file kern/kern_ntptime.c
file kern/kern_pax.c pax_mprotect | pax_segvguard
2001-02-24 04:34:28 +03:00
file kern/kern_physio.c
2007-12-09 23:27:42 +03:00
file kern/kern_pmf.c
2001-02-24 04:34:28 +03:00
file kern/kern_proc.c
file kern/kern_prot.c
2002-08-28 11:19:58 +04:00
file kern/kern_ras.c
file kern/kern_rate.c
2001-02-24 04:34:28 +03:00
file kern/kern_resource.c
file kern/kern_runq.c
2007-02-10 00:55:00 +03:00
file kern/kern_rwlock.c
2001-02-24 04:34:28 +03:00
file kern/kern_sig.c
2007-02-10 00:55:00 +03:00
file kern/kern_sleepq.c
file kern/kern_softint.c
file kern/kern_stub.c
2001-02-24 04:34:28 +03:00
file kern/kern_subr.c
file kern/kern_synch.c
file kern/kern_sysctl.c
file kern/kern_tc.c
2001-02-24 04:34:28 +03:00
file kern/kern_time.c
file kern/kern_timeout.c
2007-02-10 00:55:00 +03:00
file kern/kern_turnstile.c
file kern/kern_todr.c
file kern/kern_uidinfo.c
file kern/kern_uuid.c
2001-02-24 04:34:28 +03:00
file kern/kern_xxx.c
file kern/kgdb_stub.c kgdb
file kern/sched_4bsd.c sched_4bsd
file kern/sched_m2.c sched_m2
2001-02-24 04:34:28 +03:00
file kern/subr_autoconf.c
2005-09-17 18:38:38 +04:00
file kern/subr_blist.c vmswap
file kern/subr_bufq.c
file kern/subr_callback.c
2007-02-10 00:55:00 +03:00
file kern/subr_debug.c debug
file kern/subr_devsw.c
2001-02-24 04:34:28 +03:00
file kern/subr_disk.c
file kern/subr_iostat.c
file kern/subr_evcnt.c
2001-02-24 04:34:28 +03:00
file kern/subr_extent.c
file kern/subr_hash.c
file kern/subr_kmem.c
file kern/subr_kobj.c
2007-02-10 00:55:00 +03:00
file kern/subr_lockdebug.c
2001-02-24 04:34:28 +03:00
file kern/subr_log.c
2008-01-14 15:40:02 +03:00
file kern/subr_percpu.c
2001-02-24 04:34:28 +03:00
file kern/subr_pool.c
file kern/subr_prf.c
2007-08-16 00:34:48 +04:00
file kern/subr_prf2.c
2001-02-24 04:34:28 +03:00
file kern/subr_prof.c
file kern/subr_once.c
file kern/subr_optstr.c
file kern/subr_specificdata.c
file kern/subr_tftproot.c tftproot
file kern/subr_time.c
file kern/subr_userconf.c userconf
file kern/subr_vmem.c
file kern/subr_workqueue.c
file kern/subr_xcall.c
file kern/sys_aio.c
file kern/sys_descrip.c
2001-02-24 04:34:28 +03:00
file kern/sys_generic.c
file kern/sys_module.c
file kern/sys_mqueue.c
2007-02-10 00:55:00 +03:00
file kern/sys_lwp.c
file kern/sys_pipe.c !pipe_socketpair
file kern/sys_pmc.c
2006-08-30 15:08:15 +04:00
file kern/sys_process.c ptrace | ktrace
file kern/sys_pset.c
2008-03-23 17:02:49 +03:00
file kern/sys_select.c
2007-02-10 00:55:00 +03:00
file kern/sys_sig.c
2007-01-16 08:28:45 +03:00
file kern/sys_sched.c
2001-02-24 04:34:28 +03:00
file kern/sys_socket.c
file kern/syscalls.c syscall_debug
file kern/sysv_ipc.c sysvshm | sysvsem | sysvmsg
file kern/sysv_msg.c sysvmsg
file kern/sysv_sem.c sysvsem
file kern/sysv_shm.c sysvshm
file kern/tty.c
file kern/tty_conf.c
2004-11-10 20:26:16 +03:00
file kern/tty_bsdpty.c compat_bsdpty
file kern/tty_pty.c pty needs-flag
2004-11-10 20:26:16 +03:00
file kern/tty_ptm.c pty
2001-02-24 04:34:28 +03:00
file kern/tty_subr.c
file kern/tty_tty.c
file kern/uipc_accf.c
2001-02-24 04:34:28 +03:00
file kern/uipc_domain.c
file kern/uipc_mbuf.c
file kern/uipc_mbuf2.c
file net/link_proto.c
2001-02-24 04:34:28 +03:00
file kern/uipc_proto.c
file kern/uipc_sem.c p1003_1b_semaphore
2001-02-24 04:34:28 +03:00
file kern/uipc_socket.c
file kern/uipc_socket2.c
file kern/uipc_syscalls.c
file kern/uipc_usrreq.c
file kern/vfs_bio.c
file kern/vfs_cache.c
file kern/vfs_dirhash.c
2001-02-24 04:34:28 +03:00
file kern/vfs_getcwd.c
Apply the NFS exports list rototill patch: - Remove all NFS related stuff from file system specific code. - Drop the vfs_checkexp hook and generalize it in the new nfs_check_export function, thus removing redundancy from all file systems. - Move all NFS export-related stuff from kern/vfs_subr.c to the new file sys/nfs/nfs_export.c. The former was becoming large and its code is always compiled, regardless of the build options. Using the latter, the code is only compiled in when NFSSERVER is enabled. While doing this, also make some functions in nfs_subs.c conditional to NFSSERVER. - Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a path and a set of export entries. At the moment it can only clear the exports list or append entries, one by one, but it is done in a way that allows setting the whole set of entries atomically in the future (see the comment in mountd_set_exports_list or in doc/TODO). - Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so that it becomes file system agnostic. In fact, all this whole thing was done to remove a 'XXX' block from this utility! - Change the mount*, newfs and fsck* userland utilities to not deal with NFS exports initialization; done internally by the kernel when initializing the NFS support for each file system. - Implement an interface for VFS (called VFS hooks) so that several kernel subsystems can run arbitrary code upon receipt of specific VFS events. At the moment, this only provides support for unmount and is used to destroy NFS exports lists from the file systems being unmounted, though it has room for extension. Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
file kern/vfs_hooks.c
2001-02-24 04:34:28 +03:00
file kern/vfs_init.c
file kern/vfs_lockf.c
file kern/vfs_lookup.c
file kern/vfs_subr.c
file kern/vfs_syscalls.c
file kern/vfs_trans.c
2001-02-24 04:34:28 +03:00
file kern/vfs_vnops.c
file kern/vfs_wapbl.c wapbl
file kern/vfs_xattr.c
2001-02-24 04:34:28 +03:00
file kern/vnode_if.c
file miscfs/deadfs/dead_vnops.c
file miscfs/fifofs/fifo_vnops.c
file miscfs/genfs/genfs_io.c
file miscfs/genfs/genfs_vfsops.c
2001-02-24 04:34:28 +03:00
file miscfs/genfs/genfs_vnops.c
file miscfs/genfs/layer_subr.c nullfs | overlay | umapfs | lkm
file miscfs/genfs/layer_vfsops.c nullfs | overlay | umapfs | lkm
file miscfs/genfs/layer_vnops.c nullfs | overlay | umapfs | lkm
file miscfs/specfs/spec_vnops.c
file miscfs/syncfs/sync_subr.c
file miscfs/syncfs/sync_vnops.c
file net/bpf.c bpfilter needs-flag
2001-02-24 04:34:28 +03:00
file net/bpf_filter.c bpf_filter
file net/bsd-comp.c ppp & ppp_bsdcomp
file net/if.c
file net/if_arcsubr.c arcnet needs-flag
2001-02-24 04:34:28 +03:00
file net/if_atmsubr.c atm
file net/if_bridge.c bridge needs-flag
file net/bridgestp.c bridge
file net/if_ecosubr.c eco
file net/if_etherip.c etherip needs-flag
2001-02-24 04:34:28 +03:00
file net/if_ethersubr.c ether | fddi | netatalk | token |
wlan
file net/if_faith.c faith & inet & inet6 needs-flag
2001-02-24 04:34:28 +03:00
file net/if_fddisubr.c fddi needs-flag
file net/if_gif.c gif needs-flag
file net/if_gre.c gre needs-flag
2001-02-24 04:34:28 +03:00
file net/if_hippisubr.c hippi needs-flag
file net/if_ieee1394subr.c ieee1394
file net/if_loop.c loop needs-flag
2001-02-24 04:34:28 +03:00
file net/if_media.c
2004-12-05 08:43:04 +03:00
file net/if_ppp.c ppp needs-flag
file net/if_srt.c srt
2001-02-24 04:34:28 +03:00
file net/if_stf.c stf & inet & inet6 needs-flag
2004-12-05 08:43:04 +03:00
file net/if_sl.c sl needs-flag
2001-02-24 04:34:28 +03:00
file net/if_spppsubr.c sppp
2004-12-05 08:43:04 +03:00
file net/if_strip.c strip needs-flag
2001-02-24 04:34:28 +03:00
file net/if_tokensubr.c token needs-flag
2005-01-19 13:17:00 +03:00
file net/if_tap.c tap needs-flag
file net/if_tun.c tun needs-flag
2001-02-24 04:34:28 +03:00
file net/if_vlan.c vlan needs-flag
file net/if_pppoe.c pppoe needs-flag
2006-01-07 17:19:51 +03:00
file net/pfil.c pfil_hooks | ipfilter | pf
2001-02-24 04:34:28 +03:00
file net/ppp-deflate.c ppp & ppp_deflate
file net/ppp_tty.c ppp
file net/net_stats.c
2001-02-24 04:34:28 +03:00
file net/radix.c
file net/raw_cb.c
file net/raw_usrreq.c
file net/route.c
file net/rtsock.c
file net/slcompress.c sl | ppp | strip | (irip & irip_vj)
2008-05-05 17:41:29 +04:00
file net/zlib.c (ppp & ppp_deflate) | ipsec | opencrypto | vnd_compression
file netinet/accf_data.c accf_data
file netinet/accf_http.c accf_http
file netinet/cpu_in_cksum.c (inet | inet6) & !cpu_in_cksum
2001-02-24 04:34:28 +03:00
file netinet/if_arp.c arp | netatalk needs-flag
file netinet/if_atm.c atm
file netinet/in4_cksum.c inet
file netinet/in_cksum.c inet
2001-02-24 04:34:28 +03:00
file netinet/in_gif.c gif & inet
file netinet/ip_carp.c carp & (inet | inet6) needs-flag
file netinet/ip_ecn.c ipsec | fast_ipsec | gif | stf
2001-02-24 04:34:28 +03:00
file netinet/ip_encap.c inet | inet6
file netinet/ip_etherip.c etherip & inet
file netinet6/ip6_etherip.c etherip & inet6
2001-02-24 04:34:28 +03:00
file netinet6/in6_gif.c gif & inet6
file netisdn/i4b_ctl.c isdnctl needs-flag
file netisdn/i4b_isppp.c ippp needs-count
file netisdn/i4b_ipr.c irip needs-count
file netisdn/i4b_rbch.c isdnbchan needs-count
file netisdn/i4b_tel.c isdntel needs-count
file netisdn/i4b_trace.c isdntrc needs-count
2001-02-24 04:34:28 +03:00
file netisdn/i4b_mbuf.c passive_isdn
2001-02-24 04:34:28 +03:00
file netisdn/i4b_l2.c passive_isdn
file netisdn/i4b_l2fsm.c passive_isdn
file netisdn/i4b_uframe.c passive_isdn
file netisdn/i4b_tei.c passive_isdn
file netisdn/i4b_sframe.c passive_isdn
file netisdn/i4b_iframe.c passive_isdn
file netisdn/i4b_l2timer.c passive_isdn
file netisdn/i4b_util.c passive_isdn
file netisdn/i4b_lme.c passive_isdn
# Q.931 handler
2001-02-24 04:34:28 +03:00
file netisdn/i4b_q931.c passive_isdn
file netisdn/i4b_q932fac.c passive_isdn
file netisdn/i4b_l3fsm.c passive_isdn
file netisdn/i4b_l3timer.c passive_isdn
file netisdn/i4b_l2if.c passive_isdn
file netisdn/i4b_l4if.c passive_isdn
# isdn device driver, interface to isdnd
file netisdn/i4b_i4bdrv.c isdn needs-flag
file netisdn/i4b_l4.c isdndev needs-flag
file netisdn/i4b_l4mgmt.c isdndev needs-flag
file netisdn/i4b_l4timer.c isdndev needs-flag
2003-09-25 19:58:14 +04:00
# capi
file netisdn/i4b_capi_l4if.c isdncapi
file netisdn/i4b_capi_llif.c isdncapi
file netisdn/i4b_capi_msgs.c isdncapi
# Game adapter (joystick)
device joy
file dev/ic/joy.c joy needs-flag
include "net/agr/files.agr"
2005-09-27 06:41:10 +04:00
#
# General Purpose Input/Output framework
#
define onewire_bitbang
2005-09-27 06:41:10 +04:00
include "dev/gpio/files.gpio"
include "dev/onewire/files.onewire"
#
# Pseudo audio device
#
include "dev/pad/files.pad"
#
# Intel 386 Real Mode emulator
#
include "lib/libx86emu/files.x86emu"
#
# "tprof" profiler.
#
include "dev/tprof/files.tprof"