GENERIC revision 1.95
1# $NetBSD: GENERIC,v 1.95 2011/12/18 05:49:28 dholland Exp $ 2# 3# GENERIC machine description file 4# 5# This machine description file is used to generate the default NetBSD 6# kernel. The generic kernel does not include all options, subsystems 7# and device drivers, but should be useful for most applications. 8# 9# The machine description file can be customised for your specific 10# machine to reduce the kernel size and improve its performance. 11# 12# For further information on compiling NetBSD kernels, see the config(8) 13# man page. 14# 15# For further information on hardware support for this architecture, see 16# the intro(4) man page. For further information about kernel options 17# for this architecture, see the options(4) man page. For an explanation 18# of each device driver in this file see the section 4 man page for the 19# device. 20 21# 22# This kernel supports... 23# HP Jornada 680/690 24# HP 620LX/660LX 25# HITACHI HPW50PA 26# 27 28include "arch/hpcsh/conf/std.hpcsh" 29 30options INCLUDE_CONFIG_FILE # embed config file in kernel binary 31 32maxusers 32 # estimated number of users 33 34options HZ=64 # default clock rate 35 36# System options specific to hpcsh 37 38# CPU support. At least one is REQUIRED. 39options SH3 40#options SH4 41 42# Example of how to set gcc optimization options (XXX: not tested) 43#makeoptions COPTS="-Os" # generic 44#makeoptions CPUFLAGS="-m3" # CPU specific 45 46# 47# PCLOCK is estimated by kernel. 48# PCLOCK CPU CLOCK 49# HP Jornada 680/690 22.22MHz 133MHz 50# HP 620LX 18.75MHz 75MHz 51# HITACHI HPW50PA 25MHz 100MHz 52# 53#options PCLOCK=... 54 55# in-kernel bootloader, see kloader(4) 56options KLOADER 57#options KLOADER_KERNEL_PATH="\"/netbsd\"" 58#options KLOADER_DEBUG 59 60#options HPC_DEBUG_INTERRUPT_MONITOR 61#options KSTACK_DEBUG 62 63 64# Standard system options 65 66#options RTC_OFFSET=-540 # hardware clock is this many mins. west of GMT 67 # (overrides tz info that hpcboot.exe passes) 68 69options KTRACE # system call tracing via ktrace(1) 70 71options SYSVMSG # System V-like message queues 72options SYSVSEM # System V-like semaphores 73options SYSVSHM # System V-like memory sharing 74#options P1003_1B_SEMAPHORE # p1003.1b semaphore support 75 76#options MODULAR # new style module(7) framework 77 78options USERCONF # userconf(4) support 79options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 80options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 81 82# Enable experimental buffer queue strategy for better responsiveness under 83# high disk I/O load. Likely stable but not yet the default. 84#options BUFQ_READPRIO 85#options BUFQ_PRIOCSCAN 86 87# Diagnostic/debugging support options 88#options DIAGNOSTIC # expensive kernel consistency checks 89#options DEBUG # expensive debugging checks/support 90#options KMEMSTATS # kernel memory statistics (vmstat -m) 91#options DDB # in-kernel debugger 92#options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 93#options DDB_HISTORY_SIZE=512 # enable history editing in DDB 94#options KGDB # remote debugger 95#options KGDB_DEVRATE=19200 96#options KGDB_DEVNAME="\"scif\"" # HP Jornada 97#options KGDB_DEVNAME="\"hd64461uart\"" # HITACHI PERSONA (SH3) 98#options KGDB_DEVNAME="\"hd64465uart\"" # HITACHI PERSONA (SH4) 99#makeoptions DEBUG="-g" # compile full symbol table 100 101# Compatibility options 102options COMPAT_15 # NetBSD 1.5 103options COMPAT_16 # NetBSD 1.6 104options COMPAT_20 # NetBSD 2.0 105options COMPAT_30 # NetBSD 3.0 compatibility. 106options COMPAT_40 # NetBSD 4.0 compatibility. 107options COMPAT_50 # NetBSD 5.0 compatibility. 108#options BSDDISKLABEL_EI # endian independent disklabel support 109options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 110 111# Executable format options 112options EXEC_COFF # 32-bit COFF executables 113 114# File systems 115file-system FFS # UFS 116file-system MFS # memory file system (requires FFS) 117#file-system EXT2FS # second extended file system (linux) 118file-system MSDOSFS # MS-DOS file system 119file-system NFS # Sun NFS-compatible filesystem client 120#file-system NULLFS # loopback file system 121#file-system UMAPFS # NULLFS + uid and gid remapping 122#file-system UNION # union file system 123#file-system OVERLAY # overlay file system 124#file-system FDESC # /dev/fd 125file-system KERNFS # /kern 126file-system PROCFS # /proc 127#file-system CODA # Coda File System; also needs vcoda (below) 128#file-system SMBFS # experimental - CIFS; also needs nsmb (below) 129file-system PTYFS # /dev/pts/N support 130#file-system TMPFS # Efficient memory file-system 131#file-system UDF # experimental - OSTA UDF CD/DVD file-system 132 133# File system options 134#options FFS_EI # FFS Endian Independent support 135options FFS_NO_SNAPSHOT # No FFS snapshot support 136options WAPBL # File system journaling support 137#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 138 # immutable) behave as system flags. 139 140# Networking options 141options INET # IP + ICMP + TCP + UDP 142options INET6 # IPV6 143 144options PPP_BSDCOMP # BSD-Compress compression support for PPP 145options PPP_DEFLATE # Deflate compression support for PPP 146options PPP_FILTER # Active filter support for PPP (requires bpf) 147 148#options PFIL_HOOKS # pfil(9) packet filter hooks 149#options IPFILTER_LOG # ipmon(8) log support 150#options IPFILTER_LOOKUP # ippool(8) support 151#options IPFILTER_DEFAULT_BLOCK # block all packets by default 152 153#options ALTQ # Manipulate network interfaces' output queues 154#options ALTQ_BLUE # Stochastic Fair Blue 155#options ALTQ_CBQ # Class-Based Queueing 156#options ALTQ_CDNR # Diffserv Traffic Conditioner 157#options ALTQ_FIFOQ # First-In First-Out Queue 158#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 159#options ALTQ_HFSC # Hierarchical Fair Service Curve 160#options ALTQ_LOCALQ # Local queueing discipline 161#options ALTQ_PRIQ # Priority Queueing 162#options ALTQ_RED # Random Early Detection 163#options ALTQ_RIO # RED with IN/OUT 164#options ALTQ_WFQ # Weighted Fair Queueing 165 166# These options enable verbose messages for several subsystems. 167# Warning, these may compile large string tables into the kernel! 168options MIIVERBOSE # verbose PHY autoconfig messages 169#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 170 171options NFS_BOOT_DHCP 172 173# 174# wscons options 175# 176# builtin terminal emulations 177options WSEMUL_VT100 178# allocate a number of virtual screens at autoconfiguration time 179options WSDISPLAY_DEFAULTSCREENS=4 180 181# customization of console and kernel output - see dev/wscons/wsdisplayvar.h 182options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8) 183#options WS_DEFAULT_FG=WSCOL_WHITE 184#options WS_DEFAULT_BG=WSCOL_BLACK 185#options WS_DEFAULT_COLATTR="(0)" 186#options WS_DEFAULT_MONOATTR="(0)" 187options WS_KERNEL_FG=WSCOL_BROWN 188options WS_KERNEL_BG=WSCOL_BLUE 189#options WS_KERNEL_COLATTR="" 190#options WS_KERNEL_MONOATTR="" 191 192# compatibility to other console drivers 193options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 194options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 195options WSDISPLAY_COMPAT_USL # VT handling 196options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 197 198options FONT_VT220L8x10 # the console font 199 200 201# Kernel root file system and dump configuration. 202config netbsd root on ? type ? 203 204# 205# Device configuration 206# 207mainbus0 at root 208 209# temporally power management 210hpcapm0 at mainbus0 # power management 211apmdev0 at hpcapm0 # APM 212btnmgr0 at mainbus0 213wskbd* at btnmgr0 mux 1 214 215cpu* at mainbus? 216shb* at mainbus? 217rtc* at shb? 218adc* at shb? # analog->digital converter 219pfckbd* at mainbus? 220 221# 222# Workstation Console attachments 223# 224hpcfb* at hd64461video? 225wsdisplay* at hpcfb? 226 227hpckbd* at pfckbd? 228wskbd0 at hpckbd? mux 1 229 230# 231# HP Jornada (620LX/660LX, 680/690) 232# 233scif0 at shb? # serial port/console 234options SCIFCN_SPEED=19200 235# don't need to define SCIFCONSOLE, you can select from the bootloader. 236 237j6x0pwr* at adc? # battery, on/off, etc 238 239j6x0lcd* at shb? # LCD power, brightness, contrast 240 241j6x0tp* at adc? # touch panel 242wsmouse* at j6x0tp? mux 0 # - as a pointing device 243wskbd1 at j6x0tp? mux 1 # - "hard icons" as keys 244# Do not convert hard icons to key presses while serving mouse input. 245options J6X0TP_WSMOUSE_EXCLUSIVE 246# Customization for the mini-keymap of hard icons. 247#options J6X0TP_SETTINGS_ICON_KEYSYM="KS_Home" 248#options J6X0TP_PGUP_ICON_KEYSYM="KS_Prior" 249#options J6X0TP_PGDN_ICON_KEYSYM="KS_Next" 250#options J6X0TP_SWITCH_ICON_KEYSYM="KS_End" 251 252# 253# HITACHI PERSONA (HPW-50PAD, HPQ-650PA) 254# 255com0 at hd64461if? 256 257psh3pwr* at adc? # PERSONA SH3 battery, on/off, etc 258 259psh3lcd* at shb? # LCD power, brightness, contrast 260 261psh3tp* at adc? # PERSONA SH3 touch panel 262wsmouse* at psh3tp? mux 0 263 264# 265# Common HD64461 devices 266# 267hd64461if* at shb? 268 269hd64461pcmcia* at hd64461if? 270#options HD64461PCMCIA_DEBUG 271#options HD64461PCMCIA_REORDER_ATTACH # attach channel 1 (CF) first 272 273hd64461video* at hd64461if? 274#options HD64461VIDEO_DEBUG 275#options HD64461VIDEO_HWACCEL # XXX: too slow to bother 276 277 278# 279# machine independent part 280# 281 282# PCMCIA bus support 283#pcmcia* at hd64461pcmcia? controller ? socket ? 284pcmcia0 at hd64461pcmcia? controller 0 socket ? # I/O card, memory card 285pcmcia1 at hd64461pcmcia? controller 1 socket ? # memory card only 286 287# PCMCIA IDE controllers 288#wdc* at pcmcia? function ? 289wdc0 at pcmcia1 function ? # CF slot 290wdc1 at pcmcia0 function ? # PC Card slot 291 292# ATA (IDE) bus support 293#atabus* at ata? 294atabus0 at wdc0 channel ? # CF slot 295atabus1 at wdc1 channel ? # PC Card slot 296 297# IDE drives 298wd* at atabus? drive ? flags 0x0000 299 300# PCMCIA network interfaces 301mbe* at pcmcia0 function ? # MB8696x based Ethernet 302ne* at pcmcia0 function ? # NE2000-compatible Ethernet 303wi* at pcmcia0 function ? # Lucent/Intersil WaveLan IEEE (802.11) 304 305# MII/PHY support 306lxtphy* at mii? phy ? # Level One LXT-970 PHYs 307nsphyter* at mii? phy ? # NS83843 PHYs 308ukphy* at mii? phy ? # generic unknown PHYs 309 310# PCMCIA Serial Devices 311com* at pcmcia? function ? # Modems and serial cards 312 313# Bluetooth Controller and Device support 314 315# Bluetooth PCMCIA Controllers 316bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 317btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 318 319# Bluetooth Device Hub 320bthub* at bcsp? 321bthub* at bt3c? 322bthub* at btbc? 323bthub* at btuart? 324 325# Bluetooth HID support 326#bthidev* at bthub? 327 328# Bluetooth Mouse 329#btms* at bthidev? reportid ? 330#wsmouse* at btms? mux 0 331 332# Bluetooth Keyboard 333#btkbd* at bthidev? reportid ? 334#wskbd* at btkbd? console ? mux 1 335 336# Bluetooth Apple Magic Mouse 337#btmagic* at bthub? 338#wsmouse* at btmagic? mux 0 339 340# Bluetooth Audio support 341#btsco* at bthub? 342 343 344# Pseudo-Devices 345 346# disk/mass storage pseudo-devices 347#pseudo-device vnd # disk-like interface to files 348#options VND_COMPRESSION # compressed vnd(4) 349pseudo-device fss # file system snapshot device 350 351# network pseudo-devices 352pseudo-device loop # network loopback 353pseudo-device ppp # serial-line IP ports 354pseudo-device bpfilter # Berkeley packet filter 355#pseudo-device carp # Common Address Redundancy Protocol 356#pseudo-device ipfilter # IP filter, NAT 357#pseudo-device pf # PF packet filter 358#pseudo-device pflog # PF log if 359 360# 361# accept filters 362pseudo-device accf_data # "dataready" accept filter 363pseudo-device accf_http # "httpready" accept filter 364 365# miscellaneous pseudo-devices 366pseudo-device pty # pseudo-terminals 367pseudo-device clockctl # user control of clock subsystem 368#pseudo-device irframetty # IrDA frame line discipline 369pseudo-device ksyms # kernel symbol table interface 370pseudo-device bcsp # BlueCore Serial Protocol 371pseudo-device btuart # Bluetooth HCI UART (H4) 372 373# a pseudo device needed for Coda # also needs CODA (above) 374#pseudo-device vcoda 4 # coda minicache <-> venus comm. 375 376# a pseudo device needed for SMBFS 377#pseudo-device nsmb # experimental - SMB requester 378 379# wscons pseudo-devices 380pseudo-device wsmux # mouse & keyboard multiplexor 381#pseudo-device wsfont # dynamic font loading support 382#pseudo-device hpf1275a # HP F1275A external keyboard 383#wskbd* at hpf1275a? mux 1 384 385# Veriexec 386# 387# a pseudo device needed for veriexec 388#pseudo-device veriexec 1 389# 390# Uncomment the fingerprint methods below that are desired. Note that 391# removing fingerprint methods will have almost no impact on the kernel 392# code size. 393# 394#options VERIFIED_EXEC_FP_RMD160 395#options VERIFIED_EXEC_FP_SHA256 396#options VERIFIED_EXEC_FP_SHA384 397#options VERIFIED_EXEC_FP_SHA512 398#options VERIFIED_EXEC_FP_SHA1 399#options VERIFIED_EXEC_FP_MD5 400