Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.45
      1 #	$NetBSD: INSTALL,v 1.45 1997/08/20 18:41:08 mjacob Exp $
      2 #
      3 #	INSTALL -- an installation kernel config.
      4 #	This kernel should be derived from GENERIC with ramdisk
      5 #	support added and some features commented out.
      6 #
      7 #	Install kernels no longer support X, soundcards, or non-NetBSD
      8 #	emulation.
      9 
     10 include "arch/i386/conf/std.i386"
     11 
     12 options 	I386_CPU	# CPU classes; at least one is REQUIRED
     13 options 	I486_CPU
     14 options 	I586_CPU
     15 options 	I686_CPU
     16 options 	MATH_EMULATE	# floating point emulation
     17 #options 	VM86		# Virtual 8086 emulation
     18 
     19 # Some BIOSes don't get the size of extended memory right.  If you
     20 # have a broken BIOS, uncomment the following and set the value
     21 # properly for your system.
     22 #options 	BIOSEXTMEM=...	# size of extended memory
     23 
     24 #options 	DUMMY_NOPS	# speed hack; recommended
     25 #options 	XSERVER,UCONSOLE
     26 #options 	INSECURE	# insecure; allow /dev/mem writing for X
     27 
     28 maxusers	32		# estimated number of users
     29 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     30 #options 	NTP		# NTP phase/frequency locked loop
     31 
     32 # Enable the hooks used for initializing the memory-disk.
     33 options 	MEMORY_DISK_HOOKS
     34 options 	MEMORY_DISK_IS_ROOT     # Force root on memory-disk
     35 options 	MEMORY_DISK_SERVER=0	# No user space hooks
     36 options 	MINIROOTSIZE=3074
     37 #options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
     38 
     39 #options 	DDB		# in-kernel debugger
     40 #makeoptions	DEBUG="-g"	# compile full symbol table
     41 #options 	DIAGNOSTIC	# internal consistency checks
     42 #options 	KTRACE		# system call tracing, a la ktrace(1)
     43 
     44 #options 	SYSVMSG		# System V-like message queues
     45 #options 	SYSVSEM		# System V-like semaphores
     46 #options 	SYSVSHM		# System V-like memory sharing
     47 #options 	SHMMAXPGS=1024	# 1024 pages is the default
     48 
     49 #options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     50 #options 	COMPAT_09	# NetBSD 0.9,
     51 options 	COMPAT_10	# NetBSD 1.0,
     52 options 	COMPAT_11	# NetBSD 1.1,
     53 options 	COMPAT_12	# NetBSD 1.2,
     54 #options 	COMPAT_43	# and 4.3BSD
     55 #options 	TCP_COMPAT_42	# TCP bug compatibility with 4.2BSD
     56 
     57 #options 	COMPAT_SVR4	# binary compatibility with SVR4
     58 #options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
     59 #options 	COMPAT_LINUX	# binary compatibility with Linux
     60 #options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
     61 
     62 #options 	EXEC_ELF32	# 32-bit ELF executables (SVR4, Linux)
     63 
     64 #options 	USER_LDT	# user-settable LDT; used by WINE
     65 options 	LKM		# loadable kernel modules
     66 
     67 file-system 	FFS		# UFS
     68 #file-system 	EXT2FS		# second extended file system (linux)
     69 #file-system 	LFS		# log-structured file system
     70 file-system 	MFS		# memory file system
     71 file-system 	NFS		# Network File System client
     72 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     73 file-system 	MSDOSFS		# MS-DOS file system
     74 file-system 	FDESC		# /dev/fd
     75 file-system 	KERNFS		# /kern
     76 #file-system 	NULLFS		# loopback file system
     77 #file-system 	PORTAL		# portal filesystem (still experimental)
     78 #file-system 	PROCFS		# /proc
     79 #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     80 #file-system 	UNION		# union file system
     81 
     82 #options 	QUOTA		# UFS quotas
     83 #options 	NFSSERVER	# Network File System server
     84 options 	FIFO		# FIFOs; RECOMMENDED
     85 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     86 				# immutable) behave as system flags.
     87 
     88 #options 	GATEWAY		# packet forwarding
     89 options 	INET		# IP + ICMP + TCP + UDP
     90 #options 	MROUTING	# IP multicast routing
     91 #options 	NS		# XNS
     92 #options 	NSIP		# XNS tunneling over IP
     93 #options 	ISO,TPIP	# OSI
     94 #options 	EON		# OSI tunneling over IP
     95 #options 	CCITT,LLC,HDLC	# X.25
     96 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     97 
     98 config		netbsd	root on ? type ?
     99 #options 	COMCONSOLE=0,CONADDR=0x3f8,CONUNIT=0,CONSPEED=9600
    100 
    101 #options 	EISAVERBOSE	# verbose EISA device messages
    102 #options 	PCIVERBOSE	# verbose PCI device messages
    103 #options	SCSIVERBOSE	# Verbose SCSI errors
    104 
    105 mainbus0 at root
    106 
    107 pci0	at mainbus0 bus ?
    108 eisa0	at mainbus0
    109 
    110 ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    111 pci*	at ppb? bus ?
    112 pchb*	at pci? dev ? function ?	# PCI-Host bridges
    113 pci*	at pchb?
    114 pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    115 
    116 isa*	at pcib?			# ISA on PCI-ISA bridge
    117 isa*	at mainbus0			# all other ISA
    118 #isapnp0	at isa?				# ISA Plug-and-Play
    119 
    120 #apm0	at mainbus0			# Advanced power management
    121 
    122 npx0	at isa? port 0xf0 irq 13	# math coprocessor
    123 
    124 pc0	at isa? port 0x60 irq 1		# generic PC console device
    125 #vt0	at isa? port 0x60 irq 1
    126 
    127 com0	at isa? port 0x3f8 irq 4	# standard PC serial ports
    128 com1	at isa? port 0x2f8 irq 3
    129 com2	at isa? port 0x3e8 irq 5
    130 #com3	at isa? port 0x2e8 irq 9
    131 #ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
    132 #com*	at ast? slave ?
    133 #boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
    134 #com*	at boca? slave ?
    135 #rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
    136 #com*	at rtfps? slave ?
    137 #cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
    138 #cy*	at pci? dev ? function ?	# Cyclades serial cards
    139 
    140 lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    141 lpt1	at isa? port 0x278
    142 lpt2	at isa? port 0x3bc
    143 
    144 #lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
    145 #lms1	at isa? port 0x238 irq 5
    146 #mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
    147 #mms1	at isa? port 0x238 irq 5
    148 #pms0	at pckbd? irq 12		# PS/2 auxiliary port mouse
    149 
    150 aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI controllers
    151 aha1	at isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI controllers
    152 scsibus* at aha?
    153 ahb*	at eisa? slot ?			# Adaptec 174[024] SCSI controllers
    154 scsibus* at ahb?
    155 ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI controllers
    156 ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI controllers
    157 ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI controllers
    158 scsibus* at ahc?
    159 aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI controllers
    160 scsibus* at aic?
    161 bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI controllers
    162 bha1	at isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI controllers
    163 bha*	at eisa? slot ?
    164 bha*	at pci? dev ? function ?
    165 scsibus* at bha?
    166 ncr*	at pci? dev ? function ?	# NCR 538XX SCSI controllers
    167 scsibus* at ncr?
    168 sea0	at isa? iomem 0xc8000 irq 5
    169 scsibus* at sea?
    170 uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI controllers
    171 uha1	at isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI controllers
    172 uha*	at eisa? slot ?			# UltraStor 24f SCSI controllers
    173 scsibus* at uha?
    174 # temporarily commented out, pending bus_dma fixes for this driver.
    175 #wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
    176 #wds1	at isa? port 0x358 irq 11 drq 5
    177 #scsibus* at wds?
    178 isp*	at pci? dev ? function ?	# Qlogic ISP 10x0 SCSI controllers
    179 scsibus* at isp?
    180 
    181 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    182 st*	at scsibus? target ? lun ?	# SCSI tape drives
    183 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    184 ch*	at scsibus? target ? lun ?	# SCSI autochangers
    185 #ss*	at scsibus? target ? lun ?	# SCSI scanners
    186 #uk*	at scsibus? target ? lun ?	# SCSI unknown
    187 
    188 fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    189 #fdc1	at isa? port 0x370 irq ? drq ?
    190 fd*	at fdc? drive ?
    191 
    192 #mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
    193 
    194 wdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
    195 wdc1	at isa? port 0x170 irq 15
    196 wd*	at wdc? drive ?
    197 
    198 # note: the wt driver conflicts unpleasantly with ed devices at the
    199 # same I/O address. The probe reprograms their eeproms. Don't
    200 # uncomment it unless you are actually using it.
    201 #wt0	at isa? port 0x300 irq 5 drq 1	# Archive and Wangtek QIC tape drives
    202 
    203 ed0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC, 3C503, and NE[12]000
    204 ed1	at isa? port 0x250 iomem 0xd8000 irq 9	#   ethernet cards
    205 ed2	at isa? port 0x300 iomem 0xcc000 irq 10
    206 #eg0	at isa? ...				# 3C505 ethernet cards
    207 el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
    208 ep0	at isa? port ? irq ?			# 3C509 ethernet cards
    209 #ep*	at isapnp?
    210 ie0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN and 3C507
    211 ie1	at isa? port 0x300 irq 10		# EtherExpress
    212 #le0	at isa? port 0x320 irq 10 drq 7		# IsoLan, NE2100, and DEPCA
    213 lc0	at isa? port ? iomem ? irq ?		# DEC EtherWORKS III (LEMAC)
    214 ep*	at eisa? slot ?				# 3C579 ethernet cards
    215 fea*	at eisa? slot ?				# DEC DEFEA FDDI cards
    216 le*	at pci? dev ? function ?		# PCnet-PCI based ethernet cards
    217 de*	at pci? dev ? function ?		# DC21X4X-based ethernet cards
    218 ep*	at pci? dev ? function ?		# 3C59x/3C90x ethernet cards
    219 fpa*	at pci? dev ? function ?		# DEC DEFPA FDDI cards
    220 fxp*	at pci? dev ? function ?		# Intel EEPRO 10/100B
    221 
    222 #pss0	at isa? port 0x220 irq 7 drq 6  # Personal Sound System
    223 #sp0	at pss0 port 0x530 irq 10 drq 0	# 	sound port driver
    224 #audio*	at sp0
    225 
    226 #sb0	at isa? port 0x220 irq 7 drq 1	# SoundBlaster
    227 #sb*	at isapnp?
    228 #audio*	at sb?
    229 #wss0	at isa? port 0x530 irq 10 drq 0	# Windows Sound System
    230 #audio*	at wss0
    231 #pas0	at isa? port 0x220 irq 7 drq 1	# ProAudio Spectrum
    232 #audio*	at pas0
    233 #gus0	at isa? port 0x220 irq 7 drq 1 flags 6 # Gravis Ultra Sound (flags is record drq for full-duplex)
    234 #audio*	at gus0
    235 #spkr0	at pckbd? port 0x61
    236 
    237 # Joystick driver. Probe is a little strange; add only if you have one.
    238 #joy0	at isa? port 0x201
    239 #joy*	at isapnp?
    240 
    241 # Planetconnect Satellite receiver driver.
    242 #satlink0 at isa? port 0x300 drq 1
    243 
    244 include	"arch/i386/conf/GENERIC.local"
    245 
    246 # memory-disk (root for install floppy)
    247 pseudo-device	md	1		# memory-disk
    248 
    249 pseudo-device	loop	1		# network loopback
    250 #pseudo-device	bpfilter 8		# packet filter
    251 pseudo-device	sl	2		# CSLIP
    252 #pseudo-device	ppp	2		# PPP
    253 #pseudo-device	tun	2		# network tunneling over tty
    254 #pseudo-device	ipfilter		# IP filter
    255 
    256 pseudo-device	pty	64		# pseudo-terminals
    257 #pseudo-device	tb	1		# tablet line discipline
    258 #pseudo-device	vnd	4		# paging to files
    259 #pseudo-device	ccd	4		# concatenated disk devices
    260