GENERIC revision 1.49       1 #	$NetBSD: GENERIC,v 1.49 2000/01/25 08:32:03 augustss Exp $
      2 #
      3 #	GENERIC -- everything that's currently supported
      4 #
      5 
      6 include		"arch/macppc/conf/std.macppc"
      7 
      8 #ident 		"GENERIC-$Revision: 1.49 $"
      9 
     10 maxusers	32
     11 
     12 # Standard system options
     13 #options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     14 #options 	INSECURE	# disable kernel security levels
     15 #options 	NTP		# NTP phase/frequency locked loop
     16 options 	KTRACE		# system call tracing via ktrace(1)
     17 
     18 options 	SYSVMSG		# System V message queues
     19 options 	SYSVSEM		# System V semaphores
     20 options 	SYSVSHM		# System V shared memory
     21 #options 	SHMMAXPGS=1024	# 1024 pages is the default
     22 
     23 options 	LKM		# loadable kernel modules
     24 
     25 # Diagnostic/debugging support options
     26 options 	DIAGNOSTIC	# cheap kernel consistency checks
     27 #options 	DEBUG		# expensive debugging checks/support
     28 options 	DDB		# in-kernel debugger
     29 #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     30 options 	TRAP_PANICWAIT
     31 
     32 #makeoptions	DEBUG="-g"	# compile full symbol table
     33 
     34 # Compatibility options
     35 options 	COMPAT_09	# NetBSD 0.9,
     36 options 	COMPAT_10	# NetBSD 1.0,
     37 options 	COMPAT_11	# NetBSD 1.1,
     38 options 	COMPAT_12	# NetBSD 1.2,
     39 options 	COMPAT_13	# NetBSD 1.3,
     40 options 	COMPAT_14	# NetBSD 1.4,
     41 options 	COMPAT_43	# and 4.3BSD
     42 #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     43 
     44 # File systems
     45 file-system 	FFS		# UFS
     46 file-system 	EXT2FS		# second extended file system (linux)
     47 file-system 	LFS		# log-structured file system
     48 file-system 	MFS		# memory file system
     49 file-system 	NFS		# Network File System client
     50 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     51 file-system 	MSDOSFS		# MS-DOS file system
     52 file-system 	FDESC		# /dev/fd
     53 file-system 	KERNFS		# /kern
     54 file-system 	NULLFS		# loopback file system
     55 file-system 	OVERLAY		# overlay file system
     56 file-system 	PORTAL		# portal filesystem (still experimental)
     57 file-system 	PROCFS		# /proc
     58 file-system 	UMAPFS		# NULLFS + uid and gid remapping
     59 file-system 	UNION		# union file system
     60 
     61 # File system options
     62 options 	QUOTA		# UFS quotas
     63 #options 	FFS_EI		# FFS Endian Independant support
     64 #options 	SOFTDEP         # FFS soft updates support.
     65 options 	NFSSERVER	# Network File System server
     66 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     67 				# immutable) behave as system flags.
     68 
     69 options 	NFS_BOOT_DHCP	# Support DHCP NFS root
     70 
     71 # Pull in config fragments for kernel crypto.  This is required for
     72 # options IPSEC etc. to work. If you want to run with IPSEC, uncomment
     73 # one of these, based on whether you use crypto-us or crypto-intl, and
     74 # adjust the prefixes as necessary.
     75 
     76 #prefix ../crypto-us/sys
     77 #cinclude "conf/files.crypto-us"
     78 #prefix
     79 
     80 #prefix ../crypto-intl/sys
     81 #cinclude "conf/files.crypto-intl"
     82 #prefix
     83 
     84 # Networking options
     85 #options 	GATEWAY		# packet forwarding
     86 options 	INET		# IP + ICMP + TCP + UDP
     87 options 	INET6		# IPV6
     88 #options 	IPSEC		# IP security
     89 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     90 #options 	IPSEC_DEBUG	# debug for IP security
     91 #options 	MROUTING	# IP multicast routing
     92 #options 	NS		# XNS
     93 #options 	NSIP		# XNS tunneling over IP
     94 #options 	ISO,TPIP	# OSI
     95 #options 	EON		# OSI tunneling over IP
     96 #options 	CCITT,LLC,HDLC	# X.25
     97 options 	NETATALK	# AppleTalk networking protocols
     98 options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     99 options 	PPP_DEFLATE	# Deflate compression support for PPP
    100 options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    101 options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    102 options 	IPFILTER_LOG	# ipmon(8) log support
    103 options 	NMBCLUSTERS=1024
    104 
    105 # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    106 #options 	TCP_COMPAT_42
    107 
    108 # These options enable verbose messages for several subsystems.
    109 # Warning, these may compile large string tables into the kernel!
    110 options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    111 options 	SCSIVERBOSE	# human readable SCSI error messages
    112 options 	USBVERBOSE	# verbose USB device autoconfig messages
    113 
    114 # wscons options
    115 #options 	WSEMUL_SUN		# sun terminal emulation
    116 options 	WSEMUL_VT100		# VT100 / VT220 emulation
    117 
    118 # Kernel root file system and dump configuration.
    119 config		netbsd	root on ? type ?
    120 
    121 #
    122 # Device configuration
    123 #
    124 
    125 mainbus* at root
    126 
    127 cpu*	at mainbus?
    128 pci*	at mainbus? bus ?
    129 pci*	at ppb? bus ?
    130 
    131 pchb*	at pci? dev ? function ?	# PCI-Host bridges
    132 ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    133 
    134 de*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
    135 fpa*	at pci? dev ? function ?	# DEC PCI FDDI (DEFPA) Controller
    136 ep*	at pci? dev ? function ?	# 3Com 3c59x
    137 ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    138 adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    139 ahc*	at pci? dev ? function ?	# Adaptec 294x, aic78x0 SCSI
    140 bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    141 ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
    142 pcscp*	at pci? dev ? function ?	# AMD Am53c974 PCscsi-PCI SCSI
    143 ofb*	at pci? dev ? function ?	# Generic Open Firmware Framebuffer
    144 pciide*	at pci? dev ? function ?
    145 cbb*	at pci? dev? function ?		# PCI-CardBus bridge
    146 obio0	at pci? dev ? function ?
    147 #macofcons0 at pci? dev ? function ?	# OpenFirmware console (for debugging)
    148 
    149 nsphy*	at mii? phy ?			# NS83840 PHYs
    150 
    151 bm*	at obio?			# bmac ethernet
    152 mc*	at obio?			# MACE ethernet
    153 esp*	at obio? flags 0x00ff		# 53c9x SCSI
    154 mesh*	at obio? flags 0xffff		# MESH SCSI
    155 nvram*	at obio?			# nvram
    156 adb*	at obio?			# Apple Desktop Bus
    157 aed*	at adb?				# ADB Event Device
    158 akbd*	at adb?				# ADB keyboard
    159 ams*	at adb?				# ADB mouse
    160 zsc*	at obio?
    161 zstty*	at zsc? channel ?
    162 mediabay* at obio?
    163 wdc*	at mediabay? flags 0
    164 
    165 cardslot* at cbb?
    166 cardbus* at cardslot?
    167 pcmcia*	at cardslot?
    168 
    169 com*	at pcmcia? function ?		# Modems and serial cards
    170 wdc*	at pcmcia? function ?		# PCMCIA IDE controllers
    171 ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    172 mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    173 ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    174 ex*	at cardbus?			# 3Com 3C575TX
    175 
    176 wsdisplay0 at ofb? console ?
    177 wskbd0	at akbd? console ?
    178 wsmouse0 at ams?
    179 
    180 scsibus* at adv?
    181 scsibus* at ahc?
    182 scsibus* at bha?
    183 scsibus* at esp?
    184 scsibus* at mesh?
    185 scsibus* at ncr?
    186 scsibus* at pcscp?
    187 
    188 sd*	at scsibus? target ? lun ?	# SCSI disks
    189 st*	at scsibus? target ? lun ?	# SCSI tape drives
    190 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    191 ch*	at scsibus? target ? lun ?	# SCSI autochangers
    192 ss*	at scsibus? target ? lun ?	# SCSI scanners
    193 uk*	at scsibus? target ? lun ?	# SCSI unknown
    194 
    195 wdc*	at obio? flags 0x0
    196 wd*	at pciide? channel ? drive ?
    197 wd*	at wdc? channel ? drive ? flags 0x0000
    198 
    199 atapibus* at wdc? channel ?
    200 
    201 cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    202 sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    203 uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    204 
    205 # PCI USB controllers
    206 ohci*	at pci?				# Open Host Controller
    207 
    208 # USB bus support
    209 usb*	at ohci?
    210 
    211 # USB Hubs
    212 uhub*	at usb?
    213 uhub*	at uhub? port ? configuration ? interface ?
    214 
    215 # USB Mice
    216 ums*	at uhub? port ? configuration ? interface ?
    217 wsmouse* at ums?
    218 
    219 # USB Keyboards
    220 ukbd*	at uhub? port ? configuration ? interface ?
    221 wskbd*	at ukbd? console ?
    222 
    223 # USB Generic HID devices
    224 uhid*	at uhub? port ? configuration ? interface ?
    225 
    226 # USB Printer
    227 ulpt*	at uhub? port ? configuration ? interface ?
    228 
    229 # USB Modem
    230 umodem*	at uhub? port ? configuration ?
    231 ucom*	at umodem?
    232 
    233 # USB Mass Storage
    234 umass*	at uhub? port ? configuration ? interface ?
    235 scsibus* at umass? channel ?
    236 
    237 # USB audio
    238 uaudio*	at uhub? port ? configuration ?
    239 audio*	at uaudio?
    240 
    241 # USB Ethernet adapters
    242 aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    243 cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    244 kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    245 
    246 # USB Generic driver
    247 ugen*	at uhub? port ? configuration ? interface ?
    248 
    249 pseudo-device	vnd		4	# disk-like interface to files
    250 pseudo-device	ccd		4	# concatenated/striped disk devices
    251 #pseudo-device	raid		4	# RAIDframe disk driver
    252 pseudo-device	md		1	# memory disk device
    253 pseudo-device	loop			# network loopback
    254 pseudo-device	bpfilter	8	# packet filter
    255 pseudo-device	ipfilter		# IP filter (firewall) and NAT
    256 pseudo-device	ppp		2	# Point-to-Point Protocol
    257 pseudo-device	sl		2	# Serial Line IP
    258 pseudo-device	tun		4	# network tunneling over tty
    259 #pseudo-device	gre		2	# generic L3 over IP tunnel
    260 pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    261 #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    262 pseudo-device	pty		64	# pseudo-terminals
    263 
    264 # rnd is EXPERIMENTAL at this point.
    265 #pseudo-device	rnd			# /dev/random and in-kernel generator
    266