Home | History | Annotate | Line # | Download | only in conf
MALTA revision 1.85.8.2
      1 #	$NetBSD: MALTA,v 1.85.8.2 2019/01/07 13:46:57 martin Exp $
      2 
      3 include 	"arch/evbmips/conf/std.malta"
      4 
      5 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      6 
      7 #ident 		"MALTA-$Revision: 1.85.8.2 $"
      8 
      9 maxusers	32
     10 
     11 options 	MIPS32
     12 options 	MIPS64
     13 
     14 options 	NOFPU		# No FPU
     15 options 	FPEMUL		# emulate FPU insn
     16 
     17 # Options for necessary to use MD
     18 # options 	MEMORY_DISK_HOOKS
     19 # options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     20 # options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     21 # options 	MEMORY_DISK_ROOT_SIZE=6144	# size of memory disk, in blocks
     22 #options 	MEMORY_DISK_ROOT_SIZE=16384	# size of memory disk, in blocks
     23 
     24 # Standard system options
     25 options 	KTRACE		# system call tracing support
     26 options 	SYSVMSG		# System V message queues
     27 options 	SYSVSEM		# System V semaphores
     28 options 	SYSVSHM		# System V shared memory
     29 options 	NTP		# network time protocol
     30 
     31 # Debugging options
     32 options 	DIAGNOSTIC	# extra kernel sanity checking
     33 options 	DEBUG		# extra kernel debugging support
     34 #options 	SYSCALL_DEBUG	# symbolic syscall names
     35 options 	USERCONF	# userconf(4) support
     36 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     37 options 	DDB		# kernel dynamic debugger
     38 options 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
     39 makeoptions 	DEBUG="-g"	# compile full symbol table
     40 makeoptions	COPY_SYMTAB=1	# size for embedded symbol table
     41 
     42 # Compatibility options
     43 #options 	COMPAT_43	# compatibility with 4.3BSD binaries
     44 #options 	COMPAT_09	# NetBSD 0.9,
     45 #options 	COMPAT_10	# NetBSD 1.0,
     46 #options 	COMPAT_11	# NetBSD 1.1,
     47 #options 	COMPAT_12	# NetBSD 1.2,
     48 #options 	COMPAT_13	# NetBSD 1.3,
     49 #options 	COMPAT_14	# NetBSD 1.4,
     50 #options 	COMPAT_15	# NetBSD 1.5,
     51 options 	COMPAT_16	# NetBSD 1.6,
     52 options 	COMPAT_20	# NetBSD 2.0,
     53 options 	COMPAT_30	# NetBSD 3.0,
     54 options 	COMPAT_40	# NetBSD 4.0,
     55 options 	COMPAT_50	# NetBSD 5.0,
     56 options 	COMPAT_60	# NetBSD 6.0, and
     57 options 	COMPAT_70	# NetBSD 7.0 binary compatibility.
     58 #options 	EXEC_ECOFF	# exec ECOFF binaries
     59 #options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
     60 options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     61 
     62 # File systems
     63 file-system	FFS		# Berkeley Fast Filesystem
     64 file-system	MFS		# memory-based filesystem
     65 #file-system 	EXT2FS		# second extended file system (linux)
     66 file-system	NFS		# Sun NFS-compatible filesystem client
     67 #file-system	KERNFS		# kernel data-structure filesystem
     68 #file-system	NULLFS		# NULL layered filesystem
     69 #file-system 	OVERLAY		# overlay file system
     70 #file-system	FDESC		# user file descriptor filesystem
     71 #file-system	UMAPFS		# uid/gid remapping filesystem
     72 #file-system	LFS		# Log-based filesystem (still experimental)
     73 #file-system	PROCFS		# /proc
     74 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     75 file-system	TMPFS		# Efficient memory file system
     76 #file-system	UNION		# union file system
     77 #file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
     78 #file-system 	CODA		# Coda File System; also needs vcoda (below)
     79 #file-system	PTYFS		# /dev/pts/N support
     80 
     81 # File system options
     82 #options 	NFSSERVER	# Sun NFS-compatible filesystem server
     83 #options 	QUOTA		# legacy UFS quotas
     84 #options 	QUOTA2		# new, in-filesystem UFS quotas
     85 options 	FFS_EI		# FFS Endian Independent support
     86 options 	WAPBL		# File system journaling support
     87 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     88 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     89 				# immutable) behave as system flags.
     90 
     91 # Alternate buffer queue strategies for better responsiveness under high
     92 # disk I/O load.
     93 #options 	BUFQ_READPRIO
     94 options 	BUFQ_PRIOCSCAN
     95 
     96 # Networking options
     97 #options 	GATEWAY		# IP packet forwarding
     98 options 	INET		# Internet protocols
     99 #options 	INET6		# IPV6
    100 #options 	IPSEC		# IP security
    101 #options 	IPSEC_DEBUG	# debug for IP security
    102 #options 	MROUTING	# packet forwarding of multicast packets
    103 #options 	PIM		# Protocol Independent Multicast
    104 #options 	NETATALK	# AppleTalk (over Ethernet) protocol
    105 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    106 #options 	PPP_DEFLATE	# Deflate compression support for PPP
    107 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    108 #options 	IPFILTER_LOG	# ipmon(8) log support
    109 #options 	IPFILTER_LOOKUP	# ippool(8) support
    110 #options 	IPFILTER_COMPAT # Compat for IP-Filter
    111 #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    112 
    113 # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    114 #options 	TCP_COMPAT_42
    115 
    116 # JIT compiler for bpfilter
    117 #options	SLJIT
    118 #options	BPFJIT
    119 
    120 # These options enable verbose messages for several subsystems.
    121 # Warning, these may compile large string tables into the kernel!
    122 #options 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
    123 options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    124 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    125 #options 	SCSIVERBOSE	# human readable SCSI error messages
    126 options 	MIIVERBOSE	# verbose PHY autoconfig messages
    127 
    128 # Bitmask for enabling the PCI IDE channels in the southbridge.
    129 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
    130 #
    131 # Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
    132 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
    133 options 	PCI_NETBSD_ENABLE_IDE=0x1
    134 
    135 options 	NFS_BOOT_DHCP
    136 
    137 config		netbsd	root on ? type ?
    138 
    139 
    140 mainbus0 	at root
    141 cpu0 		at mainbus?
    142 gt0		at mainbus?
    143 
    144 #com2		at mainbus?	# CBUS UART (ugh, 64 bit register spacing)
    145 
    146 pci*		at gt0
    147 pchb*		at pci? dev ? function ?
    148 pcib*		at pci? dev ? function ?
    149 
    150 # ISA bus support
    151 isa*		at pcib?
    152 
    153 # ISA devices
    154 mcclock*	at isa? port 0x70		# mc146818-compatible
    155 com0		at isa? port 0x3f8 irq 4	# standard serial ports
    156 com1		at isa? port 0x2f8 irq 3
    157 #fdc0		at isa? port 0x3f0 irq 6 drq 2	# floppy controller
    158 
    159 # Floppy drives
    160 #fd*		at fdc? drive ?
    161 
    162 # wscons
    163 #vga*		at pci? dev ? function ?
    164 #wsdisplay*	at vga? console ?
    165 #pckbc*		at isa?				# PC keyboard controller
    166 #pckbd*		at pckbc?			# PC keyboard (kbd port)
    167 #pms*		at pckbc?			# PS/2-style mouse (aux port)
    168 #wskbd*		at pckbd?
    169 #wsmouse*	at pms?
    170 
    171 # PCI SCSI controllers
    172 #adv*		at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA]
    173 #adw*		at pci? dev ? function ?	# AdvanSys 9xxUW SCSI
    174 #ahc*		at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    175 #bha*		at pci? dev ? function ?	# BusLogic 9xx SCSI
    176 #dpt*		at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    177 #isp*		at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FC
    178 #siop*		at pci? dev ? function ?	# NCR 53c8xx SCSI
    179 #pcscp*		at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    180 
    181 # SCSI bus support
    182 #scsibus* 	at adv?
    183 #scsibus* 	at adw?
    184 #scsibus* 	at ahc?
    185 #scsibus* 	at bha?
    186 #scsibus* 	at dpt?
    187 #scsibus* 	at isp?
    188 #scsibus* 	at siop?
    189 #scsibus* 	at pcscp?
    190 
    191 # SCSI devices
    192 #sd*		at scsibus? target ? lun ?	# SCSI disk drives
    193 #st*		at scsibus? target ? lun ?	# SCSI tape drives
    194 #cd*		at scsibus? target ? lun ?	# SCSI CD-ROM drives
    195 #ch*		at scsibus? target ? lun ?	# SCSI autochangers
    196 #ss*		at scsibus? target ? lun ?	# SCSI scanners
    197 #uk*		at scsibus? target ? lun ?	# SCSI unknown
    198 
    199 # IDE and related devices
    200 # PCI IDE controllers - see pciide(4) for supported hardware.
    201 # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    202 # how to set up DMA modes for this chip. This may work, or may cause
    203 # a machine hang with some controllers.
    204 pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    205 acardide*	at pci? dev ? function ?	# Acard IDE controllers
    206 aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
    207 artsata*	at pci? dev ? function ?	# Intel i31244 SATA controller
    208 cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
    209 cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
    210 hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    211 optiide* 	at pci? dev ? function ?	# Opti IDE controllers
    212 pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
    213 pdcsata* 	at pci? dev ? function ?	# Promise SATA150 controllers
    214 satalink*	at pci? dev ? function ?	# SiI SATALink controllers
    215 siside* 	at pci? dev ? function ?	# SiS IDE controllers
    216 slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
    217 viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    218 
    219 atabus* 	at ata? channel ?
    220 
    221 # IDE drives
    222 # Flags are used only with controllers that support DMA operations
    223 # and mode settings (e.g. some pciide controllers)
    224 # The lowest order four bits (rightmost digit) of the flags define the PIO
    225 # mode to use, the next set of four bits the DMA mode and the third set the
    226 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    227 # to use, and the last bit must be 1 for this setting to be used.
    228 # For DMA and UDMA, 0xf (1111) means 'disable'.
    229 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    230 # (0xc=1100, 0xa=1010, 0xf=1111)
    231 # 0x0000 means "use whatever the drive claims to support".
    232 wd* 		at atabus? drive ? flags 0x0000
    233 
    234 # PCI network interfaces
    235 ath*		at pci? dev ? function ?	# Atheros WLAN 
    236 #en*		at pci? dev ? function ?	# ENI/Adaptec ATM
    237 #ep*		at pci? dev ? function ?	# 3Com 3c59x
    238 #ex*		at pci? dev ? function ?	# 3Com 90x[B]
    239 #epic*		at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    240 #esh*		at pci? dev ? function ?	# Essential HIPPI card
    241 #fpa*		at pci? dev ? function ?	# DEC DEFPA FDDI
    242 #fxp*		at pci? dev ? function ?	# Intel EtherExpress PRO10+/100B
    243 #le*		at pci? dev ? function ?	# PCnet-PCI Ethernet
    244 pcn*		at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    245 options 	PCN_EVENT_COUNTERS
    246 #ne*		at pci? dev ? function ?	# NE2000-compatible Ethernet
    247 #ntwoc*		at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    248 sip*		at pci? dev ? function ?	# SiS 900 Ethernet
    249 options 	SIP_EVENT_COUNTERS
    250 #tl*		at pci? dev ? function ?	# ThunderLAN-based Ethernet
    251 #tlp*		at pci? dev ? function ?	# DECchip 21x4x and clones
    252 #vr*		at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    253 #lmc*		at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    254 #rtk*		at pci? dev ? function ?	# Realtek 8129/8139
    255 
    256 # MII/PHY support
    257 #acphy*		at mii? phy ?		# DAltima AC101 and AMD Am79c874 PHYs
    258 #amhphy* 	at mii? phy ?		# AMD 79c901 Ethernet PHYs
    259 #bmtphy* 	at mii? phy ?		# Broadcom BCM5201 and BCM5202 PHYs
    260 #brgphy* 	at mii? phy ?		# Broadcom BCM5400-family PHYs
    261 #dmphy*		at mii? phy ?		# Davicom DM9101 PHYs
    262 #exphy*		at mii? phy ?		# 3Com internal PHYs
    263 #glxtphy*	at mii? phy ?		# Level One LXT-1000 PHYs
    264 #gphyter*	at mii? phy ?		# NS83861 Gig-E PHY
    265 #icsphy* 	at mii? phy ?		# Integrated Circuit Systems ICS1890
    266 #inphy*		at mii? phy ?		# Intel 82555 PHYs
    267 #iophy*		at mii? phy ?		# Intel 82553 PHYs
    268 #lxtphy* 	at mii? phy ?		# Level One LXT-970 PHYs
    269 #makphy* 	at mii? phy ?		# Marvell Semiconductor 88E1000 PHYs
    270 #nsphy*		at mii? phy ?		# NS83840 PHYs
    271 nsphyter*	at mii? phy ?		# NS83843 PHYs
    272 #pnaphy* 	at mii? phy ?		# generic HomePNA PHYs
    273 #qsphy*		at mii? phy ?		# Quality Semiconductor QS6612 PHYs
    274 #sqphy*		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
    275 #tlphy*		at mii? phy ?		# ThunderLAN PHYs
    276 #tqphy*		at mii? phy ?		# TDK Semiconductor PHYs
    277 ukphy*		at mii? phy ?		# generic unknown PHYs
    278 
    279 
    280 # USB
    281 ohci*		at pci? dev ? function ?	# USB Open Host Controller
    282 uhci*		at pci? dev ? function ?	# USB Univ. Host Controller
    283 
    284 # USB bus support
    285 usb*		at uhci?
    286 usb*		at ohci?
    287 
    288 # USB Hubs
    289 uhub*		at usb?
    290 uhub*		at uhub? port ?
    291 
    292 # ....
    293 
    294 # USB Generic driver
    295 ugen*		at uhub? port ?
    296 
    297 # Audio Devices
    298 
    299 # PCI audio devices
    300 clct*		at pci? dev ? function ?	# Cirrus Logic CS4281
    301 
    302 # Audio support
    303 audio*		at clct?
    304 
    305 spkr*		at audio?			# PC speaker (synthesized)
    306 
    307 # Pseudo-devices
    308 
    309 # Disk/mass storage pseudo-devices
    310 #pseudo-device	ccd				# concatenated disk devices
    311 #pseudo-device	raid				# RAIDframe disk driver
    312 #options 	RAID_AUTOCONFIG			# auto-configuration of RAID
    313 #pseudo-device	fss				# file system snapshot device
    314 #pseudo-device	md				# memory disk device (ramdisk)
    315 pseudo-device	vnd				# disk-like interface to files
    316 
    317 # Network pseudo-devices
    318 pseudo-device	bpfilter			# Berkeley packet filter
    319 pseudo-device	ipfilter			# IP filter (firewall) and NAT
    320 pseudo-device	loop				# network loopback
    321 #pseudo-device	ppp				# Point-to-Point Protocol
    322 #pseudo-device	sl				# Serial Line IP
    323 #pseudo-device	strip				# Starmode Radio IP (Metricom)
    324 #pseudo-device	tun				# network tunneling over tty
    325 #pseudo-device	tap				# virtual Ethernet
    326 #pseudo-device	gre				# generic L3 over IP tunnel
    327 #pseudo-device	ipip				# RFC 2003 IP Encapsulation
    328 #pseudo-device	gif				# RFC1933 tunnel
    329 #pseudo-device	faith				# IPv[46] tcp relay translation
    330 #pseudo-device	stf				# 6to4 IPv6 over IPv4 encapsulation
    331 pseudo-device	vlan				# IEEE 802.1q encapsulation
    332 pseudo-device	bridge				# simple inter-network bridging
    333 
    334 # Miscellaneous pseudo-devices
    335 pseudo-device	pty				# pseudo-terminals
    336 #pseudo-device	sequencer			# MIDI sequencer
    337 pseudo-device	clockctl			# user control of clock subsystem
    338 pseudo-device	ksyms				# /dev/ksyms
    339 
    340 # A pseudo device needed for Coda		# also needs CODA (above)
    341 #pseudo-device	vcoda				# coda minicache <-> venus comm.
    342