Home | History | Annotate | Line # | Download | only in conf
GENERIC_TINY revision 1.7
      1 #	$NetBSD: GENERIC_TINY,v 1.7 1999/07/05 22:40:34 fvdl Exp $
      2 #
      3 #	GENERIC_TINY -- suitable default for 4M machines
      4 #			No EISA, PCI, PCMCIA or SCSI.
      5 #
      6 
      7 include "arch/i386/conf/std.i386"
      8 
      9 maxusers	32		# estimated number of users
     10 
     11 # CPU support.  At least one is REQUIRED.
     12 options 	I386_CPU
     13 options 	I486_CPU
     14 options 	I586_CPU
     15 options 	I686_CPU
     16 
     17 # CPU-related options.
     18 options 	MATH_EMULATE	# floating point emulation
     19 #options 	VM86		# virtual 8086 emulation
     20 #options 	USER_LDT	# user-settable LDT; used by WINE
     21 # eliminate delay no-ops in I/O; recommended on all but very old machines
     22 #options 	DUMMY_NOPS
     23 
     24 # Misc. i386-specific options
     25 #options 	XSERVER		# X server support in console drivers
     26 
     27 # This option allows you to force a serial console at the specified
     28 # I/O address.   see console(4) for details.
     29 #options 	"CONSDEVNAME=\"com\""
     30 
     31 # The following options override the memory sizes passed in from the boot
     32 # block.  Use them *only* if the boot block is unable to determine the correct
     33 # values.  Note that the BIOS may *correctly* report less than 640k of base
     34 # memory if the extended BIOS data area is located at the top of base memory
     35 # (as is the case on most recent systems).
     36 #options 	REALBASEMEM=...	# size of base memory
     37 #options 	REALEXTMEM=...	# size of extended memory
     38 
     39 # Standard system options
     40 
     41 #options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     42 options 	INSECURE	# disable kernel security levels
     43 
     44 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     45 #options 	NTP		# NTP phase/frequency locked loop
     46 
     47 #options 	KTRACE		# system call tracing via ktrace(1)
     48 
     49 #options 	SYSVMSG		# System V-like message queues
     50 #options 	SYSVSEM		# System V-like semaphores
     51 #options 	SYSVSHM		# System V-like memory sharing
     52 #options 	SHMMAXPGS=1024	# 1024 pages is the default
     53 
     54 #options 	LKM		# loadable kernel modules
     55 
     56 # Diagnostic/debugging support options
     57 #options 	DIAGNOSTIC	# cheap kernel consistency checks
     58 #options 	DEBUG		# expensive debugging checks/support
     59 #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     60 options 	DDB		# in-kernel debugger
     61 #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     62 #options 	KGDB		# remote debugger
     63 #options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
     64 #makeoptions	DEBUG="-g"	# compile full symbol table
     65 
     66 # Compatibility options
     67 options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     68 options 	COMPAT_09	# NetBSD 0.9,
     69 options 	COMPAT_10	# NetBSD 1.0,
     70 options 	COMPAT_11	# NetBSD 1.1,
     71 options 	COMPAT_12	# NetBSD 1.2,
     72 options 	COMPAT_13	# NetBSD 1.3,
     73 options 	COMPAT_43	# and 4.3BSD
     74 options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     75 
     76 #options 	COMPAT_SVR4	# binary compatibility with SVR4
     77 #options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
     78 #options 	COMPAT_LINUX	# binary compatibility with Linux
     79 #options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
     80 
     81 options 	COMPAT_AOUT	# binary compat with NetBSD a.out binaries
     82 
     83 # File systems
     84 file-system 	FFS		# UFS
     85 file-system 	EXT2FS		# second extended file system (linux)
     86 #file-system 	LFS		# log-structured file system
     87 file-system 	MFS		# memory file system
     88 file-system 	NFS		# Network File System client
     89 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     90 file-system 	MSDOSFS		# MS-DOS file system
     91 #file-system 	FDESC		# /dev/fd
     92 file-system 	KERNFS		# /kern
     93 #file-system 	NULLFS		# loopback file system
     94 #file-system 	PORTAL		# portal filesystem (still experimental)
     95 #file-system 	PROCFS		# /proc
     96 #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     97 #file-system 	UNION		# union file system
     98 
     99 # File system options
    100 #options 	QUOTA		# UFS quotas
    101 #options 	FFS_EI		# FFS Endian Independant support
    102 options 	NFSSERVER	# Network File System server
    103 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    104 				# immutable) behave as system flags.
    105 
    106 # Networking options
    107 #options 	GATEWAY		# packet forwarding
    108 options 	INET		# IP + ICMP + TCP + UDP
    109 #options 	MROUTING	# IP multicast routing
    110 #options 	NS		# XNS
    111 #options 	NSIP		# XNS tunneling over IP
    112 #options 	ISO,TPIP	# OSI
    113 #options 	EON		# OSI tunneling over IP
    114 #options 	CCITT,LLC,HDLC	# X.25
    115 #options 	NETATALK	# AppleTalk networking protocols
    116 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    117 #options 	PPP_DEFLATE	# Deflate compression support for PPP
    118 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    119 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    120 #options 	IPFILTER_LOG	# ipmon(8) log support
    121 
    122 # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    123 #options 	TCP_COMPAT_42
    124 
    125 # These options enable verbose messages for several subsystems.
    126 # Warning, these may compile large string tables into the kernel!
    127 #options 	EISAVERBOSE	# verbose EISA device autoconfig messages
    128 #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    129 #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    130 options 	SCSIVERBOSE	# human readable SCSI error messages
    131 #options 	USBVERBOSE	# verbose USB device autoconfig messages
    132 
    133 #options 	NFS_BOOT_BOOTP,NFS_BOOT_BOOTPARAM
    134 
    135 # Kernel root file system and dump configuration.
    136 config		netbsd	root on ? type ?
    137 #config		netbsd	root on sd0a type ffs
    138 #config		netbsd	root on ? type nfs
    139 
    140 #
    141 # Device configuration
    142 #
    143 
    144 mainbus0 at root
    145 
    146 #apm0	at mainbus0			# Advanced power management
    147 
    148 
    149 # Basic Bus Support
    150 
    151 # PCI bus support
    152 #pci*	at mainbus? bus ?
    153 #pci*	at pchb? bus ?
    154 #pci*	at ppb? bus ?
    155 
    156 # PCI bridges
    157 #pchb*	at pci? dev ? function ?	# PCI-Host bridges
    158 #pceb*	at pci? dev ? function ?	# PCI-EISA bridges
    159 #pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    160 #ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    161 # XXX 'puc's aren't really bridges, but there's no better place for them here
    162 #puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    163 
    164 # EISA bus support
    165 #eisa*	at mainbus?
    166 #eisa*	at pceb?
    167 
    168 # ISA bus support
    169 isa*	at mainbus?
    170 #isa*	at pceb?
    171 #isa*	at pcib?
    172 
    173 # PCMCIA bus support
    174 #pcmcia*	at pcic? controller ? socket ?
    175 
    176 # ISA PCMCIA controllers
    177 #pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
    178 #pcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
    179 
    180 # ISA Plug-and-Play bus support
    181 isapnp0	at isa?
    182 
    183 # ISA Plug-and-Play PCMCIA controllers
    184 #pcic*	at isapnp?
    185 
    186 # Coprocessor Support
    187 
    188 # Math Coprocessor support
    189 npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
    190 
    191 
    192 # Console Devices
    193 
    194 # ISA console.  You can only configure one of these!
    195 pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
    196 #vt0	at isa? port 0x60 irq 1		# PCVT console driver
    197 
    198 #pcppi0	at isa?
    199 #sysbeep0	at pcppi?
    200 
    201 # Serial Devices
    202 
    203 # PCI serial interfaces
    204 #com*	at puc? port ?			# 16x450s on "universal" comm boards
    205 #cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    206 
    207 # ISA Plug-and-Play serial interfaces
    208 com*	at isapnp?			# Modems and serial boards
    209 
    210 # PCMCIA serial interfaces
    211 #com*	at pcmcia? function ?		# Modems and serial cards
    212 
    213 # ISA serial interfaces
    214 #options 	COM_HAYESP		# adds Hayes ESP serial board support
    215 com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
    216 com1	at isa? port 0x2f8 irq 3
    217 com2	at isa? port 0x3e8 irq 5
    218 #com3	at isa? port 0x2e8 irq 9
    219 #ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
    220 #com*	at ast? slave ?
    221 #boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
    222 #com*	at boca? slave ?
    223 #rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
    224 #com*	at rtfps? slave ?
    225 #cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
    226 
    227 
    228 # Parallel Printer Interfaces
    229 
    230 # PCI parallel printer interfaces
    231 #lpt*	at puc? port ?			# || ports on "universal" comm boards
    232 
    233 # ISA parallel printer interfaces
    234 lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    235 #lpt1	at isa? port 0x278
    236 #lpt2	at isa? port 0x3bc
    237 
    238 
    239 # SCSI Controllers and Devices
    240 
    241 # PCI SCSI controllers
    242 #ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    243 #bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    244 #isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    245 #ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
    246 
    247 # EISA SCSI controllers
    248 #ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
    249 #ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
    250 #bha*	at eisa? slot ?			# BusLogic 7xx SCSI
    251 #uha*	at eisa? slot ?			# UltraStor 24f SCSI
    252 
    253 # PCMCIA SCSI controllers
    254 #aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    255 
    256 # ISA Plug-and-Play SCSI controllers
    257 aic*	at isapnp?			# Adaptec AHA-1520B
    258 
    259 # ISA SCSI controllers
    260 aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
    261 aha1	at isa? port 0x334 irq ? drq ?
    262 ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
    263 aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
    264 bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
    265 bha1	at isa? port 0x334 irq ? drq ?
    266 sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
    267 uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
    268 uha1	at isa? port 0x340 irq ? drq ?
    269 wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
    270 wds1	at isa? port 0x358 irq 11 drq 5
    271 
    272 # SCSI bus support
    273 scsibus* at aha?
    274 #scsibus* at ahb?
    275 #scsibus* at ahc?
    276 scsibus* at aic?
    277 scsibus* at bha?
    278 #scsibus* at isp?
    279 #scsibus* at ncr?
    280 scsibus* at sea?
    281 scsibus* at uha?
    282 scsibus* at wds?
    283 
    284 # SCSI devices
    285 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    286 st*	at scsibus? target ? lun ?	# SCSI tape drives
    287 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    288 ch*	at scsibus? target ? lun ?	# SCSI autochangers
    289 ss*	at scsibus? target ? lun ?	# SCSI scanners
    290 uk*	at scsibus? target ? lun ?	# SCSI unknown
    291 
    292 
    293 # IDE and related devices
    294 
    295 # ISA Plug-and-Play IDE controllers
    296 wdc*	at isapnp?
    297 
    298 # PCMCIA IDE controllers
    299 #wdc*	at pcmcia? function ?
    300 
    301 # ISA IDE controllers
    302 wdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
    303 wdc1	at isa? port 0x170 irq 15
    304 
    305 # IDE drives
    306 wd*	at wdc? drive ?			# the drives themselves
    307 
    308 # ATAPI bus support
    309 atapibus* at wdc?
    310 
    311 # ATAPI devices
    312 cd*	at atapibus? drive ?		# ATAPI CD-ROM drives
    313 sd*	at atapibus? drive ?		# ATAPI disk drives
    314 
    315 
    316 # Miscellaneous mass storage devices
    317 
    318 # ISA floppy
    319 fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    320 #fdc1	at isa? port 0x370 irq ? drq ?
    321 fd*	at fdc? drive ?			# the drives themselves
    322 # some machines need you to do this instead of fd*
    323 #fd0	at fdc0 drive 0
    324 
    325 # ISA CD-ROM devices
    326 #mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
    327 
    328 # ISA tape devices
    329 # note: the wt driver conflicts unpleasantly with SMC boards at the
    330 # same I/O address. The probe reprograms their EEPROMs. Don't
    331 # uncomment it unless you are actually using it.
    332 #wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
    333 
    334 
    335 # Network Interfaces
    336 
    337 # PCI network interfaces
    338 #de*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
    339 #en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    340 #ep*	at pci? dev ? function ?	# 3Com 3c59x/3c90x Ethernet
    341 #epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    342 #esh*	at pci? dev ? function ?	# Essential HIPPI card
    343 #fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    344 #fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    345 #le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    346 #ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    347 #tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    348 
    349 # EISA network interfaces
    350 #ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
    351 #fea*	at eisa? slot ?			# DEC DEFEA FDDI
    352 
    353 # ISA Plug-and-Play network interfaces
    354 ep*	at isapnp?			# 3Com 3c509 Ethernet
    355 ne*	at isapnp?			# NE2000-compatible Ethernet
    356 
    357 # PCMCIA network interfaces
    358 #ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    359 #mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    360 #ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    361 #sm*	at pcmcia? function ?		# Megahertz Ethernet
    362 
    363 # ISA network interfaces
    364 ate0	at isa? port 0x2a0 irq ?		# AT1700
    365 ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
    366 eg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
    367 el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
    368 ep0	at isa? port ? irq ?			# 3C509 ethernet cards
    369 ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
    370 ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
    371 fmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
    372 ix0	at isa? port 0x300 irq 10		# EtherExpress/16
    373 iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
    374 lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
    375 #depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
    376 #le*	at depca?
    377 nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
    378 le*	at nele?
    379 bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
    380 le*	at bicc?
    381 ne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
    382 ne1	at isa? port 0x300 irq 10
    383 sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
    384 we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
    385 we1	at isa? port 0x300 iomem 0xcc000 irq 10
    386 
    387 # MII bus support
    388 #mii*	at tl?
    389 
    390 # MII PHY network interfaces
    391 #tlphy*	at mii? dev ?			# ThunderLAN PHYs
    392 #nsphy*	at mii? dev ?			# NS and compatible PHYs
    393 
    394 
    395 # USB Controller and Devices
    396 
    397 # PCI USB controllers
    398 #uhci*	at pci?				# Universal Host Controller (Intel)
    399 #ohci*	at pci?				# Open Host Controller
    400 
    401 # USB bus support
    402 #usb*	at uhci?
    403 #usb*	at ohci?
    404 
    405 # USB Hubs
    406 #uhub*	at usb?
    407 #uhub*	at uhub? port ?
    408 
    409 # USB Mice
    410 #ums*	at uhub? port ?
    411 
    412 # USB Keyboards
    413 #ukbd*	at uhub? port ?
    414 
    415 # USB Generic HID devices
    416 #uhid*	at uhub? port ?
    417 
    418 # USB Printer
    419 #ulpt*	at uhub? port ?
    420 
    421 # USB Generic driver
    422 #ugen*	at uhub? port ?
    423 
    424 # Audio Devices
    425 
    426 # PCI audio devices
    427 #eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
    428 
    429 # ISA Plug-and-Play audio devices
    430 #guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
    431 #sb*	at isapnp?			# SoundBlaster-compatible audio
    432 #ym*	at isapnp?			# Yamaha OPL3-SA3 audio
    433 
    434 # ISA audio devices
    435 #aria0	at isa? port 0x290 irq 10 		# Aria
    436 #gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
    437 #pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
    438 #pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
    439 #sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
    440 #sb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
    441 #wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
    442 
    443 # Audio support
    444 #audio*	at aria?
    445 #audio*	at eap?
    446 #audio*	at gus?
    447 #audio*	at guspnp?
    448 #audio*	at pas?
    449 #audio*	at sb?
    450 #audio*	at sp?
    451 #audio*	at wss?
    452 #audio*	at ym?
    453 
    454 # The spkr driver provides a simple tone interface to the built in speaker.
    455 #spkr0	at pcppi?		# PC speaker
    456 
    457 
    458 # Mice
    459 
    460 # ISA busmice
    461 #olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    462 #olms1	at isa? port 0x238 irq 5
    463 #omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    464 #omms1	at isa? port 0x238 irq 5
    465 #opms0	at pc? irq 12		# PS/2 auxiliary port mouse
    466 #opms0	at vt? irq 12		# PS/2 auxiliary port mouse
    467 
    468 
    469 # Joysticks
    470 
    471 # ISA Plug-and-Play joysticks
    472 #joy*	at isapnp?			# Game ports (usually on audio cards)
    473 
    474 # ISA joysticks. Probe is a little strange; add only if you have one.
    475 #joy0	at isa? port 0x201
    476 
    477 
    478 # Miscellaneous Devices
    479 
    480 # Planetconnect Satellite receiver driver.
    481 #satlink0 at isa? port 0x300 drq 1
    482 
    483 
    484 # Pull in optional local configuration
    485 include	"arch/i386/conf/GENERIC.local"
    486 
    487 
    488 # Pseudo-Devices
    489 
    490 # disk/mass storage pseudo-devices
    491 pseudo-device	ccd		4	# concatenated/striped disk devices
    492 pseudo-device	md		1	# memory disk device (ramdisk)
    493 pseudo-device	vnd		4	# disk-like interface to files
    494 
    495 # network pseudo-devices
    496 pseudo-device	bpfilter	8	# Berkeley packet filter
    497 pseudo-device	ipfilter		# IP filter (firewall) and NAT
    498 pseudo-device	loop			# network loopback
    499 pseudo-device	ppp		2	# Point-to-Point Protocol
    500 pseudo-device	sl		2	# Serial Line IP
    501 pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    502 pseudo-device	tun		2	# network tunneling over tty
    503 
    504 # miscellaneous pseudo-devices
    505 pseudo-device	pty		16	# pseudo-terminals
    506 pseudo-device	tb		1	# tablet line discipline
    507 pseudo-device	rnd			# /dev/random and in-kernel generator
    508 #options 	RND_COM			# use "com" randomness as well (BROKEN)
    509