Home | History | Annotate | Line # | Download | only in conf
OPENBLOCKS266 revision 1.7
      1  1.7  thorpej #	$NetBSD: OPENBLOCKS266,v 1.7 2003/12/13 23:13:41 thorpej Exp $
      2  1.1    shige #
      3  1.1    shige #	GENERIC -- everything that's currently supported
      4  1.1    shige #
      5  1.1    shige 
      6  1.1    shige include		"arch/evbppc/conf/std.obs405"
      7  1.1    shige 
      8  1.1    shige #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9  1.1    shige 
     10  1.1    shige #ident 		"OPENBLOCKS266"
     11  1.1    shige 
     12  1.1    shige maxusers	32
     13  1.1    shige 
     14  1.1    shige #options 	UVMHIST
     15  1.1    shige #options 	UVMHIST_PRINT
     16  1.1    shige 
     17  1.1    shige # Options for necessary to use MD
     18  1.1    shige #options 	MEMORY_DISK_HOOKS
     19  1.1    shige #options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     20  1.1    shige #options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     21  1.1    shige #options 	MEMORY_DISK_ROOT_SIZE=16384	# size of memory disk, in blocks
     22  1.1    shige 
     23  1.1    shige 
     24  1.1    shige #options 	INSECURE	# disable kernel security levels
     25  1.1    shige #options 	NTP		# NTP phase/frequency locked loop
     26  1.1    shige #options 	KTRACE		# system call tracing via ktrace(1)
     27  1.1    shige 
     28  1.1    shige options 	SYSVMSG		# System V message queues
     29  1.1    shige options 	SYSVSEM		# System V semaphores
     30  1.1    shige options 	SYSVSHM		# System V shared memory
     31  1.1    shige #options 	SHMMAXPGS=1024	# 1024 pages is the default
     32  1.1    shige 
     33  1.1    shige #options 	LKM		# loadable kernel modules
     34  1.1    shige 
     35  1.1    shige #options 	USERCONF	# userconf(4) support
     36  1.1    shige #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     37  1.1    shige 
     38  1.1    shige # Diagnostic/debugging support options
     39  1.1    shige #options 	DIAGNOSTIC	# cheap kernel consistency checks
     40  1.1    shige options 	DEBUG		# expensive debugging checks/support
     41  1.1    shige options 	DDB		# in-kernel debugger
     42  1.1    shige options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     43  1.1    shige options 	TRAP_PANICWAIT
     44  1.1    shige options 	SYMTAB_SPACE=300000	# size for embedded symbol table
     45  1.1    shige 
     46  1.1    shige makeoptions	DEBUG="-g"	# compile full symbol table
     47  1.1    shige 
     48  1.1    shige # Compatibility options
     49  1.1    shige #options 	COMPAT_09	# NetBSD 0.9,
     50  1.1    shige #options 	COMPAT_10	# NetBSD 1.0,
     51  1.1    shige #options 	COMPAT_11	# NetBSD 1.1,
     52  1.1    shige #options 	COMPAT_12	# NetBSD 1.2,
     53  1.1    shige options 	COMPAT_13	# NetBSD 1.3,
     54  1.1    shige options 	COMPAT_14	# NetBSD 1.4,
     55  1.2     matt options 	COMPAT_16	# NetBSD 1.6,
     56  1.1    shige options 	COMPAT_43	# and 4.3BSD
     57  1.1    shige #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     58  1.1    shige #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     59  1.1    shige 
     60  1.1    shige # File systems
     61  1.1    shige file-system 	FFS		# UFS
     62  1.1    shige file-system 	EXT2FS		# second extended file system (linux)
     63  1.1    shige file-system 	LFS		# log-structured file system
     64  1.1    shige file-system 	MFS		# memory file system
     65  1.1    shige file-system 	NFS		# Network File System client
     66  1.1    shige file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     67  1.1    shige file-system 	MSDOSFS		# MS-DOS file system
     68  1.1    shige file-system 	FDESC		# /dev/fd
     69  1.1    shige file-system 	KERNFS		# /kern
     70  1.1    shige file-system 	NULLFS		# loopback file system
     71  1.1    shige file-system 	OVERLAY		# overlay file system
     72  1.1    shige file-system 	PORTAL		# portal filesystem (still experimental)
     73  1.1    shige file-system 	PROCFS		# /proc
     74  1.1    shige file-system 	UMAPFS		# NULLFS + uid and gid remapping
     75  1.1    shige file-system 	UNION		# union file system
     76  1.1    shige 
     77  1.1    shige # File system options
     78  1.1    shige options 	QUOTA		# UFS quotas
     79  1.1    shige options 	FFS_EI		# FFS Endian Independant support
     80  1.1    shige options 	SOFTDEP		# FFS soft updates support.
     81  1.1    shige options 	NFSSERVER	# Network File System server
     82  1.1    shige options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     83  1.1    shige 				# immutable) behave as system flags.
     84  1.1    shige 
     85  1.1    shige options 	NFS_BOOT_DHCP	# Support DHCP NFS root
     86  1.1    shige 
     87  1.1    shige # Networking options
     88  1.1    shige options 	GATEWAY		# packet forwarding
     89  1.1    shige options 	INET		# IP + ICMP + TCP + UDP
     90  1.1    shige options 	INET6		# IPV6
     91  1.1    shige #options 	IPSEC		# IP security
     92  1.1    shige #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     93  1.1    shige #options 	IPSEC_DEBUG	# debug for IP security
     94  1.1    shige #options 	MROUTING	# IP multicast routing
     95  1.1    shige #options        DIRECTED_BROADCAST      # allow broadcasts through routers
     96  1.1    shige #options 	NS		# XNS
     97  1.1    shige #options 	NSIP		# XNS tunneling over IP
     98  1.1    shige options 	ISO,TPIP	# OSI
     99  1.1    shige #options 	EON		# OSI tunneling over IP
    100  1.1    shige #options 	CCITT,LLC,HDLC	# X.25
    101  1.1    shige #options 	NETATALK	# AppleTalk networking protocols
    102  1.1    shige options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    103  1.1    shige options 	PPP_DEFLATE	# Deflate compression support for PPP
    104  1.1    shige options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    105  1.1    shige options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    106  1.1    shige options 	IPFILTER_LOG	# ipmon(8) log support
    107  1.1    shige #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    108  1.1    shige options 	NMBCLUSTERS=1024
    109  1.1    shige 
    110  1.1    shige # These options enable verbose messages for several subsystems.
    111  1.1    shige # Warning, these may compile large string tables into the kernel!
    112  1.1    shige options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    113  1.1    shige options 	MIIVERBOSE	# verbose PHY autoconfig messages
    114  1.1    shige #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    115  1.1    shige options 	SCSIVERBOSE	# human readable SCSI error messages
    116  1.1    shige options 	PCI_NETBSD_CONFIGURE	# Do not rely on BIOS/whatever to configure PCI devices
    117  1.1    shige #options 	PCI_CONFIGURE_VERBOSE	# Show PCI config information
    118  1.1    shige 
    119  1.1    shige # wscons options
    120  1.1    shige #options 	WSEMUL_SUN		# sun terminal emulation
    121  1.1    shige #options 	WSEMUL_VT100		# VT100 / VT220 emulation
    122  1.1    shige 
    123  1.1    shige # Kernel root file system and dump configuration.
    124  1.1    shige config		netbsd	root on ? type ?
    125  1.1    shige 
    126  1.1    shige #
    127  1.1    shige # Device configuration
    128  1.1    shige #
    129  1.1    shige 
    130  1.1    shige plb0 at root				# Processor Local Bus
    131  1.1    shige 
    132  1.1    shige cpu0	at plb?
    133  1.1    shige 
    134  1.1    shige ecc0	at plb? irq 16			# On-chip ECC controller
    135  1.1    shige 
    136  1.1    shige opb*	at plb?				# On-chip Peripheral Bus
    137  1.1    shige 
    138  1.1    shige wdog*	at opb?				# Watchdog timer
    139  1.1    shige 
    140  1.1    shige com*	at opb? addr ? irq ?		# UARTs
    141  1.1    shige 
    142  1.1    shige emac0	at opb? addr ? irq ?		# Ethernet Media Access Controller
    143  1.1    shige options	EMAC_EVENT_COUNTERS
    144  1.1    shige 
    145  1.3    shige gpiic0	at opb? addr ? irq ?		# On-chip IIC controller
    146  1.3    shige iic0	at gpiic?			# I2C bus
    147  1.3    shige xrtc0	at iic? addr 0x6f		# RTC
    148  1.1    shige 
    149  1.1    shige pchb0	at plb?				# PCI-Host bridges
    150  1.1    shige 
    151  1.1    shige pci*	at pchb?
    152  1.1    shige ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    153  1.5   bouyer pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    154  1.5   bouyer acardide* at pci? dev ? function ?	# Acard IDE controllers
    155  1.5   bouyer aceride* at pci? dev ? function ?	# Acer Lab IDE controllers
    156  1.5   bouyer cmdide* at pci? dev ? function ?	# CMD tech IDE controllers
    157  1.5   bouyer cypide* at pci? dev ? function ?	# Cypress IDE controllers
    158  1.5   bouyer hptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    159  1.5   bouyer optiide* at pci? dev ? function ?	# Opti IDE controllers
    160  1.5   bouyer piixide* at pci? dev ? function ?	# Intel IDE controllers
    161  1.5   bouyer pdcide* at pci? dev ? function ?	# Promise IDE controllers
    162  1.7  thorpej satalink* at pci? dev ? function ?	# SiI SATALink controllers
    163  1.5   bouyer siside* at pci? dev ? function ?	# SiS IDE controllers
    164  1.5   bouyer slide*  at pci? dev ? function ?	# Symphony Labs IDE controllers
    165  1.5   bouyer viaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    166  1.6    lukem atabus* at ata?
    167  1.1    shige 
    168  1.1    shige tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    169  1.1    shige 
    170  1.1    shige lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
    171  1.1    shige ukphy*	at mii? phy ?			# generic unknown PHYs
    172  1.1    shige 
    173  1.1    shige #cardslot* at cbb?
    174  1.1    shige #cardbus* at cardslot?
    175  1.1    shige #pcmcia*	at cardslot?
    176  1.1    shige 
    177  1.1    shige #com*	at pcmcia? function ?		# Modems and serial cards
    178  1.1    shige #wdc*	at pcmcia? function ?		# PCMCIA IDE controllers
    179  1.1    shige #ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    180  1.1    shige #mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    181  1.1    shige #ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    182  1.1    shige #ex*	at cardbus? dev ? function ?	# 3Com 3C575TX
    183  1.1    shige #tlp*	at cardbus? dev ? function ?	# DECchip 21143
    184  1.1    shige #rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139
    185  1.1    shige 
    186  1.4   bouyer wd*	at atabus? drive ?
    187  1.1    shige 
    188  1.6    lukem atapibus* at atapi?
    189  1.1    shige 
    190  1.1    shige cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    191  1.1    shige sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    192  1.1    shige uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    193  1.1    shige 
    194  1.1    shige #pckbc0	at pbus?
    195  1.1    shige #pckbd*	at pckbc?
    196  1.1    shige #wskbd*	at pckbd? console ?
    197  1.1    shige #pms*	at pckbc?
    198  1.1    shige #wsmouse* at pms? mux 0
    199  1.1    shige 
    200  1.1    shige #vga*	at pci? dev ? function ?
    201  1.1    shige #wsdisplay* at vga? console ?
    202  1.1    shige 
    203  1.1    shige pseudo-device	vnd		4	# disk-like interface to files
    204  1.1    shige pseudo-device	ccd		4	# concatenated/striped disk devices
    205  1.1    shige #pseudo-device	cgd		4	# cryptographic disk devices
    206  1.1    shige #pseudo-device	raid		4	# RAIDframe disk driver
    207  1.1    shige #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    208  1.1    shige pseudo-device	md		1	# memory disk device
    209  1.1    shige pseudo-device	loop			# network loopback
    210  1.1    shige pseudo-device	bpfilter	8	# packet filter
    211  1.1    shige pseudo-device	ipfilter		# IP filter (firewall) and NAT
    212  1.1    shige pseudo-device	ppp		2	# Point-to-Point Protocol
    213  1.1    shige pseudo-device	sl		2	# Serial Line IP
    214  1.1    shige pseudo-device	tun		4	# network tunneling over tty
    215  1.1    shige #pseudo-device	gre		2	# generic L3 over IP tunnel
    216  1.1    shige pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    217  1.1    shige #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    218  1.1    shige #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    219  1.1    shige pseudo-device	vlan			# IEEE 802.1q encapsulation
    220  1.1    shige pseudo-device	pty			# pseudo-terminals
    221  1.1    shige pseudo-device	rnd			# /dev/random and in-kernel generator
    222  1.1    shige #pseudo-device	wsmux			# ick
    223  1.1    shige pseudo-device	clockctl		# user control of clock subsystem
    224  1.1    shige pseudo-device	kttcp			# kernel ttcp
    225