NETWALKER revision 1.9
1# $NetBSD: NETWALKER,v 1.9 2012/04/17 07:43:21 bsh Exp $ 2# 3# NETWALKER -- http://www.sharp.co.jp/netwalker/ 4# 5 6include "arch/evbarm/conf/std.netwalker" 7 8#options INCLUDE_CONFIG_FILE # embed config file in kernel binary 9 10# estimated number of users 11 12maxusers 32 13 14# Standard system options 15 16options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 17#options NTP # NTP phase/frequency locked loop 18 19# CPU options 20options CPU_CORTEXA8 # Support the ARM-v7a core 21options IMX51 22options PMAPCOUNTERS 23 24# Architecture options 25 26options IMX51_IPGCLK_FREQ=50000000 # XXX This value is not correct. 27 28# File systems 29 30file-system FFS # UFS 31#file-system LFS # log-structured file system 32file-system MFS # memory file system 33file-system NFS # Network file system 34#file-system ADOSFS # AmigaDOS-compatible file system 35file-system EXT2FS # second extended file system (linux) 36#file-system CD9660 # ISO 9660 + Rock Ridge file system 37file-system MSDOSFS # MS-DOS file system 38file-system FDESC # /dev/fd 39file-system KERNFS # /kern 40file-system NULLFS # loopback file system 41#file-system PORTAL # portal filesystem (still experimental) 42file-system PROCFS # /proc 43file-system TMPFS # memory file system 44#file-system UMAPFS # NULLFS + uid and gid remapping 45#file-system UNION # union file system 46file-system PTYFS # /dev/pts/N support 47 48# File system options 49#options QUOTA # legacy UFS quotas 50#options QUOTA2 # new, in-filesystem UFS quotas 51#options FFS_EI # FFS Endian Independent support 52#options NFSSERVER 53options WAPBL # File system journaling support 54#options FFS_NO_SNAPSHOT # No FFS snapshot support 55 56# Networking options 57 58#options GATEWAY # packet forwarding 59options INET # IP + ICMP + TCP + UDP 60options INET6 # IPV6 61#options IPSEC # IP security 62#options IPSEC_ESP # IP security (encryption part; define w/ IPSEC) 63#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 64#options IPSEC_DEBUG # debug for IP security 65#options MROUTING # IP multicast routing 66#options PIM # Protocol Independent Multicast 67#options ISO,TPIP # OSI 68#options EON # OSI tunneling over IP 69#options NETATALK # AppleTalk networking 70#options PFIL_HOOKS # pfil(9) packet filter hooks 71#options PPP_BSDCOMP # BSD-Compress compression support for PPP 72#options PPP_DEFLATE # Deflate compression support for PPP 73#options PPP_FILTER # Active filter support for PPP (requires bpf) 74#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 75 76#options NFS_BOOT_BOOTP 77#options NFS_BOOT_DHCP 78#options NFS_BOOT_BOOTPARAM 79#options DEBUG_NFS_BOOT_DHCP 80 81# Compatibility options 82 83#options COMPAT_43 # 4.3BSD compatibility. 84options COMPAT_50 # NetBSD 5.0 compatibility. 85options COMPAT_40 # NetBSD 4.0 compatibility. 86#options COMPAT_30 # NetBSD 3.0 compatibility. 87#options COMPAT_20 # NetBSD 2.0 compatibility. 88#options COMPAT_16 # NetBSD 1.6 compatibility. 89#options COMPAT_15 # NetBSD 1.5 compatibility. 90#options COMPAT_14 # NetBSD 1.4 compatibility. 91#options COMPAT_13 # NetBSD 1.3 compatibility. 92#options COMPAT_12 # NetBSD 1.2 compatibility. 93#options COMPAT_11 # NetBSD 1.1 compatibility. 94#options COMPAT_10 # NetBSD 1.0 compatibility. 95#options COMPAT_09 # NetBSD 0.9 compatibility. 96#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 97 98options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility 99#options COMPAT_LINUX # binary compatibility with Linux 100options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 101 102# Shared memory options 103 104options SYSVMSG # System V-like message queues 105options SYSVSEM # System V-like semaphores 106options SYSVSHM # System V-like memory sharing 107 108# Device options 109 110# Console options. also need IMXUARTCONSOLE 111options CONSDEVNAME="\"imxuart\"",CONADDR=0x73fbc000 112options CONSPEED=115200 # Console speed 113 114# kgdb 115#options KGDB 116#options KGDB_DEVNAME="\"imxuart\"" 117#options KGDB_DEVADDR=0x73fbc000 118#options KGDB_DEVRATE=115200 119 120# Miscellaneous kernel options 121options KTRACE # system call tracing, a la ktrace(1) 122options IRQSTATS # manage IRQ statistics 123#options KMEMSTATS # kernel memory statistics 124options PCMCIAVERBOSE # verbose PCMCIA configuration messages 125options USBVERBOSE # verbose USB device autoconfig messages 126#options SCSIVERBOSE # Verbose SCSI errors 127options MIIVERBOSE # Verbose MII autoconfuration messages 128#options PCI_CONFIG_DUMP # verbosely dump PCI config space 129#options DDB_KEYCODE=0x40 130options USERCONF # userconf(4) support 131#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 132#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 133options NO_POWERSAVE # uncomment this to run under ICE 134 135# Development and Debugging options 136#options PERFCTRS # performance counters 137options DIAGNOSTIC # internally consistency checks 138#options DEBUG 139#options KMEMSTATS # kernel memory statistics (vmstat -m) 140options DDB # in-kernel debugger 141options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 142options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 143options DDB_VERBOSE_HELP 144#options LOCKDEBUG 145#options PMAP_DEBUG # Enable pmap_debug_level code 146#options IPKDB # remote kernel debugging 147options VERBOSE_INIT_ARM # verbose bootstraping messages 148makeoptions DEBUG="-g -O2" # compile full symbol table 149#options SYSCALL_STATS # per syscall counts 150#options SYSCALL_TIMES # per syscall times 151#options SYSCALL_TIMES_HASCOUNTER # use 'broken' rdtsc (soekris) 152#options SCSIPI_DEBUG 153#options SCSIPI_DEBUG_TYPE=SCSIPI_BUSTYPE_SCSI 154#options SCSIPI_DEBUG_TARGET=0 155#options SCSIPI_DEBUG_LUN=0 156 157# Kernel root file system and dump configuration. 158config netbsd root on ? type ? 159 160# The main bus device 161mainbus0 at root 162 163# The boot cpu 164cpu0 at mainbus? 165 166# Devices 167# On-chip 168# On-chip bus 169axi0 at mainbus? 170 171# Interrupt Cotroller 172tzic0 at axi? addr 0xe0000000 size 0x4000 irqbase 0 173 174# Serial 175imxuart0 at axi? addr 0x73fbc000 irq 31 # UART1 176#imxuart1 at axi? addr 0x73fc0000 irq 32 177#imxuart2 at axi? addr 0x7000c000 irq 33 178options IMXUARTCONSOLE 179 180# Enhanced Periodic Interrupt Timer 181imxclock0 at axi? addr 0x73fac000 size 0x4000 irq 40 182imxclock1 at axi? addr 0x73fb0000 size 0x4000 irq 41 183 184# IOMUX 185imxiomux0 at axi? addr 0x73fa8000 186 187# GPIO 188imxgpio0 at axi? addr 0x73f84000 189imxgpio1 at axi? addr 0x73f88000 190imxgpio2 at axi? addr 0x73f8c000 191imxgpio3 at axi? addr 0x73f90000 192 193# USB 194imxusbc0 at axi? addr 0x73f80000 195ehci0 at imxusbc0 unit 0 irq 18 # OTG 196ehci1 at imxusbc0 unit 1 irq 14 # Host1 197#ehci2 at imxusbc0 unit 2 irq 16 # Host2 198#ehci3 at imxusbc0 unit 3 irq 17 # Host3 199 200usb* at ehci? 201uhub* at usb? 202uhub* at uhub? port ? 203ugen* at uhub? port ? 204 205# USB HID device 206uhidev* at uhub? port ? configuration ? interface ? 207 208# USB Mice 209ums* at uhidev? reportid ? 210wsmouse* at ums? mux 0 211 212# USB Keyboards 213ukbd* at uhidev? reportid ? 214wskbd* at ukbd? console ? mux 1 215 216# USB Mass Storage 217umass* at uhub? port ? configuration ? interface ? 218wd* at umass? 219 220# Serial adapters 221ubsa* at uhub? port ? # Belkin serial adapter 222ucom* at ubsa? portno ? 223 224uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter 225ucom* at uchcom? portno ? 226 227uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 228ucom* at uftdi? portno ? 229 230umct* at uhub? port ? # MCT USB-RS232 serial adapter 231ucom* at umct? portno ? 232 233uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 234ucom* at uplcom? portno ? 235 236uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter 237ucom* at uslsa? portno ? 238 239uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 240ucom* at uvscom? portno ? 241 242# USB generic serial port (e.g., data over cellular) 243ugensa* at uhub? port ? 244ucom* at ugensa? 245 246# SCSI bus support 247scsibus* at scsi? 248 249# SCSI devices 250sd* at scsibus? target ? lun ? # SCSI disk drives 251 252# Pseudo-Devices 253 254pseudo-device crypto # /dev/crypto device 255pseudo-device swcrypto # software crypto implementation 256 257# disk/mass storage pseudo-devices 258#pseudo-device md # memory disk device (ramdisk) 259#pseudo-device vnd # disk-like interface to files 260 261# network pseudo-devices 262#pseudo-device bpfilter # Berkeley packet filter 263#pseudo-device ipfilter # IP filter (firewall) and NAT 264pseudo-device loop # network loopback 265pseudo-device ppp # Point-to-Point Protocol 266 267# miscellaneous pseudo-devices 268pseudo-device pty # pseudo-terminals 269pseudo-device ksyms # /dev/ksyms 270pseudo-device clockctl # NTP clockctl 271 272# wscons pseudo-devices 273pseudo-device wsmux # mouse & keyboard multiplexor 274