Home | History | Annotate | Line # | Download | only in conf
GENERICSBC revision 1.1
      1  1.1  toddpw #	$NetBSD: GENERICSBC,v 1.1 2000/12/07 10:57:17 toddpw Exp $
      2  1.1  toddpw #
      3  1.1  toddpw # GENERIC
      4  1.1  toddpw 
      5  1.1  toddpw include	"arch/mac68k/conf/std.mac68k"
      6  1.1  toddpw 
      7  1.1  toddpw #ident 		"GENERIC-$Revision: 1.1 $"
      8  1.1  toddpw 
      9  1.1  toddpw maxusers	16		# estimated number of users
     10  1.1  toddpw 
     11  1.1  toddpw # CPU support.  At least one is REQUIRED.
     12  1.1  toddpw options 	M68040
     13  1.1  toddpw options 	M68030
     14  1.1  toddpw options 	M68020		# Note:  must have 68851 PMMU
     15  1.1  toddpw 
     16  1.1  toddpw # CPU-related options.
     17  1.1  toddpw options 	FPSP
     18  1.1  toddpw options 	FPU_EMULATE
     19  1.1  toddpw 
     20  1.1  toddpw # Standard system options
     21  1.1  toddpw 
     22  1.1  toddpw options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     23  1.1  toddpw options 	INSECURE	# disable kernel security levels
     24  1.1  toddpw 
     25  1.1  toddpw options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     26  1.1  toddpw #options 	NTP		# NTP phase/frequency locked loop
     27  1.1  toddpw 
     28  1.1  toddpw options 	KTRACE		# system call tracing via ktrace(1)
     29  1.1  toddpw 
     30  1.1  toddpw options 	SYSVMSG		# System V-like message queues
     31  1.1  toddpw options 	SYSVSEM		# System V-like semaphores
     32  1.1  toddpw options 	SYSVSHM		# System V-like memory sharing
     33  1.1  toddpw #options 	SHMMAXPGS=1024	# 1024 pages is the default
     34  1.1  toddpw 
     35  1.1  toddpw options 	LKM		# loadable kernel modules
     36  1.1  toddpw 
     37  1.1  toddpw # Diagnostic/debugging support options
     38  1.1  toddpw options 	DIAGNOSTIC	# cheap kernel consistency checks
     39  1.1  toddpw #options 	DEBUG		# expensive debugging checks/support
     40  1.1  toddpw options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     41  1.1  toddpw options 	DDB		# in-kernel debugger
     42  1.1  toddpw #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     43  1.1  toddpw #options 	KGDB		# remote debugger
     44  1.1  toddpw #options 	KGDBDEV=0xc01	# kgdb device number (dev_t)
     45  1.1  toddpw #options 	KGDBRATE=38400	# baud rate
     46  1.1  toddpw #makeoptions	DEBUG="-g"	# compile full symbol table
     47  1.1  toddpw 
     48  1.1  toddpw # Compatibility options
     49  1.1  toddpw #options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     50  1.1  toddpw #options 	COMPAT_09	# NetBSD 0.9,
     51  1.1  toddpw options 	COMPAT_10	# NetBSD 1.0,
     52  1.1  toddpw options 	COMPAT_11	# NetBSD 1.1,
     53  1.1  toddpw options 	COMPAT_12	# NetBSD 1.2,
     54  1.1  toddpw options 	COMPAT_13	# NetBSD 1.3,
     55  1.1  toddpw options 	COMPAT_14	# NetBSD 1.4,
     56  1.1  toddpw options 	COMPAT_43	# and 4.3BSD
     57  1.1  toddpw 
     58  1.1  toddpw options 	COMPAT_SUNOS	# compatibility with SunOS 4.x binaries
     59  1.1  toddpw #options 	COMPAT_SVR4	# compatibility with SVR4 binaries
     60  1.1  toddpw #options 	COMPAT_M68K4K	# compatibility with NetBSD/m68k4k binaries
     61  1.1  toddpw #options 	COMPAT_LINUX	# compatibility with Linux/m68k binaries
     62  1.1  toddpw #options 	EXEC_ELF32	# 32-bit ELF executables (Linux, SVR4)
     63  1.1  toddpw 
     64  1.1  toddpw # File systems
     65  1.1  toddpw file-system 	FFS		# UFS
     66  1.1  toddpw file-system 	EXT2FS		# second extended file system (linux)
     67  1.1  toddpw file-system 	LFS		# log-structured file system
     68  1.1  toddpw file-system 	MFS		# memory file system
     69  1.1  toddpw file-system 	NFS		# Network File System client
     70  1.1  toddpw file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     71  1.1  toddpw file-system 	MSDOSFS		# MS-DOS file system
     72  1.1  toddpw file-system 	FDESC		# /dev/fd
     73  1.1  toddpw file-system 	KERNFS		# /kern
     74  1.1  toddpw file-system 	NULLFS		# loopback file system
     75  1.1  toddpw file-system 	OVERLAY		# overlay file system
     76  1.1  toddpw file-system 	PORTAL		# portal filesystem (still experimental)
     77  1.1  toddpw file-system 	PROCFS		# /proc
     78  1.1  toddpw file-system 	UMAPFS		# NULLFS + uid and gid remapping
     79  1.1  toddpw file-system 	UNION		# union file system
     80  1.1  toddpw file-system 	CODA		# Venus/Coda distributed file system
     81  1.1  toddpw 
     82  1.1  toddpw # File system options
     83  1.1  toddpw options 	QUOTA		# UFS quotas
     84  1.1  toddpw #options 	FFS_EI		# FFS Endian Independant support
     85  1.1  toddpw options 	SOFTDEP		# FFS soft updates support.
     86  1.1  toddpw options 	NFSSERVER	# Network File System server
     87  1.1  toddpw #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     88  1.1  toddpw 				# immutable) behave as system flags.
     89  1.1  toddpw 
     90  1.1  toddpw # Networking options
     91  1.1  toddpw options 	GATEWAY		# packet forwarding
     92  1.1  toddpw options 	INET		# IP + ICMP + TCP + UDP
     93  1.1  toddpw options 	INET6		# IPV6
     94  1.1  toddpw #options 	IPSEC		# IP security
     95  1.1  toddpw #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     96  1.1  toddpw #options 	IPSEC_DEBUG	# debug for IP security
     97  1.1  toddpw #options 	MROUTING	# IP multicast routing
     98  1.1  toddpw options 	NS		# XNS
     99  1.1  toddpw #options 	NSIP		# XNS tunneling over IP
    100  1.1  toddpw options 	ISO,TPIP	# OSI
    101  1.1  toddpw #options 	EON		# OSI tunneling over IP
    102  1.1  toddpw options 	CCITT,LLC,HDLC	# X.25
    103  1.1  toddpw options 	NETATALK	# AppleTalk networking protocols
    104  1.1  toddpw options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    105  1.1  toddpw options 	PPP_DEFLATE	# Deflate compression support for PPP
    106  1.1  toddpw options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    107  1.1  toddpw options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    108  1.1  toddpw 
    109  1.1  toddpw # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    110  1.1  toddpw #options 	TCP_COMPAT_42
    111  1.1  toddpw 
    112  1.1  toddpw # These options enable verbose messages for several subsystems.
    113  1.1  toddpw # Warning, these may compile large string tables into the kernel!
    114  1.1  toddpw options 	SCSIVERBOSE	# human readable SCSI error messages
    115  1.1  toddpw 
    116  1.1  toddpw # wscons options
    117  1.1  toddpw #options 	WSEMUL_SUN		# sun terminal emulation
    118  1.1  toddpw options 	WSEMUL_VT100		# VT100 / VT220 emulation
    119  1.1  toddpw options 	WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
    120  1.1  toddpw 
    121  1.1  toddpw # rcons options; note that 1-bit and 8-bit displays are supported by default.
    122  1.1  toddpw options 	RCONS_2BPP		# Support for 2-bit display
    123  1.1  toddpw options 	RCONS_4BPP		# Support for 4-bit display
    124  1.1  toddpw options 	RCONS_16BPP		# Support for 16-bit display
    125  1.1  toddpw 
    126  1.1  toddpw # Mac-specific options
    127  1.1  toddpw #options 	ALTXBUTTONS	# Map Opt-{1,2,3} to mouse buttons
    128  1.1  toddpw #options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
    129  1.1  toddpw options 	GRF_COMPAT	# Include grf compatibility code
    130  1.1  toddpw #options 	MRG_ADB		# Use ROM-based ADB driver
    131  1.1  toddpw options 	ZS_CONSOLE_ABORT
    132  1.1  toddpw 
    133  1.1  toddpw options 	NFS_BOOT_DHCP
    134  1.1  toddpw 
    135  1.1  toddpw # Kernel root file system and dump configuration.
    136  1.1  toddpw config		netbsd	root on ? type ?
    137  1.1  toddpw 
    138  1.1  toddpw #
    139  1.1  toddpw # Device configuration
    140  1.1  toddpw #
    141  1.1  toddpw 
    142  1.1  toddpw mainbus0 at root
    143  1.1  toddpw 
    144  1.1  toddpw fpu0 at mainbus?			# Floating-Point Coprocessor support
    145  1.1  toddpw 
    146  1.1  toddpw 
    147  1.1  toddpw # Basic Bus Support
    148  1.1  toddpw 
    149  1.1  toddpw # On-board I/O bus support
    150  1.1  toddpw obio0 at mainbus?
    151  1.1  toddpw 
    152  1.1  toddpw # NuBus support
    153  1.1  toddpw nubus0 at mainbus?
    154  1.1  toddpw 
    155  1.1  toddpw 
    156  1.1  toddpw # Console Devices
    157  1.1  toddpw 
    158  1.1  toddpw # Apple Desktop Bus interface
    159  1.1  toddpw adb0	at obio?
    160  1.1  toddpw aed*	at adb?				# ADB event device
    161  1.1  toddpw akbd*	at adb?				# ADB keyboard
    162  1.1  toddpw ams*	at adb?				# ADB mouse
    163  1.1  toddpw 
    164  1.1  toddpw # Basic frame buffer support
    165  1.1  toddpw intvid0	at obio?			# Internal video hardware
    166  1.1  toddpw macvid*	at nubus?			# NuBus video card
    167  1.1  toddpw 
    168  1.1  toddpw # Device-independent frame buffer interface
    169  1.1  toddpw macfb*	at intvid?
    170  1.1  toddpw macfb*	at macvid?
    171  1.1  toddpw 
    172  1.1  toddpw # Workstation Console devices
    173  1.1  toddpw wsdisplay* at macfb? console ?
    174  1.1  toddpw wskbd*	at akbd? console ?
    175  1.1  toddpw wsmouse* at ams?
    176  1.1  toddpw 
    177  1.1  toddpw 
    178  1.1  toddpw # Serial Devices
    179  1.1  toddpw 
    180  1.1  toddpw # On-board serial interface
    181  1.1  toddpw zsc0	at obio?
    182  1.1  toddpw zstty*	at zsc? channel ?
    183  1.1  toddpw 
    184  1.1  toddpw 
    185  1.1  toddpw # SCSI Controllers and Devices
    186  1.1  toddpw 
    187  1.1  toddpw # SCSI controllers
    188  1.1  toddpw # XXX - use only one of ncrscsi or sbc
    189  1.1  toddpw #ncrscsi0 at obio?			# SCSI NCR 5380
    190  1.1  toddpw sbc0	at obio? flags 0x1		# MI SCSI NCR 5380
    191  1.1  toddpw esp0	at obio?			# SCSI NCR 53C9x
    192  1.1  toddpw esp1	at obio?			# SCSI NCR 53C9x
    193  1.1  toddpw 
    194  1.1  toddpw # SCSI bus support
    195  1.1  toddpw scsibus* at scsi?
    196  1.1  toddpw 
    197  1.1  toddpw # SCSI devices
    198  1.1  toddpw sd*	at scsibus? target ? lun ?	# SCSI disk drives
    199  1.1  toddpw st*	at scsibus? target ? lun ?	# SCSI tape drives
    200  1.1  toddpw cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    201  1.1  toddpw ch*	at scsibus? target ? lun ?	# SCSI autochangers
    202  1.1  toddpw se*	at scsibus? target ? lun ?	# SCSI ethernet
    203  1.1  toddpw ss*	at scsibus? target ? lun ?	# SCSI scanners
    204  1.1  toddpw uk*	at scsibus? target ? lun ?	# SCSI unknown
    205  1.1  toddpw 
    206  1.1  toddpw 
    207  1.1  toddpw # Miscellaneous mass storage devices
    208  1.1  toddpw 
    209  1.1  toddpw # IWM floppy disk controller
    210  1.1  toddpw iwm0	at obio?			# Sony driver (800K GCR)
    211  1.1  toddpw fd*	at iwm? drive ?
    212  1.1  toddpw 
    213  1.1  toddpw 
    214  1.1  toddpw # Network Interfaces
    215  1.1  toddpw 
    216  1.1  toddpw # On-board Ethernet controllers
    217  1.1  toddpw sn*	at obio?			# SONIC-based (DP83932, DP83916)
    218  1.1  toddpw mc*	at obio?			# MACE-based
    219  1.1  toddpw 
    220  1.1  toddpw # NuBus Ethernet controllers
    221  1.1  toddpw ae*	at nubus?			# DP8390-based
    222  1.1  toddpw sn*	at nubus?			# SONIC-based (DP83932, DP83916)
    223  1.1  toddpw sm*	at nubus?			# SMC 91cxx-based
    224  1.1  toddpw 
    225  1.1  toddpw nsphy*	at mii? phy ?
    226  1.1  toddpw ukphy*	at mii? phy ?
    227  1.1  toddpw 
    228  1.1  toddpw # Audio Devices
    229  1.1  toddpw 
    230  1.1  toddpw # On-board audio hardware
    231  1.1  toddpw asc0	at obio?			# ASC/EASC audio
    232  1.1  toddpw 
    233  1.1  toddpw # Pseudo-Devices
    234  1.1  toddpw 
    235  1.1  toddpw # disk/mass storage pseudo-devices
    236  1.1  toddpw pseudo-device	ccd		4	# concatenated/striped disk devices
    237  1.1  toddpw #pseudo-device	raid		4	# RAIDframe disk driver
    238  1.1  toddpw #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    239  1.1  toddpw pseudo-device	md		1	# memory disk device (ramdisk)
    240  1.1  toddpw pseudo-device	vcoda		1	# Venus/Coda distributed file system
    241  1.1  toddpw pseudo-device	vnd		4	# disk-like interface to files
    242  1.1  toddpw 
    243  1.1  toddpw # network pseudo-devices
    244  1.1  toddpw pseudo-device	bpfilter	12	# Berkeley packet filter
    245  1.1  toddpw pseudo-device	ipfilter		# IP filter (firewall) and NAT
    246  1.1  toddpw pseudo-device	loop			# network loopback
    247  1.1  toddpw pseudo-device	ppp		2	# Point-to-Point Protocol
    248  1.1  toddpw pseudo-device	sl		2	# Serial Line IP
    249  1.1  toddpw #pseudo-device	strip		2	# Starmode Radio IP (Metricom)
    250  1.1  toddpw pseudo-device	tun		2	# network tunneling over tty
    251  1.1  toddpw #pseudo-device	gre		2	# generic L3 over IP tunnel
    252  1.1  toddpw pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    253  1.1  toddpw #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    254  1.1  toddpw #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    255  1.1  toddpw 
    256  1.1  toddpw # miscellaneous pseudo-devices
    257  1.1  toddpw pseudo-device	grf		2	# grf emulation for wscons
    258  1.1  toddpw pseudo-device	ite		1	# ite emulation for wscons
    259  1.1  toddpw pseudo-device	pty			# pseudo-terminals
    260  1.1  toddpw #pseudo-device	tb		1	# tablet line discipline
    261  1.1  toddpw 
    262  1.1  toddpw # random number generator pseudo-device
    263  1.1  toddpw pseudo-device	rnd			# /dev/random and in-kernel generator
    264  1.1  toddpw #options 	RND_COM			# use "com" randomness as well (BROKEN)
    265