Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.62
      1  1.62  perseant # $NetBSD: GENERIC,v 1.62 2003/02/27 19:22:39 perseant Exp $
      2   1.1  sakamoto #
      3  1.48  gmcgarry # GENERIC machine description file
      4  1.48  gmcgarry # 
      5  1.48  gmcgarry # This machine description file is used to generate the default NetBSD
      6  1.48  gmcgarry # kernel.  The generic kernel does not include all options, subsystems
      7  1.48  gmcgarry # and device drivers, but should be useful for most applications.
      8   1.1  sakamoto #
      9  1.48  gmcgarry # The machine description file can be customised for your specific
     10  1.48  gmcgarry # machine to reduce the kernel size and improve its performance.
     11  1.48  gmcgarry #
     12  1.48  gmcgarry # For further information on compiling NetBSD kernels, see the config(8)
     13  1.48  gmcgarry # man page.
     14  1.48  gmcgarry #
     15  1.48  gmcgarry # For further information on hardware support for this architecture, see
     16  1.48  gmcgarry # the intro(4) man page.  For further information about kernel options
     17  1.48  gmcgarry # for this architecture, see the options(4) man page.  For an explanation
     18  1.48  gmcgarry # of each device driver in this file see the section 4 man page for the
     19  1.48  gmcgarry # device.
     20   1.1  sakamoto 
     21  1.48  gmcgarry include 	"arch/bebox/conf/std.bebox"
     22  1.23   hubertf 
     23  1.55    atatat options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24  1.55    atatat 
     25  1.62  perseant #ident 		"GENERIC-$Revision: 1.62 $"
     26   1.1  sakamoto 
     27   1.1  sakamoto maxusers	32
     28   1.1  sakamoto 
     29   1.5  sakamoto #options 	IPKDBUSERHACK	# Allow access to mapped memory via kgdb
     30   1.5  sakamoto #options 	DEBUG_BY_TOOLS	# Allow debugging from toolsnet
     31   1.1  sakamoto # HMAC key to be used for debugging sessions
     32   1.5  sakamoto #options 	IPKDBKEY="\"HMAC pass phrase text\""
     33   1.5  sakamoto #options 	IPKDBSECURE	# Allow debugging even when securelevel > 0
     34   1.1  sakamoto makeoptions	DEBUG="-g"
     35   1.1  sakamoto 
     36   1.1  sakamoto options 	DEBUG
     37   1.1  sakamoto options 	DIAGNOSTIC
     38   1.1  sakamoto options 	TRAP_PANICWAIT
     39   1.1  sakamoto options 	DDB
     40   1.2     lukem #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
     41   1.2     lukem options 	KTRACE
     42  1.58    provos options 	SYSTRACE		# system call vetting via systrace(1)
     43  1.57     lukem options 	USERCONF		# userconf(4) support
     44  1.53  gmcgarry #options	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     45  1.60  junyoung 
     46  1.61       wiz # Enable experimental buffer queue strategy for better responsiveness under 
     47  1.60  junyoung # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     48  1.60  junyoung #options 	NEW_BUFQ_STRATEGY
     49   1.1  sakamoto 
     50  1.40       abs #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     51   1.2     lukem options 	COMPAT_43
     52   1.2     lukem options 	COMPAT_09
     53   1.2     lukem options 	COMPAT_10
     54   1.2     lukem options 	COMPAT_12
     55   1.3    kleink options 	COMPAT_13
     56  1.18  augustss options 	COMPAT_14
     57  1.10  sakamoto options 	COMPAT_386BSD_MBRPART	# recognize old partition ID
     58  1.46     lukem #options 	COMPAT_LINUX		# Linux binary compatibility
     59   1.1  sakamoto 
     60   1.1  sakamoto file-system 	FFS
     61   1.1  sakamoto file-system 	MFS
     62   1.1  sakamoto file-system 	NFS
     63   1.1  sakamoto file-system 	CD9660
     64   1.1  sakamoto file-system 	MSDOSFS
     65   1.1  sakamoto file-system 	FDESC
     66   1.1  sakamoto file-system 	KERNFS
     67   1.1  sakamoto file-system 	NULLFS
     68  1.22  wrstuden file-system 	OVERLAY
     69   1.1  sakamoto file-system 	PORTAL
     70   1.1  sakamoto file-system 	PROCFS
     71   1.1  sakamoto file-system 	UMAPFS
     72   1.1  sakamoto file-system 	UNION
     73   1.1  sakamoto 
     74   1.7    bouyer #options 	FFS_EI		# FFS Endian Independant support
     75  1.46     lukem options 	SOFTDEP		# FFS soft updates support.
     76   1.2     lukem #options 	NFSSERVER
     77  1.21    itojun 
     78   1.2     lukem options 	INET
     79  1.21    itojun options 	INET6		# IPV6
     80  1.21    itojun #options 	IPSEC		# IP security
     81  1.21    itojun #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     82  1.21    itojun #options 	IPSEC_DEBUG	# debug for IP security
     83  1.40       abs 
     84  1.40       abs #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     85   1.5  sakamoto 
     86  1.46     lukem options 	NFS_BOOT_BOOTPARAM,NFS_BOOT_BOOTP
     87   1.1  sakamoto 
     88   1.1  sakamoto config		netbsd	root on ? type ?
     89   1.1  sakamoto 
     90  1.59     elric #pseudo-device	cgd		4	# cryptographic disk devices
     91   1.8  sakamoto pseudo-device	vnd		4
     92   1.1  sakamoto pseudo-device	loop
     93   1.1  sakamoto pseudo-device	bpfilter	8	# packet filter
     94  1.21    itojun pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
     95  1.21    itojun #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
     96  1.27    itojun #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
     97  1.35    bouyer pseudo-device	vlan			# IEEE 802.1q encapsulation
     98  1.49    martin pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
     99  1.47    atatat pseudo-device	bridge			# simple inter-network bridging
    100  1.62  perseant #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    101  1.33  jdolecek pseudo-device	pty			# pseudo-terminals
    102  1.50     oster pseudo-device	raid		8	# RAIDframe disk driver
    103  1.50     oster options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    104  1.50     oster # Options to enable various other RAIDframe RAID types.
    105  1.50     oster # options	RF_INCLUDE_EVENODD=1
    106  1.50     oster # options	RF_INCLUDE_RAID5_RS=1
    107  1.50     oster # options	RF_INCLUDE_PARITYLOGGING=1
    108  1.50     oster # options	RF_INCLUDE_CHAINDECLUSTER=1
    109  1.50     oster # options	RF_INCLUDE_INTERDECLUSTER=1
    110  1.50     oster # options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    111  1.50     oster # options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    112  1.16       hwr #pseudo-device	gre		2	# generic L3 over IP tunnel
    113  1.45  augustss pseudo-device	wsmux
    114  1.56     lukem pseudo-device	clockctl		# user control of clock subsystem
    115  1.34    itojun 
    116  1.34    itojun # random number generator pseudo-device
    117  1.34    itojun pseudo-device	rnd			# /dev/random and in-kernel generator
    118  1.34    itojun #options 	RND_COM			# use "com" randomness as well (BROKEN)
    119   1.1  sakamoto 
    120   1.1  sakamoto #
    121   1.1  sakamoto # device
    122   1.1  sakamoto #
    123   1.2     lukem options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
    124   1.1  sakamoto 
    125   1.1  sakamoto options 	PCIVERBOSE	# verbose PCI device messages
    126  1.26       cgd #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    127  1.36    briggs options 	PCI_NETBSD_CONFIGURE
    128   1.1  sakamoto 
    129   1.1  sakamoto mainbus0 at root
    130   1.1  sakamoto 
    131  1.41      matt cpu*	at mainbus0
    132   1.1  sakamoto pci0	at mainbus0 bus ?
    133   1.1  sakamoto 
    134   1.1  sakamoto ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    135   1.1  sakamoto pci*	at ppb? bus ?
    136   1.1  sakamoto pchb*	at pci? dev ? function ?	# PCI-Host bridges
    137   1.1  sakamoto pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    138   1.1  sakamoto 
    139   1.1  sakamoto isa*	at pcib?			# ISA on PCI-ISA bridge
    140   1.1  sakamoto 
    141   1.8  sakamoto #pc0	at isa? port 0x60 irq 1		# generic PC console device
    142   1.1  sakamoto 
    143   1.5  sakamoto com0	at isa? port 0x3f8 irq 4	# standard PC serial ports
    144   1.5  sakamoto com1	at isa? port 0x2f8 irq 3
    145  1.10  sakamoto #com2	at isa? port 0x380 irq 16
    146  1.10  sakamoto #com3	at isa? port 0x388 irq 17
    147  1.46     lukem 
    148   1.1  sakamoto lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    149   1.1  sakamoto #lpt1	at isa? port 0x278
    150   1.1  sakamoto #lpt2	at isa? port 0x3bc
    151   1.1  sakamoto 
    152   1.1  sakamoto #lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    153   1.1  sakamoto #lms1	at isa? port 0x238 irq 5
    154   1.1  sakamoto #mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    155   1.1  sakamoto #mms1	at isa? port 0x238 irq 5
    156   1.1  sakamoto 
    157   1.8  sakamoto pckbc0	at isa?
    158   1.8  sakamoto pckbd*	at pckbc?
    159  1.17  drochner #pms*	at pckbc?
    160   1.8  sakamoto #vga0	at isa?
    161   1.8  sakamoto vga*	at pci?
    162  1.15  sakamoto pfb*	at pci?
    163   1.8  sakamoto wsdisplay*	at vga? console ?
    164  1.15  sakamoto wsdisplay*	at pfb? console ?
    165   1.8  sakamoto wskbd*		at pckbd? console ?
    166  1.19  augustss #wsmouse*	at pms? mux 0
    167   1.8  sakamoto 
    168  1.36    briggs #siop*	at pci? dev ? function ?	# NCR 538XX SCSI controllers
    169  1.36    briggs #scsibus* at siop?
    170   1.1  sakamoto 
    171   1.1  sakamoto #sd*	at scsibus? target ? lun ?	# SCSI disk drives
    172   1.1  sakamoto #st*	at scsibus? target ? lun ?	# SCSI tape drives
    173   1.1  sakamoto #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    174   1.1  sakamoto #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    175   1.1  sakamoto #ss*	at scsibus? target ? lun ?	# SCSI scanners
    176   1.1  sakamoto #uk*	at scsibus? target ? lun ?	# SCSI unknown
    177   1.1  sakamoto 
    178  1.10  sakamoto fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    179   1.1  sakamoto #fdc1	at isa? port 0x370 irq ? drq ?
    180  1.10  sakamoto fd0	at fdc? drive 1
    181   1.1  sakamoto #fd*	at fdc? drive ?
    182   1.1  sakamoto 
    183   1.6  sakamoto wdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
    184   1.6  sakamoto wd*	at wdc? drive ?
    185   1.1  sakamoto 
    186   1.6  sakamoto ne0	at isa? port 0x300 irq 5	# NE[12]000 ethernet cards
    187   1.6  sakamoto #ipkdbif0 at ne?
    188   1.1  sakamoto 
    189   1.1  sakamoto #wss0	at isa? port 0x530 irq 10 drq 0	# Windows Sound System
    190  1.10  sakamoto 
    191   1.9  drochner #pcppi0 at isa?
    192   1.9  drochner #spkr0	at pcppi?
    193   1.1  sakamoto 
    194   1.1  sakamoto # Joystick driver. Probe is a little strange; add only if you have one.
    195   1.1  sakamoto #joy0	at isa? port 0x201
    196