GENERIC revision 1.150 1 1.150 rin # $NetBSD: GENERIC,v 1.150 2020/08/10 06:32:58 rin Exp $
2 1.1 dbj #
3 1.50 gmcgarry # GENERIC machine description file
4 1.50 gmcgarry #
5 1.50 gmcgarry # This machine description file is used to generate the default NetBSD
6 1.50 gmcgarry # kernel. The generic kernel does not include all options, subsystems
7 1.50 gmcgarry # and device drivers, but should be useful for most applications.
8 1.1 dbj #
9 1.50 gmcgarry # The machine description file can be customised for your specific
10 1.50 gmcgarry # machine to reduce the kernel size and improve its performance.
11 1.1 dbj #
12 1.50 gmcgarry # For further information on compiling NetBSD kernels, see the config(8)
13 1.50 gmcgarry # man page.
14 1.50 gmcgarry #
15 1.50 gmcgarry # For further information on hardware support for this architecture, see
16 1.50 gmcgarry # the intro(4) man page. For further information about kernel options
17 1.50 gmcgarry # for this architecture, see the options(4) man page. For an explanation
18 1.50 gmcgarry # of each device driver in this file see the section 4 man page for the
19 1.50 gmcgarry # device.
20 1.1 dbj
21 1.50 gmcgarry include "arch/next68k/conf/std.next68k"
22 1.24 hubertf
23 1.55 atatat options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.55 atatat
25 1.150 rin #ident "GENERIC-$Revision: 1.150 $"
26 1.135 tsutsui
27 1.150 rin makeoptions COPTS="-O2 -fno-reorder-blocks -fno-omit-frame-pointer"
28 1.150 rin # See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
29 1.150 rin # backtraces in DDB.
30 1.1 dbj
31 1.1 dbj # Needs to be set per system. i.e change these as you see fit
32 1.1 dbj maxusers 16
33 1.1 dbj
34 1.1 dbj # Standard system options
35 1.1 dbj options KTRACE # system call tracing
36 1.1 dbj options SYSVMSG # System V message queues
37 1.1 dbj options SYSVSEM # System V semaphores
38 1.48 lukem #options SEMMNI=10 # number of semaphore identifiers
39 1.48 lukem #options SEMMNS=60 # number of semaphores in system
40 1.48 lukem #options SEMUME=10 # max number of undo entries per process
41 1.48 lukem #options SEMMNU=30 # number of undo structures in system
42 1.1 dbj options SYSVSHM # System V shared memory
43 1.1 dbj
44 1.1 dbj options INSECURE # disable kernel security level
45 1.63 lukem options USERCONF # userconf(4) support
46 1.53 jdolecek #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
47 1.78 atatat options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
48 1.67 junyoung
49 1.145 sevan # Alternate buffer queue strategies for better responsiveness under high
50 1.145 sevan # disk I/O load.
51 1.87 tsutsui #options BUFQ_READPRIO
52 1.148 sevan options BUFQ_PRIOCSCAN
53 1.1 dbj
54 1.96 chs #options DEBUG # kernel debugging code
55 1.96 chs #options DIAGNOSTIC # extra kernel sanity checking
56 1.22 dbj
57 1.1 dbj # Which kernel debugger? Uncomment either this:
58 1.1 dbj options DDB
59 1.3 dbj options DDB_HISTORY_SIZE=100 # enable history editing in DDB
60 1.3 dbj
61 1.1 dbj # ... or these for KGDB (gdb remote target)
62 1.48 lukem #makeoptions DEBUG="-g" # debugging symbols for gdb
63 1.47 lukem #options KGDB # support for kernel gdb
64 1.47 lukem #options KGDB_DEV=0xc01 # kgdb device number (dev_t)
65 1.47 lukem #options KGDB_DEVRATE=9600 # baud rate
66 1.1 dbj
67 1.1 dbj # Other debugging options
68 1.1 dbj #options PMAP_DEBUG
69 1.1 dbj options SCSIDEBUG
70 1.1 dbj options SCSIVERBOSE # Verbose SCSI errors
71 1.48 lukem options SWAPDEBUG
72 1.1 dbj
73 1.41 wiz # Compatibility options
74 1.144 mrg include "conf/compat_netbsd09.config"
75 1.1 dbj
76 1.28 deberg options COMPAT_M68K4K # compatibility with NetBSD/m68k4k binaries
77 1.3 dbj options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8,
78 1.3 dbj options COMPAT_SUNOS # can run SunOS 4.1.1 executables
79 1.7 itohy #options COMPAT_LINUX # can run Linux/m68k executables
80 1.40 chs options COMPAT_AOUT_M68K # support for NetBSD a.out executables
81 1.40 chs options EXEC_AOUT # support for a.out executables
82 1.1 dbj
83 1.1 dbj # File systems
84 1.65 mycroft file-system FFS # UFS
85 1.13 dbj #file-system EXT2FS # second extended file system (linux)
86 1.13 dbj #file-system LFS # log-structured file system
87 1.1 dbj file-system MFS # memory file system
88 1.1 dbj file-system NFS # Network File System client
89 1.13 dbj #file-system CD9660 # ISO 9660 + Rock Ridge file system
90 1.13 dbj #file-system MSDOSFS # MS-DOS file system
91 1.1 dbj file-system FDESC # /dev/fd
92 1.1 dbj file-system KERNFS # /kern
93 1.1 dbj file-system NULLFS # loopback file system
94 1.23 wrstuden file-system OVERLAY # overlay file system
95 1.118 pooka file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
96 1.1 dbj file-system PROCFS # /proc
97 1.1 dbj file-system UMAPFS # NULLFS + uid and gid remapping
98 1.1 dbj file-system UNION # union file system
99 1.94 christos file-system PTYFS # /dev/pts/N support
100 1.120 chs file-system TMPFS # Efficient memory file-system
101 1.99 reinoud #file-system UDF # experimental - OSTA UDF CD/DVD file-system
102 1.1 dbj
103 1.1 dbj options NFSSERVER # nfs server support
104 1.123 bouyer #options QUOTA # legacy UFS quotas
105 1.123 bouyer #options QUOTA2 # new, in-filesystem UFS quotas
106 1.125 dholland options WAPBL # File system journaling support
107 1.82 rumble #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
108 1.97 tsutsui options FFS_NO_SNAPSHOT # No FFS snapshot support
109 1.138 manu #options UFS_EXTATTR # Extended attribute support for UFS1
110 1.1 dbj #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
111 1.1 dbj # immutable) behave as system flags.
112 1.21 itojun
113 1.1 dbj # Networking options
114 1.1 dbj options GATEWAY # packet forwarding
115 1.1 dbj options INET # IP + ICMP + TCP + UDP
116 1.21 itojun options INET6 # IPV6
117 1.21 itojun #options IPSEC # IP security
118 1.21 itojun #options IPSEC_DEBUG # debug for IP security
119 1.1 dbj #options MROUTING # IP multicast routing
120 1.79 manu #options PIM # Protocol Independent Multicast
121 1.1 dbj #options NETATALK # AppleTalk networking protocols
122 1.16 christos options PPP_BSDCOMP # BSD-Compress compression support for PPP
123 1.16 christos options PPP_DEFLATE # Deflate compression support for PPP
124 1.16 christos options PPP_FILTER # Active filter support for PPP (requires bpf)
125 1.43 abs #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
126 1.1 dbj
127 1.77 abs #options ALTQ # Manipulate network interfaces' output queues
128 1.77 abs #options ALTQ_BLUE # Stochastic Fair Blue
129 1.77 abs #options ALTQ_CBQ # Class-Based Queueing
130 1.77 abs #options ALTQ_CDNR # Diffserv Traffic Conditioner
131 1.77 abs #options ALTQ_FIFOQ # First-In First-Out Queue
132 1.77 abs #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
133 1.77 abs #options ALTQ_HFSC # Hierarchical Fair Service Curve
134 1.77 abs #options ALTQ_LOCALQ # Local queueing discipline
135 1.77 abs #options ALTQ_PRIQ # Priority Queueing
136 1.77 abs #options ALTQ_RED # Random Early Detection
137 1.77 abs #options ALTQ_RIO # RED with IN/OUT
138 1.77 abs #options ALTQ_WFQ # Weighted Fair Queueing
139 1.77 abs
140 1.1 dbj # NeXT specific options
141 1.1 dbj options M68040
142 1.62 mycroft options M68030
143 1.1 dbj options FPSP
144 1.1 dbj #options FPU_EMULATE
145 1.1 dbj
146 1.27 deberg options ZS_CONSOLE_ABORT # drop to debugger on break
147 1.27 deberg #options SERCONSOLE # use serial console
148 1.1 dbj
149 1.1 dbj options NFS_BOOT_BOOTP
150 1.1 dbj options NFS_BOOT_DHCP
151 1.3 dbj
152 1.9 dbj # wscons options
153 1.48 lukem options RCONS_2BPP # necessary for nextdisplay
154 1.48 lukem options RCONS_16BPP # necessary for color nextdisplay
155 1.10 dbj #options WSEMUL_SUN # sun terminal emulation
156 1.10 dbj options WSEMUL_VT100 # VT100 / VT220 emulation
157 1.9 dbj options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
158 1.127 abs options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
159 1.9 dbj options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
160 1.12 dbj # see dev/wskbdmap_next.h for implemented layouts
161 1.9 dbj #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
162 1.9 dbj
163 1.1 dbj config netbsd root on ? type ?
164 1.1 dbj
165 1.8 dbj #
166 1.8 dbj # Device configuration
167 1.8 dbj #
168 1.8 dbj
169 1.8 dbj # The root node:
170 1.8 dbj mainbus0 at root
171 1.8 dbj
172 1.8 dbj #fpu0 at mainbus?
173 1.8 dbj
174 1.8 dbj # device space
175 1.48 lukem intio0 at mainbus?
176 1.9 dbj
177 1.48 lukem nextkbd0 at intio? ipl 3
178 1.48 lukem nextdisplay0 at mainbus?
179 1.9 dbj
180 1.48 lukem wsdisplay* at nextdisplay? console ?
181 1.48 lukem wskbd* at nextkbd? console ?
182 1.8 dbj
183 1.8 dbj # INTIO
184 1.61 mycroft nextdma* at intio? ipl 6
185 1.61 mycroft
186 1.48 lukem zsc0 at intio? ipl 5
187 1.48 lukem #zsc1 at intio? ipl 5
188 1.8 dbj
189 1.48 lukem xe* at intio? ipl 3 # ethernet
190 1.8 dbj
191 1.64 mycroft esp0 at intio? ipl 3 flags 0xffff00 # Turn off sync negotiation
192 1.8 dbj
193 1.8 dbj #
194 1.8 dbj # Serial ports
195 1.8 dbj #
196 1.141 tsutsui zstty0 at zsc0 channel 0 # Serial Port A
197 1.141 tsutsui zstty1 at zsc0 channel 1 # Serial Port B
198 1.8 dbj
199 1.8 dbj # SCSI bus support
200 1.60 mycroft scsibus* at scsi?
201 1.8 dbj
202 1.8 dbj # SCSI devices
203 1.64 mycroft sd* at scsibus? target ? lun ? # SCSI disk drives
204 1.64 mycroft st* at scsibus? target ? lun ? # SCSI tape drives
205 1.64 mycroft cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
206 1.64 mycroft ch* at scsibus? target ? lun ? # SCSI autochangers
207 1.64 mycroft se* at scsibus? target ? lun ? # SCSI ethernet
208 1.64 mycroft ss* at scsibus? target ? lun ? # SCSI scanners
209 1.64 mycroft uk* at scsibus? target ? lun ? # SCSI unknown
210 1.8 dbj
211 1.8 dbj
212 1.1 dbj # Memory-disk drivers
213 1.122 hannken pseudo-device md
214 1.1 dbj
215 1.113 tls #
216 1.113 tls # accept filters
217 1.113 tls pseudo-device accf_data # "dataready" accept filter
218 1.113 tls pseudo-device accf_http # "httpready" accept filter
219 1.113 tls
220 1.1 dbj # Misc.
221 1.131 christos pseudo-device loop # network loopback
222 1.100 rpaulo pseudo-device bpfilter # packet filter
223 1.148 sevan pseudo-device carp # Common Address Redundancy Protocol
224 1.101 cube pseudo-device sl # CSLIP
225 1.101 cube pseudo-device ppp # PPP
226 1.51 martin pseudo-device pppoe # PPP over Ethernet (RFC 2516)
227 1.101 cube pseudo-device tun # network tunneling over tty
228 1.81 cube pseudo-device tap # virtual Ethernet
229 1.101 cube #pseudo-device gre # generic L3 over IP tunnel
230 1.146 maxv pseudo-device npf # NPF packet filter
231 1.101 cube pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
232 1.101 cube #pseudo-device faith # IPv[46] tcp relay translation i/f
233 1.102 pavel pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
234 1.37 bouyer pseudo-device vlan # IEEE 802.1q encapsulation
235 1.49 atatat pseudo-device bridge # simple inter-network bridging
236 1.108 martin pseudo-device agr # IEEE 802.3ad link aggregation
237 1.46 augustss #pseudo-device wsmux # mouse & keyboard multiplexor
238 1.1 dbj
239 1.34 jdolecek pseudo-device pty # pseudo-terminals
240 1.101 cube pseudo-device vnd # paging to files
241 1.90 hubertf #options VND_COMPRESSION # compressed vnd(4)
242 1.132 christos #pseudo-device raid # RAIDframe disk driver
243 1.26 simonb #options RAID_AUTOCONFIG # auto-configuration of RAID components
244 1.52 oster # Options to enable various other RAIDframe RAID types.
245 1.52 oster # options RF_INCLUDE_EVENODD=1
246 1.52 oster # options RF_INCLUDE_RAID5_RS=1
247 1.52 oster # options RF_INCLUDE_PARITYLOGGING=1
248 1.52 oster # options RF_INCLUDE_CHAINDECLUSTER=1
249 1.52 oster # options RF_INCLUDE_INTERDECLUSTER=1
250 1.52 oster # options RF_INCLUDE_PARITY_DECLUSTERING=1
251 1.52 oster # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
252 1.119 pooka pseudo-device fss # file system snapshot device
253 1.131 christos pseudo-device ccd # concatenated disks
254 1.58 lukem pseudo-device clockctl # user control of clock subsystem
255 1.71 ragge pseudo-device ksyms # /dev/ksyms
256 1.118 pooka pseudo-device putter # for puffs and pud
257 1.98 elad
258 1.148 sevan include "dev/veriexec.config"
259