Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.103
      1  1.103       rin # $NetBSD: GENERIC,v 1.103 2020/03/08 06:23:18 rin Exp $
      2   1.11  gmcgarry #
      3   1.11  gmcgarry # GENERIC machine description file
      4   1.11  gmcgarry # 
      5   1.11  gmcgarry # This machine description file is used to generate the default NetBSD
      6   1.11  gmcgarry # kernel.  The generic kernel does not include all options, subsystems
      7   1.11  gmcgarry # and device drivers, but should be useful for most applications.
      8   1.11  gmcgarry #
      9   1.11  gmcgarry # The machine description file can be customised for your specific
     10   1.11  gmcgarry # machine to reduce the kernel size and improve its performance.
     11   1.11  gmcgarry #
     12   1.11  gmcgarry # For further information on compiling NetBSD kernels, see the config(8)
     13   1.11  gmcgarry # man page.
     14   1.11  gmcgarry #
     15   1.11  gmcgarry # For further information on hardware support for this architecture, see
     16   1.11  gmcgarry # the intro(4) man page.  For further information about kernel options
     17   1.11  gmcgarry # for this architecture, see the options(4) man page.  For an explanation
     18   1.11  gmcgarry # of each device driver in this file see the section 4 man page for the
     19   1.11  gmcgarry # device.
     20    1.1  fredette 
     21   1.11  gmcgarry # Supports Sun2 (2/120, 2/170, 2/50, ...)
     22    1.1  fredette # Supports root on: ie0, sd*, ...
     23    1.1  fredette 
     24   1.11  gmcgarry include 	"arch/sun2/conf/std.sun2"
     25    1.1  fredette 
     26  1.103       rin options 	MODULAR			# new style module(7) framework
     27  1.103       rin #options 	MODULAR_DEFAULT_AUTOLOAD
     28  1.103       rin options 	INSECURE		# allow modload(8) in multiuser mode
     29  1.103       rin 
     30   1.90   tsutsui #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     31   1.16    atatat 
     32  1.103       rin #ident 		"GENERIC-$Revision: 1.103 $"
     33   1.68   tsutsui 
     34  1.103       rin makeoptions	COPTS="-Os -fno-inline-small-functions"
     35  1.103       rin 					# bootloader has size limit (~2MB)
     36    1.1  fredette 
     37    1.1  fredette # Machines to be supported by this kernel
     38    1.1  fredette #options 	FPU_EMULATE
     39    1.1  fredette 
     40    1.1  fredette # Needs to be set per system.  i.e change these as you see fit
     41   1.68   tsutsui maxusers	4
     42    1.1  fredette 
     43    1.1  fredette # Standard system options
     44    1.1  fredette options 	KTRACE		# system call tracing
     45  1.103       rin #options 	SYSVMSG		# System V message queues
     46  1.103       rin #options 	SYSVSEM		# System V semaphores
     47  1.103       rin #options 	SYSVSHM		# System V shared memory
     48    1.1  fredette #options 	INSECURE	# disable kernel security level
     49   1.68   tsutsui #options 	USERCONF	# userconf(4) support
     50  1.103       rin options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     51   1.90   tsutsui #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     52   1.21  junyoung 
     53   1.99     sevan # Alternate buffer queue strategies for better responsiveness under high
     54   1.99     sevan # disk I/O load.
     55   1.40   tsutsui #options 	BUFQ_READPRIO
     56   1.40   tsutsui #options 	BUFQ_PRIOCSCAN
     57    1.1  fredette 
     58    1.1  fredette # Which kernel debugger?  Uncomment either this:
     59    1.1  fredette options 	DDB
     60    1.1  fredette # ... or these for KGDB (gdb remote target)
     61   1.80       mrg #makeoptions	DEBUG="-g"	# debugging symbols for gdb
     62    1.1  fredette #options 	KGDB
     63    1.8     lukem #options 	KGDB_DEV=0x0C00	# ttya=0C00 ttyb=0C01
     64    1.1  fredette 
     65    1.1  fredette # Other debugging options
     66    1.1  fredette #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     67    1.1  fredette #options 	DEBUG		# kernel debugging code
     68    1.1  fredette #options 	DIAGNOSTIC	# extra kernel sanity checking
     69    1.1  fredette #options 	PMAP_DEBUG
     70    1.1  fredette #options 	SCSIDEBUG
     71    1.1  fredette #options 	SCSIVERBOSE		# Verbose SCSI errors
     72    1.1  fredette 
     73    1.3       wiz # Compatibility options
     74   1.98       mrg include 	"conf/compat_netbsd16.config"
     75    1.2  fredette #options 	COMPAT_SUNOS	# can run SunOS 4.1.1 executables
     76   1.90   tsutsui #options 	COMPAT_AOUT_M68K # support for NetBSD a.out executables
     77   1.90   tsutsui #options 	EXEC_AOUT	# support for a.out executables
     78    1.1  fredette 
     79    1.1  fredette # Filesystem options
     80    1.1  fredette file-system	FFS		# Berkeley Fast Filesystem
     81  1.103       rin #file-system	NFS		# Sun NFS client support
     82  1.103       rin #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     83   1.90   tsutsui #file-system	FDESC		# /dev/fd/*
     84  1.103       rin #file-system	KERNFS		# /kern
     85  1.103       rin #file-system	NULLFS		# loopback file system
     86   1.68   tsutsui #file-system	OVERLAY		# overlay file system
     87    1.2  fredette #file-system	PROCFS		# /proc
     88   1.68   tsutsui #file-system	UNION		# union file system
     89  1.103       rin #file-system	MFS		# memory-based filesystem
     90   1.47  christos file-system	PTYFS		# /dev/pts/N support
     91   1.90   tsutsui #file-system	TMPFS		# Efficient memory file-system
     92   1.53   reinoud #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
     93    1.1  fredette 
     94   1.90   tsutsui #options 	NFSSERVER	# nfs server support
     95   1.77    bouyer #options 	QUOTA		# legacy UFS quotas
     96   1.77    bouyer #options 	QUOTA2		# new, in-filesystem UFS quotas
     97   1.78       wiz #options 	FFS_EI		# FFS Endian Independent support
     98   1.90   tsutsui #options 	WAPBL		# File system journaling support
     99   1.35    rumble #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    100   1.64      yamt #options 	NFS_V2_ONLY	# Exclude NFS3 code to save space
    101   1.50   tsutsui options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    102   1.93      manu #options 	UFS_EXTATTR	# Extended attribute support for UFS1
    103    1.1  fredette 
    104    1.1  fredette # Networking options
    105   1.48     isaki options 	INET		# IP protocol stack support
    106    1.2  fredette #options 	INET6		# IPV6
    107    1.1  fredette #options 	IPSEC		# IP security
    108    1.1  fredette #options 	IPSEC_DEBUG	# debug for IP security
    109    1.1  fredette #options 	GATEWAY		# IP packet forwarding
    110    1.6       abs #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    111    1.1  fredette 
    112   1.30       abs #options 	ALTQ		# Manipulate network interfaces' output queues
    113   1.30       abs #options 	ALTQ_BLUE	# Stochastic Fair Blue
    114   1.30       abs #options 	ALTQ_CBQ	# Class-Based Queueing
    115   1.30       abs #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    116   1.30       abs #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    117   1.30       abs #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    118   1.30       abs #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    119   1.30       abs #options 	ALTQ_LOCALQ	# Local queueing discipline
    120   1.30       abs #options 	ALTQ_PRIQ	# Priority Queueing
    121   1.30       abs #options 	ALTQ_RED	# Random Early Detection
    122   1.30       abs #options 	ALTQ_RIO	# RED with IN/OUT
    123   1.30       abs #options 	ALTQ_WFQ	# Weighted Fair Queueing
    124   1.30       abs 
    125    1.1  fredette # Work-around for root on slow servers (insurance...)
    126    1.1  fredette options 	NFS_BOOT_RWSIZE=1024
    127    1.1  fredette options 	NFS_BOOT_BOOTPARAM
    128    1.1  fredette 
    129    1.1  fredette config		netbsd root on ? type ?
    130    1.1  fredette 
    131    1.1  fredette #### Main bus.
    132    1.1  fredette mainbus0 at root
    133    1.1  fredette 
    134    1.1  fredette #### Bus types.
    135    1.1  fredette 
    136    1.1  fredette obio0	at mainbus? 		# all Sun-2
    137    1.1  fredette obmem0	at mainbus?		# all Sun-2
    138    1.1  fredette mbmem0	at mainbus?		# 2/120, 2/170
    139    1.1  fredette mbio0	at mainbus?		# 2/120, 2/170
    140    1.4  fredette sun68kvme0	at mainbus?	# 2/50, 2/130, 2/160
    141    1.4  fredette vme0	at sun68kvme0		# mi VME attachment
    142    1.1  fredette 
    143    1.1  fredette #### Standard system devices.
    144    1.1  fredette 
    145    1.1  fredette ## The AM9513 clock chip.
    146    1.9     lukem clock0	at obio0 addr 0x002800	# 2/120, 2/170
    147    1.9     lukem clock0	at obio0 addr 0x7f2800	# 2/50, 2/130, 2/160
    148    1.1  fredette 
    149    1.1  fredette ## The MM58167 time-of-day chip.
    150    1.9     lukem tod0	at obio0 addr 0x003800	# 2/120, 2/170
    151    1.4  fredette tod0	at vme0 addr 0x200800	# 2/50, 2/130, 2/160
    152    1.1  fredette 
    153    1.1  fredette #### Serial port configuration.
    154    1.1  fredette 
    155    1.4  fredette ## Zilog 8530 serial chips.  Each has two channels.
    156    1.1  fredette ## zs0 is ttya and ttyb.  zs1 is the keyboard and mouse.
    157    1.2  fredette ## zs0 is REQUIRED to use KGDB.
    158    1.1  fredette zs0	at obio0 addr 0x002000	# 2/120, 2/170
    159    1.4  fredette zs0	at obio0 addr 0x7f2000	# 2/50
    160    1.1  fredette zs1	at obmem0 addr 0x780000	# 2/120, 2/170
    161    1.4  fredette zs1	at obio0 addr 0x7f1800	# 2/50
    162    1.2  fredette zs2	at mbmem0 addr 0x080800	# 2/120, 2/170 (first sc SCSI)
    163    1.2  fredette zs3	at mbmem0 addr 0x081000	# 2/120, 2/170 (first sc SCSI)
    164    1.2  fredette zs4	at mbmem0 addr 0x084800	# 2/120, 2/170 (second sc SCSI)
    165    1.2  fredette zs5	at mbmem0 addr 0x085000	# 2/120, 2/170 (second sc SCSI)
    166    1.4  fredette zstty*	at zs? channel ?	# ttya
    167    1.4  fredette kbd0	at zstty?		# keyboard
    168    1.4  fredette ms0	at zstty?		# mouse
    169    1.1  fredette 
    170    1.1  fredette #### Disk controllers and disks.
    171    1.1  fredette 
    172    1.1  fredette ## PAL+logic-based "Sun SCSI 2" Multibus/VME SCSI controller.
    173    1.1  fredette ## This driver has several flags which may be enabled using
    174    1.1  fredette ## the "flags" directive.  Valid flags are:
    175    1.1  fredette ##
    176    1.1  fredette ## 0x0ff		Set (1<<target) to disable parity checking
    177    1.1  fredette ## 0x100		Set this bit to disable DMA interrupts (poll)
    178    1.1  fredette ## 0x200		Set this bit to disable DMA entirely (use PIO)
    179    1.1  fredette ##
    180    1.1  fredette ## For example: "flags 0x10f" would disable DMA interrupts,
    181    1.1  fredette ## and disable parity for targets 0-3
    182    1.1  fredette 
    183    1.1  fredette sc0	at mbmem0 addr 0x80000 ipl 2 flags 0xff
    184    1.9     lukem sc0	at vme0 addr 0x200000 irq 2 vect 0x40 flags 0xff
    185    1.1  fredette sc1	at mbmem0 addr 0x84000 ipl 2 flags 0xff
    186    1.1  fredette 
    187    1.1  fredette ## NCR5380-based "Sun SCSI 3" VME SCSI controller.
    188    1.1  fredette ## This driver has several flags which may be enabled by OR'ing
    189    1.1  fredette ## the values and using the "flags" directive.
    190    1.1  fredette ## Valid flags are:
    191    1.1  fredette ##
    192    1.1  fredette ##	0x01		Use DMA (may be polled)
    193    1.1  fredette ##	0x02		Use DMA completion interrupts
    194    1.1  fredette ##	0x04		Allow disconnect/reselect
    195    1.1  fredette ##
    196    1.1  fredette ## E.g. the following would enable DMA, interrupts, and reselect:
    197    1.1  fredette ## si0	at vme0 addr 0x200000 ipl 3 vect 0x40 flags 0x07
    198    1.1  fredette ##
    199    1.1  fredette ## By default, DMA is enabled in the driver.
    200    1.1  fredette 
    201    1.4  fredette si0	at vme0 addr 0x200000 irq 2 vect 0x40
    202    1.1  fredette 
    203    1.1  fredette ## These entries find devices on all SCSI busses and assign
    204    1.1  fredette ## unit numbers dynamically.
    205    1.1  fredette scsibus* at sc?
    206    1.4  fredette scsibus* at si?
    207    1.1  fredette sd*	at scsibus? target ? lun ?		# SCSI disks
    208    1.1  fredette st*	at scsibus? target ? lun ?		# SCSI tapes
    209    1.1  fredette cd*	at scsibus? target ? lun ?		# SCSI CD-ROMs
    210    1.2  fredette #ch*	at scsibus? target ? lun ?		# SCSI changer devices
    211    1.2  fredette #ss*	at scsibus? target ? lun ?		# SCSI scanners
    212    1.2  fredette #ses*	at scsibus? target ? lun ?		# SCSI SES/SAF-TE
    213    1.2  fredette #uk*	at scsibus? target ? lun ?		# unknown SCSI
    214   1.10  fredette 
    215   1.10  fredette # support old SCSI devices that don't understand the INQUIRY command
    216   1.10  fredette options 	SCSI_OLD_NOINQUIRY
    217    1.1  fredette 
    218    1.1  fredette ## Xylogics 450 or 451 Multibus/VME SMD disk controllers and disks.
    219    1.9     lukem #xyc0	at mbio0 addr 0xee40 ipl 2
    220   1.90   tsutsui #xyc0	at vme0 addr 0xee40 irq 2 vect 0x48
    221    1.9     lukem #xyc1	at mbio0 addr 0xee48 ipl 2
    222   1.90   tsutsui #xyc1	at vme0 addr 0xee48 irq 2 vect 0x49
    223   1.90   tsutsui #xy*	at xyc? drive ?
    224    1.1  fredette 
    225   1.70       tls #
    226   1.70       tls # accept filters
    227   1.90   tsutsui #pseudo-device   accf_data		# "dataready" accept filter
    228   1.90   tsutsui #pseudo-device   accf_http		# "httpready" accept filter
    229   1.70       tls 
    230    1.1  fredette ## Memory-disk device.
    231   1.76   hannken pseudo-device	md		
    232    1.1  fredette 
    233    1.1  fredette #### Network interfaces.
    234    1.1  fredette 
    235    1.1  fredette ## Intel Ethernet (onboard, or Multibus/VME)
    236    1.4  fredette ie0	at obio0 addr 0x7f0800 ipl 3		# 2/50
    237    1.1  fredette ie0	at mbmem0 addr 0x88000 ipl 3
    238    1.4  fredette ie1	at mbmem0 addr 0x8c000 ipl 3
    239    1.4  fredette ## VME: the first [addr,len] pair specifies the device registers;
    240    1.4  fredette ##	the second pair specifies the on-board memory buffer
    241    1.4  fredette ie1	at vme0 addr 0xe88000,0xe00000 len -1,0x40000 irq 3 vect 0x75
    242    1.4  fredette 
    243    1.4  fredette ## 3Com Ethernet (Multibus only)
    244    1.4  fredette ec0	at mbmem0 addr 0xe0000 ipl 3
    245    1.4  fredette ec1	at mbmem0 addr 0xe2000 ipl 3
    246   1.62   tsutsui # limit NFS R/W size for poor ec(4) interfaces
    247   1.62   tsutsui options 	NFS_RSIZE=1024,NFS_WSIZE=1024
    248    1.1  fredette 
    249    1.1  fredette ## Frame buffers.
    250    1.1  fredette 
    251    1.1  fredette ## Sun "bwtwo" black and white framebuffer.
    252    1.9     lukem bwtwo0	at obmem0 addr 0x700000	# 2/120, 2/170
    253    1.4  fredette bwtwo0	at obio0 addr 0x0	# 2/50
    254    1.4  fredette 
    255    1.4  fredette ## PROM console driver -- if all else fails
    256    1.4  fredette pcons0	at mainbus0			# PROM console
    257    1.1  fredette 
    258    1.1  fredette #### Miscellaneous.
    259   1.86  christos pseudo-device	loop			# network loopback
    260   1.54    rpaulo #pseudo-device	bpfilter		# packet filter
    261   1.56  liamjfoy #pseudo-device	carp			# Common Address Redundancy Protocol
    262    1.7    atatat #pseudo-device	bridge			# simple inter-network bridging
    263   1.23  perseant #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    264   1.55      cube #pseudo-device	sl			# CSLIP
    265   1.55      cube #pseudo-device	ppp			# PPP
    266   1.12    martin #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    267   1.55      cube #pseudo-device	tun			# network tunneling over tty
    268   1.34      cube #pseudo-device	tap			# virtual Ethernet
    269   1.55      cube #pseudo-device	gre			# generic L3 over IP tunnel
    270  1.101      maxv #pseudo-device	npf			# NPF packet filter
    271   1.55      cube #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    272   1.55      cube #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    273   1.55      cube #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    274    1.1  fredette 
    275   1.60   tsutsui pseudo-device	pty			# pseudo-terminals
    276   1.55      cube #pseudo-device	vnd			# paging to files
    277   1.43   hubertf #options 	VND_COMPRESSION		# compressed vnd(4)
    278   1.86  christos #pseudo-device	ccd			# concatenated disks
    279   1.86  christos #pseudo-device	cgd			# cryptographic disk devices
    280   1.87  christos #pseudo-device	raid			# RAIDframe disk driver
    281    1.1  fredette #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    282   1.13     oster # Options to enable various other RAIDframe RAID types.
    283   1.13     oster # options	RF_INCLUDE_EVENODD=1
    284   1.13     oster # options	RF_INCLUDE_RAID5_RS=1
    285   1.13     oster # options	RF_INCLUDE_PARITYLOGGING=1
    286   1.13     oster # options	RF_INCLUDE_CHAINDECLUSTER=1
    287   1.13     oster # options	RF_INCLUDE_INTERDECLUSTER=1
    288   1.13     oster # options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    289   1.13     oster # options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    290   1.74     pooka #pseudo-device	fss			# file system snapshot device
    291   1.90   tsutsui #pseudo-device	clockctl		# user control of clock subsystem
    292   1.25     ragge pseudo-device	ksyms			# /dev/ksyms
    293   1.52      elad 
    294   1.52      elad # Veriexec
    295  1.102     sevan # include "dev/veriexec.config"
    296