Home | History | Annotate | Line # | Download | only in conf
SHEEVAPLUG revision 1.10
      1 #	$NetBSD: SHEEVAPLUG,v 1.10 2011/11/14 00:12:37 sekiya Exp $
      2 #
      3 #  This configuration supports for generically Marvell SheevaPlug
      4 #
      5 
      6 include 	"arch/evbarm/conf/std.marvell"
      7 
      8 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9 
     10 # estimated number of users
     11 
     12 maxusers	32
     13 
     14 # Board Type
     15 makeoptions	BOARDTYPE="sheevaplug"
     16 options 	EVBARM_BOARDTYPE=sheevaplug
     17 
     18 # CPU options
     19 options 	CPU_SHEEVA
     20 #options 	MV_L2_CACHE_ENABLE
     21 #options 	MV_L2_CACHE_WRITE_THROUGH
     22 options 	MV_CACHE_RANGE_OPS
     23 makeoptions	CPUFLAGS="-march=armv5te"
     24 
     25 # Marvell SoC options
     26 options 	KIRKWOOD
     27 
     28 # Standard system options
     29 
     30 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     31 #options 	NTP		# NTP phase/frequency locked loop
     32 
     33 # File systems
     34 
     35 file-system 	FFS		# UFS
     36 file-system 	EXT2FS		# second extended file system (linux)
     37 #file-system 	LFS		# log-structured file system
     38 #file-system 	MFS		# memory file system
     39 file-system 	NFS		# Network File System client
     40 #file-system 	NTFS		# Windows/NT file system (experimental)
     41 #file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     42 file-system 	MSDOSFS		# MS-DOS file system
     43 file-system 	FDESC		# /dev/fd
     44 file-system 	KERNFS		# /kern
     45 #file-system 	NULLFS		# loopback file system
     46 #file-system 	OVERLAY		# overlay file system
     47 #file-system 	PORTAL		# portal filesystem (still experimental)
     48 file-system 	PROCFS		# /proc
     49 #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     50 #file-system 	UNION		# union file system
     51 #file-system 	CODA		# Coda File System; also needs vcoda (below)
     52 #file-system 	SMBFS		# experimental - CIFS; also needs nsmb (below)
     53 file-system 	PTYFS		# /dev/ptm support
     54 file-system 	TMPFS		# Efficient memory file-system
     55 #file-system 	UDF		# experimental - OSTA UDF CD/DVD file-system
     56 #file-system 	HFS		# experimental - Apple HFS+ (read-only)
     57 
     58 # File system options
     59 #options 	QUOTA		# legacy UFS quotas
     60 #options 	QUOTA2		# new, in-filesystem UFS quotas
     61 #options 	FFS_EI		# FFS Endian Independent support
     62 options 	WAPBL		# File system journaling support - Experimental
     63 # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
     64 # It is not recommended for general use.
     65 #options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
     66 options 	NFSSERVER	# Network File System server
     67 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     68 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     69 				# immutable) behave as system flags.
     70 
     71 # Networking options
     72 
     73 #options 	GATEWAY		# packet forwarding
     74 options 	INET		# IP + ICMP + TCP + UDP
     75 options 	INET6		# IPv6
     76 #options 	IPSEC		# IP security
     77 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     78 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     79 #options 	IPSEC_DEBUG	# debug for IP security
     80 #options 	MROUTING	# IP multicast routing
     81 #options 	PIM		# Protocol Independent Multicast
     82 #options 	ISO,TPIP	# OSI
     83 #options 	EON		# OSI tunneling over IP
     84 #options 	NETATALK	# AppleTalk networking protocols
     85 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     86 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     87 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     88 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     89 #options 	IPFILTER_LOG	# ipmon(8) log support
     90 #options 	IPFILTER_LOOKUP	# ippool(8) support
     91 #options 	IPFILTER_COMPAT	# Compat for IP-Filter
     92 #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
     93 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     94 
     95 #options 	NFS_BOOT_BOOTP
     96 options 	NFS_BOOT_DHCP
     97 #options 	NFS_BOOT_BOOTPARAM
     98 
     99 # Compatibility options
    100 
    101 #options 	COMPAT_09	# NetBSD 0.9 compatibility.
    102 #options 	COMPAT_10	# NetBSD 1.0 compatibility.
    103 #options 	COMPAT_11	# NetBSD 1.1 compatibility.
    104 #options 	COMPAT_12	# NetBSD 1.2 compatibility.
    105 #options 	COMPAT_13	# NetBSD 1.3 compatibility.
    106 #options 	COMPAT_14	# NetBSD 1.4 compatibility.
    107 #options 	COMPAT_15	# NetBSD 1.5 compatibility.
    108 #options 	COMPAT_16	# NetBSD 1.6 compatibility.
    109 #options 	COMPAT_20	# NetBSD 2.0 compatibility.
    110 #options 	COMPAT_30	# NetBSD 3.0 compatibility.
    111 #options 	COMPAT_40	# NetBSD 4.0 compatibility.
    112 options 	COMPAT_50	# NetBSD 5.0 compatibility.
    113 #options 	COMPAT_43	# 4.3BSD compatibility.
    114 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    115 
    116 options 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
    117 options 	COMPAT_LINUX	# binary compatibility with Linux
    118 options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    119 
    120 # Shared memory options
    121 
    122 options 	SYSVMSG		# System V-like message queues
    123 options 	SYSVSEM		# System V-like semaphores
    124 #options 	SEMMNI=10	# number of semaphore identifiers
    125 #options 	SEMMNS=60	# number of semaphores in system
    126 #options 	SEMUME=10	# max number of undo entries per process
    127 #options 	SEMMNU=30	# number of undo structures in system
    128 options 	SYSVSHM		# System V-like memory sharing
    129 #options 	SHMMAXPGS=1024	# 1024 pages is the default
    130 options 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support
    131 
    132 # Device options
    133 
    134 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    135 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    136 #options 	MEMORY_DISK_DYNAMIC
    137 #options 	MEMORY_DISK_ROOT_SIZE=22528	# Size in blocks
    138 #options 	MEMORY_RBFLAGS=RB_AUTOBOOT
    139 
    140 # Miscellaneous kernel options
    141 
    142 #options 	KTRACE		# system call tracing, a la ktrace(1)
    143 options 	IRQSTATS	# manage IRQ statistics
    144 #options 	LKM		# loadable kernel modules
    145 #options 	KMEMSTATS	# kernel memory statistics
    146 options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    147 #options 	PCIVERBOSE	# Verbose PCI descriptions
    148 options 	USBVERBOSE	# verbose USB device autoconfig messages
    149 #options 	DDB_KEYCODE=0x40
    150 #options 	USERCONF	# userconf(4) support
    151 #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    152 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
    153 
    154 # Development and Debugging options
    155 
    156 #options 	PERFCTRS	# performance counters
    157 options 	DIAGNOSTIC	# internally consistency checks
    158 options 	DEBUG
    159 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    160 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    161 options 	DDB		# in-kernel debugger
    162 #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    163 #options 	KGDB
    164 #options 	DEBUG_KGDB
    165 makeoptions	DEBUG="-g -O2"	# compile full symbol table
    166 options 	SYMTAB_SPACE=800000
    167 #options 	AUDIO_DEBUG=2
    168 
    169 config		netbsd		root on ? type ?
    170 
    171 # The main bus device
    172 mainbus0 at root
    173 
    174 # The boot cpu
    175 cpu0	at mainbus?
    176 
    177 # Marvell MV88F6xxx Kirkwood System-on-chip
    178 mvsoc0	at mainbus?
    179 
    180 # On-chip PCI Express Interface
    181 #mvpex*	at mvsoc? offset ? irq ?
    182 
    183 # PCI bus support
    184 options 	PCI_NETBSD_CONFIGURE
    185 #options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
    186 
    187 #pci*	at mvpex?
    188 
    189 #pchb*	at pci? dev ? function ?	# PCI-Host bridges
    190 
    191 # On-chip Serial-ATA II Host Controller (SATAHC)
    192 #mvsata* at mvsoc? offset ? irq ?
    193 
    194 # On-chip Gigabit Ethernet Controller Interface
    195 mvgbec* at mvsoc? offset ?
    196 mvgbe*	at mvgbec? port ? irq ?
    197 makphy* at mii? phy ?
    198 
    199 # On-chip USB 2.0 Interface
    200 ehci*	at mvsoc? offset ? irq ?
    201 
    202 # On-chip Cryptographic Engines and Security Accelerator
    203 #mvcesa* at mvsoc? offset ? irq ?
    204 
    205 # On-chip Two-Wire Serial Interface (TWSI)
    206 gttwsi* at mvsoc? offset ? irq ?
    207 iic*	at gttwsi?
    208 
    209 # On-chip UART Interface
    210 com*	at mvsoc? offset ? irq ?
    211 
    212 # On-chip IDMA Controller
    213 #gtidmac* at mvsoc? offset ? irq ?
    214 
    215 # On-chip General Purpose I/O Port Interface
    216 #mvsocgpp* at mvsoc? offset ? irq ?
    217 #gpio*	at mvsocgpp?
    218 
    219 # On-chip Timers
    220 mvsoctmr* at mvsoc? offset ? irq ?
    221 
    222 # On-chip SD/MMC Interface
    223 mvsdio* at mvsoc? offset ? irq ?
    224 sdmmc*	at mvsdio?
    225 
    226 ld*	at sdmmc?
    227 
    228 # ATA (IDE) bus support
    229 #atabus* at ata?
    230 #options 	ATADEBUG
    231 
    232 # IDE drives
    233 #wd*	at atabus? drive ? flags 0x0000
    234 
    235 # ATAPI bus support
    236 #atapibus* at atapi?
    237 
    238 # ATAPI devices
    239 # flags have the same meaning as for IDE drives.
    240 #cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    241 #sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    242 
    243 # USB bus support
    244 usb*	at ehci?
    245 
    246 # USB Hubs
    247 uhub*	at usb?
    248 uhub*	at uhub? port ?
    249 
    250 # USB HID device
    251 uhidev* at uhub? port ? configuration ? interface ?
    252 
    253 # USB Mice
    254 ums*	at uhidev? reportid ?
    255 wsmouse* at ums? mux 0
    256 
    257 # USB eGalax touch-panel
    258 uep*	at uhub? port ?
    259 wsmouse* at uep? mux 0
    260 
    261 # USB Keyboards
    262 ukbd*	at uhidev? reportid ?
    263 wskbd*	at ukbd? console ? mux 1
    264 
    265 # USB TEMPer and TEMPerHUM
    266 uthum*	at uhidev? reportid ?
    267 
    268 # USB serial adapter
    269 ucycom* at uhidev? reportid ?
    270 
    271 # USB Generic HID devices
    272 uhid*	at uhidev? reportid ?
    273 
    274 # USB LCDs and USB-VGA adaptors
    275 udl*	at uhub? port ?		# DisplayLink DL-1x0/1x5
    276 wsdisplay* at udl?
    277 
    278 # USB Printer
    279 ulpt*	at uhub? port ? configuration ? interface ?
    280 
    281 # USB Modem
    282 umodem* at uhub? port ? configuration ?
    283 ucom*	at umodem?
    284 
    285 # Option N.V. Wireless WAN modems
    286 uhso*	at uhub? port ? configuration ?
    287 
    288 # USB Mass Storage
    289 umass*	at uhub? port ? configuration ? interface ?
    290 wd*	at umass?
    291 scsibus* at scsi?
    292 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    293 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    294 
    295 # USB audio
    296 uaudio* at uhub? port ? configuration ?
    297 
    298 # USB MIDI
    299 umidi* at uhub? port ? configuration ?
    300 
    301 # USB IrDA
    302 # USB-IrDA bridge spec
    303 uirda* at uhub? port ? configuration ? interface ?
    304 irframe* at uirda?
    305 
    306 stuirda* at uhub? port ? configuration ? interface ?
    307 irframe* at stuirda?
    308 
    309 # SigmaTel STIr4200 USB/IrDA Bridge
    310 ustir* at uhub? port ?
    311 irframe* at ustir?
    312 
    313 # USB Ethernet adapters
    314 aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    315 axe*	at uhub? port ?		# ASIX AX88172 based adapters
    316 cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
    317 cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    318 kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    319 udav*	at uhub? port ?		# Davicom DM9601 based adapters
    320 url*	at uhub? port ?		# Realtek RTL8150L based adapters
    321 
    322 # USB 802.11 adapters
    323 atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
    324 ral*	at uhub? port ?		# Ralink Technology RT25x0 802.11a/b/g
    325 rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
    326 zyd*	at uhub? port ?		# Zydas ZD1211
    327 
    328 # Prolific PL2301/PL2302 host-to-host adapter
    329 upl*	at uhub? port ?
    330 
    331 # Serial adapters
    332 ubsa*	at uhub? port ?		# Belkin serial adapter
    333 ucom*	at ubsa? portno ?
    334 
    335 uchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
    336 ucom*	at uchcom? portno ?
    337 
    338 uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    339 ucom*	at uftdi? portno ?
    340 
    341 uipaq*	at uhub? port ?		# iPAQ PDAs
    342 ucom*	at uipaq? portno ?
    343 
    344 umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    345 ucom*	at umct? portno ?
    346 
    347 uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    348 ucom*	at uplcom? portno ?
    349 
    350 uslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
    351 ucom*	at uslsa? portno ?
    352 
    353 uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
    354 ucom*	at uvscom? portno ?
    355 
    356 # RIM BlackBerry
    357 uberry* at uhub? port ?
    358 
    359 # Diamond Multimedia Rio 500
    360 urio*	at uhub? port ?
    361 
    362 # USB Handspring Visor
    363 uvisor* at uhub? port ?
    364 ucom*	at uvisor?
    365 
    366 # Kyocera AIR-EDGE PHONE
    367 ukyopon* at uhub? port ?
    368 ucom*	at ukyopon? portno ?
    369 
    370 # USB scanners
    371 uscanner* at uhub? port ?
    372 
    373 # USB scanners that use SCSI emulation, e.g., HP5300
    374 usscanner* at uhub? port ?
    375 
    376 # Topfield TF5000PVR range of DVB recorders
    377 utoppy* at uhub? port ?
    378 
    379 # Y@P firmware loader
    380 uyap*	at uhub? port ?
    381 
    382 # D-Link DSB-R100 USB radio
    383 udsbr*	at uhub? port ?
    384 radio*	at udsbr?
    385 
    386 # USB Generic driver
    387 ugen*	at uhub? port ?
    388 
    389 # USB 3G datacards
    390 u3ginit* at uhub? port ?
    391 u3g*	at uhub? port ?
    392 ucom*	at u3g?
    393 
    394 # USB generic serial port (e.g., data over cellular)
    395 ugensa* at uhub? port ?
    396 ucom*	at ugensa?
    397 
    398 # Bluetooth Controller and Device support
    399 
    400 # Bluetooth SDIO Controller
    401 sbt* at sdmmc?
    402 
    403 # Bluetooth USB Controllers
    404 ubt* at uhub? port ?
    405 aubtfwl* at uhub? port ?
    406 
    407 # Bluetooth Device Hub
    408 bthub* at ubt?
    409 
    410 # Bluetooth HID support
    411 bthidev* at bthub?
    412 
    413 # Bluetooth Mouse
    414 btms* at bthidev? reportid ?
    415 wsmouse* at btms? mux 0
    416 
    417 # Bluetooth Keyboard
    418 btkbd* at bthidev? reportid ?
    419 wskbd* at btkbd? console ? mux 1
    420 
    421 # Bluetooth Apple Magic Mouse
    422 btmagic* at bthub?
    423 wsmouse* at btmagic? mux 0
    424 
    425 # Bluetooth Audio support
    426 btsco* at bthub?
    427 
    428 
    429 # On-chip RTC
    430 mvsocrtc* at mvsoc? offset ? irq ?
    431 
    432 # Audio support
    433 audio*	at audiobus?
    434 
    435 # Pseudo-Devices
    436 
    437 pseudo-device	crypto			# /dev/crypto device
    438 pseudo-device	swcrypto		# software crypto implementation
    439 
    440 # disk/mass storage pseudo-devices
    441 #pseudo-device	bio			# RAID control device driver
    442 #pseudo-device	ccd		4	# concatenated/striped disk devices
    443 #pseudo-device	cgd		4	# cryptographic disk devices
    444 #pseudo-device	raid		8	# RAIDframe disk driver
    445 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    446 # Options to enable various other RAIDframe RAID types.
    447 #options 	RF_INCLUDE_EVENODD=1
    448 #options 	RF_INCLUDE_RAID5_RS=1
    449 #options 	RF_INCLUDE_PARITYLOGGING=1
    450 #options 	RF_INCLUDE_CHAINDECLUSTER=1
    451 #options 	RF_INCLUDE_INTERDECLUSTER=1
    452 #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    453 #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    454 #pseudo-device	fss			# file system snapshot device
    455 
    456 #pseudo-device	md			# memory disk device (ramdisk)
    457 pseudo-device	vnd			# disk-like interface to files
    458 options 	VND_COMPRESSION		# compressed vnd(4)
    459 
    460 # network pseudo-devices
    461 pseudo-device	bpfilter		# Berkeley packet filter
    462 #pseudo-device	carp			# Common Address Redundancy Protocol
    463 #pseudo-device	ipfilter		# IP filter (firewall) and NAT
    464 pseudo-device	loop			# network loopback
    465 #pseudo-device	ppp			# Point-to-Point Protocol
    466 #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    467 #pseudo-device	sl			# Serial Line IP
    468 #pseudo-device	strip			# Starmode Radio IP (Metricom)
    469 #pseudo-device	irframetty		# IrDA frame line discipline
    470 pseudo-device	tap			# virtual Ethernet
    471 #pseudo-device	tun			# network tunneling over tty
    472 #pseudo-device	gre			# generic L3 over IP tunnel
    473 #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC 1933)
    474 #pseudo-device	faith			# IPv[46] TCP relay translation i/f
    475 pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    476 #pseudo-device	vlan			# IEEE 802.1q encapsulation
    477 #pseudo-device	bridge			# simple inter-network bridging
    478 #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    479 #pseudo-device	agr			# IEEE 802.3ad link aggregation
    480 #pseudo-device	pf			# PF packet filter
    481 #pseudo-device	pflog			# PF log if
    482 
    483 # miscellaneous pseudo-devices
    484 pseudo-device	pty			# pseudo-terminals
    485 #pseudo-device	sequencer	1	# MIDI sequencer
    486 pseudo-device	rnd			# /dev/random and in-kernel generator
    487 #options 	RND_COM
    488 pseudo-device	clockctl		# user control of clock subsystem
    489 pseudo-device	ksyms			# /dev/ksyms
    490 
    491 # a pseudo device needed for Coda	# also needs CODA (above)
    492 #pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    493 
    494 # a pseudo device needed for SMBFS
    495 #pseudo-device	nsmb			# experimental - SMB requester
    496 
    497 # wscons pseudo-devices
    498 #pseudo-device	wsmux			# mouse & keyboard multiplexor
    499 #pseudo-device	wsfont
    500 
    501 # data mover pseudo-devices
    502 pseudo-device	swdmover		# softare dmover(9) back-end
    503 pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
    504 
    505 #options 	FILEASSOC		# fileassoc(9) - required for Veriexec
    506 
    507 # Veriexec
    508 #pseudo-device	veriexec
    509 #
    510 # Uncomment the fingerprint methods below that are desired. Note that
    511 # removing fingerprint methods will have almost no impact on the kernel
    512 # code size.
    513 #
    514 #options 	VERIFIED_EXEC_FP_RMD160
    515 #options 	VERIFIED_EXEC_FP_SHA256
    516 #options 	VERIFIED_EXEC_FP_SHA384
    517 #options 	VERIFIED_EXEC_FP_SHA512
    518 #options 	VERIFIED_EXEC_FP_SHA1
    519 #options 	VERIFIED_EXEC_FP_MD5
    520 
    521 #options 	PAX_MPROTECT=0		# PaX mprotect(2) restrictions
    522 #options 	PAX_ASLR=0		# PaX Address Space Layout Randomization
    523