1 1.115 christos # $NetBSD: GENERIC,v 1.115 2024/01/29 18:27:15 christos Exp $ 2 1.1 simonb 3 1.18 simonb include "arch/sbmips/conf/std.sbmips" 4 1.1 simonb 5 1.5 atatat options INCLUDE_CONFIG_FILE # embed config file in kernel binary 6 1.5 atatat 7 1.115 christos #ident "GENERIC-$Revision: 1.115 $" 8 1.16 simonb 9 1.16 simonb #options LOCKDEBUG # XXX XXX XXX XXX 10 1.46 chs #options DEBUG # extra kernel debugging support 11 1.1 simonb 12 1.1 simonb # The following three options are required for BCM1250 pass 1 silicon 13 1.16 simonb #options SB1250_PASS1 14 1.16 simonb #options NOFPU 15 1.81 matt #options FPEMUL 16 1.1 simonb 17 1.1 simonb maxusers 32 18 1.1 simonb 19 1.1 simonb # Standard system options 20 1.1 simonb options KTRACE # system call tracing support 21 1.1 simonb options SYSVMSG # System V message queues 22 1.1 simonb options SYSVSEM # System V semaphores 23 1.1 simonb options SYSVSHM # System V shared memory 24 1.1 simonb #options NTP # network time protocol 25 1.1 simonb 26 1.108 sevan # Alternate buffer queue strategies for better responsiveness under high 27 1.108 sevan # disk I/O load. 28 1.108 sevan #options BUFQ_READPRIO 29 1.108 sevan options BUFQ_PRIOCSCAN 30 1.108 sevan 31 1.1 simonb # Debugging options 32 1.46 chs #options DIAGNOSTIC # extra kernel sanity checking 33 1.1 simonb #options DEBUG # extra kernel debugging support 34 1.10 lukem options USERCONF # userconf(4) support 35 1.29 atatat options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 36 1.1 simonb options DDB # kernel dynamic debugger 37 1.1 simonb options DDB_HISTORY_SIZE=100 # enable history editing in DDB 38 1.1 simonb #makeoptions DEBUG="-g" # compile full symbol table 39 1.98 joerg makeoptions COPY_SYMTAB=1 # size for embedded symbol table 40 1.1 simonb 41 1.1 simonb # Compatibility options 42 1.105 mrg include "conf/compat_netbsd16.config" 43 1.1 simonb #options EXEC_ECOFF # exec ECOFF binaries 44 1.1 simonb #options COMPAT_ULTRIX # binary compatibility with Ultrix 45 1.1 simonb 46 1.1 simonb # File systems 47 1.1 simonb file-system FFS # Berkeley Fast Filesystem 48 1.1 simonb file-system NFS # Sun NFS-compatible filesystem client 49 1.1 simonb file-system KERNFS # kernel data-structure filesystem 50 1.1 simonb #file-system NULLFS # NULL layered filesystem 51 1.1 simonb file-system OVERLAY # overlay file system 52 1.1 simonb file-system MFS # memory-based filesystem 53 1.1 simonb file-system FDESC # user file descriptor filesystem 54 1.1 simonb #file-system UMAPFS # uid/gid remapping filesystem 55 1.1 simonb file-system LFS # Log-based filesystem (still experimental) 56 1.6 simonb file-system PROCFS # /proc 57 1.1 simonb #file-system CD9660 # ISO 9660 + Rock Ridge file system 58 1.1 simonb #file-system UNION # union file system 59 1.1 simonb #file-system MSDOSFS # MS-DOS FAT filesystem(s). 60 1.1 simonb #file-system CODA # Coda File System; also needs vcoda (below) 61 1.44 christos file-system PTYFS # /dev/pts/N support 62 1.77 chs file-system TMPFS # Efficient memory file-system 63 1.50 reinoud #file-system UDF # experimental - OSTA UDF CD/DVD file-system 64 1.1 simonb 65 1.1 simonb # File system options 66 1.112 simonb #options FFS_EI # FFS Endian Independent support 67 1.112 simonb #options FFS_NO_SNAPSHOT # No FFS snapshot support 68 1.82 bouyer options QUOTA # legacy UFS quotas 69 1.82 bouyer options QUOTA2 # new, in-filesystem UFS quotas 70 1.112 simonb options UFS_DIRHASH # UFS Large Directory Hashing 71 1.100 manu options UFS_EXTATTR # Extended attribute support for UFS1 72 1.86 dholland options WAPBL # File system journaling support 73 1.112 simonb options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental 74 1.112 simonb options NFSSERVER # Network File System server 75 1.1 simonb 76 1.1 simonb # Networking options 77 1.1 simonb #options GATEWAY # IP packet forwarding 78 1.1 simonb options INET # Internet protocols 79 1.1 simonb options INET6 # IPV6 80 1.1 simonb #options IPSEC # IP security 81 1.1 simonb #options IPSEC_DEBUG # debug for IP security 82 1.1 simonb #options MROUTING # packet forwarding of multicast packets 83 1.30 manu #options PIM # Protocol Independent Multicast 84 1.1 simonb #options NETATALK # AppleTalk (over Ethernet) protocol 85 1.1 simonb #options PPP_BSDCOMP # BSD-Compress compression support for PPP 86 1.1 simonb #options PPP_DEFLATE # Deflate compression support for PPP 87 1.1 simonb options PPP_FILTER # Active filter support for PPP (requires bpf) 88 1.1 simonb 89 1.27 abs #options ALTQ # Manipulate network interfaces' output queues 90 1.27 abs #options ALTQ_BLUE # Stochastic Fair Blue 91 1.27 abs #options ALTQ_CBQ # Class-Based Queueing 92 1.27 abs #options ALTQ_CDNR # Diffserv Traffic Conditioner 93 1.27 abs #options ALTQ_FIFOQ # First-In First-Out Queue 94 1.27 abs #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 95 1.27 abs #options ALTQ_HFSC # Hierarchical Fair Service Curve 96 1.27 abs #options ALTQ_LOCALQ # Local queueing discipline 97 1.27 abs #options ALTQ_PRIQ # Priority Queueing 98 1.27 abs #options ALTQ_RED # Random Early Detection 99 1.27 abs #options ALTQ_RIO # RED with IN/OUT 100 1.27 abs #options ALTQ_WFQ # Weighted Fair Queueing 101 1.27 abs 102 1.96 alnsn # JIT compiler for bpfilter 103 1.96 alnsn #options SLJIT 104 1.96 alnsn #options BPFJIT 105 1.96 alnsn 106 1.1 simonb # These options enable verbose messages for several subsystems. 107 1.1 simonb # Warning, these may compile large string tables into the kernel! 108 1.1 simonb options PCIVERBOSE # verbose PCI device autoconfig messages 109 1.1 simonb #options PCI_CONFIG_DUMP # verbosely dump PCI config space 110 1.1 simonb #options SCSIVERBOSE # human readable SCSI error messages 111 1.1 simonb options MIIVERBOSE # verbose PHY autoconfig messages 112 1.1 simonb 113 1.1 simonb options NFS_BOOT_DHCP 114 1.1 simonb 115 1.1 simonb #config netbsd root on ? type ? 116 1.1 simonb config netbsd root on sbmac0 type nfs 117 1.1 simonb 118 1.1 simonb zbbus* at root 119 1.1 simonb 120 1.6 simonb cpu* at zbbus? busid ? 121 1.1 simonb sbscd* at zbbus? busid ? 122 1.81 matt sbbrz* at zbbus? busid ? 123 1.1 simonb sbobio* at zbbus? busid ? 124 1.1 simonb 125 1.81 matt pci* at sbbrz? bus ? 126 1.81 matt ppb* at pci? dev ? 127 1.81 matt pci* at ppb? 128 1.81 matt 129 1.81 matt ohci* at pci? dev ? function ? # Open Host Controller 130 1.81 matt 131 1.81 matt bge* at pci? dev ? 132 1.81 matt 133 1.81 matt #sbicu* at sbscd? offset ? 134 1.81 matt sbwdog* at sbscd? offset ? intr ? 135 1.81 matt sbtimer0 at sbscd? offset ? intr ? flags 0x01 # clock 136 1.81 matt #sbtimer1 at sbscd? offset ? intr ? flags 0x02 # statclock 137 1.81 matt sbtimer* at sbscd? offset ? intr ? 138 1.81 matt 139 1.81 matt sbmac* at sbobio? offset ? 140 1.81 matt sbscn* at sbobio? offset ? 141 1.81 matt #sbgbus* at sbobio? offset ? 142 1.81 matt smbus* at sbobio? offset ? 143 1.7 simonb 144 1.16 simonb xirtc* at smbus? chan ? dev ? # Xicor X1241 RTC 145 1.23 simonb m41t81rtc* at smbus? chan ? dev ? # ST M41T81 RTC 146 1.1 simonb 147 1.1 simonb # MII/PHY support 148 1.6 simonb brgphy* at mii? phy ? 149 1.1 simonb 150 1.81 matt # USB 151 1.81 matt usb* at ohci? 152 1.81 matt uhub* at usb? 153 1.81 matt uhub* at uhub? port ? 154 1.81 matt umass* at uhub? port ? configuration ? interface ? 155 1.81 matt scsibus* at umass? channel ? 156 1.81 matt sd* at scsibus? target ? lun ? 157 1.81 matt uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 158 1.81 matt ucom* at uplcom? portno ? 159 1.81 matt 160 1.1 simonb # Pseudo-devices 161 1.1 simonb 162 1.1 simonb # Disk/mass storage pseudo-devices 163 1.91 christos pseudo-device ccd # concatenated disk devices 164 1.91 christos #pseudo-device cgd # cryptographic disk devices 165 1.92 christos #pseudo-device raid # RAIDframe disk driver 166 1.1 simonb #options RAID_AUTOCONFIG # auto-configuration of RAID 167 1.80 hannken pseudo-device md # memory disk device (ramdisk) 168 1.52 cube pseudo-device vnd # disk-like interface to files 169 1.39 hubertf #options VND_COMPRESSION # compressed vnd(4) 170 1.1 simonb 171 1.1 simonb # Network pseudo-devices 172 1.51 rpaulo pseudo-device bpfilter # Berkeley packet filter 173 1.108 sevan pseudo-device carp # Common Address Redundancy Protocol 174 1.106 maxv pseudo-device npf # NPF packet filter 175 1.1 simonb pseudo-device loop # network loopback 176 1.52 cube #pseudo-device ppp # Point-to-Point Protocol 177 1.1 simonb #pseudo-device pppoe # PPP over Ethernet (RFC 2516) 178 1.52 cube #pseudo-device sl # Serial Line IP 179 1.1 simonb #pseudo-device irframetty # IrDA frame line discipline 180 1.52 cube #pseudo-device tun # network tunneling over tty 181 1.32 cube #pseudo-device tap # virtual Ethernet 182 1.52 cube #pseudo-device gre # generic L3 over IP tunnel 183 1.92 christos #pseudo-device ipip # RFC 2003 IP Encapsulation 184 1.52 cube #pseudo-device gif # RFC1933 tunnel 185 1.52 cube #pseudo-device faith # IPv[46] tcp relay translation 186 1.52 cube #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 187 1.1 simonb pseudo-device vlan # IEEE 802.1q encapsulation 188 1.1 simonb pseudo-device bridge # simple inter-network bridging 189 1.111 roy #pseudo-device vether # Virtual Ethernet for bridge 190 1.61 martin pseudo-device agr # IEEE 802.3ad link aggregation 191 1.1 simonb 192 1.69 tls # 193 1.69 tls # accept filters 194 1.69 tls pseudo-device accf_data # "dataready" accept filter 195 1.69 tls pseudo-device accf_http # "httpready" accept filter 196 1.69 tls 197 1.1 simonb # Miscellaneous pseudo-devices 198 1.1 simonb pseudo-device pty # pseudo-terminals 199 1.93 christos #pseudo-device sequencer # MIDI sequencer 200 1.8 lukem pseudo-device clockctl # user control of clock subsystem 201 1.21 ragge pseudo-device ksyms # /dev/ksyms 202 1.113 riastrad pseudo-device swwdog # software watchdog timer -- swwdog(4) 203 1.1 simonb 204 1.1 simonb # A pseudo device needed for Coda # also needs CODA (above) 205 1.92 christos #pseudo-device vcoda # coda minicache <-> venus comm. 206 1.48 elad 207 1.108 sevan include "dev/veriexec.config" 208 1.114 abs 209 1.114 abs # Pull in optional local configuration - always at end 210 1.114 abs cinclude "arch/sbmips/conf/GENERIC.local" 211