Home | History | Annotate | Line # | Download | only in conf
INSTALLSBC revision 1.1.6.5
      1  1.1.6.5  jdolecek #	$NetBSD: INSTALLSBC,v 1.1.6.5 2002/09/06 08:36:52 jdolecek Exp $
      2      1.1    toddpw #
      3  1.1.6.1   thorpej # INSTALLSBC
      4      1.1    toddpw 
      5      1.1    toddpw include	"arch/mac68k/conf/std.mac68k"
      6      1.1    toddpw 
      7  1.1.6.4  jdolecek #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      8  1.1.6.4  jdolecek 
      9  1.1.6.1   thorpej makeoptions	COPTS="-Os"		# Optimise for space. Implies -O2
     10      1.1    toddpw 
     11      1.1    toddpw maxusers	8		# estimated number of users
     12      1.1    toddpw 
     13      1.1    toddpw # Enable the hooks used for initializing the ram-disk.
     14      1.1    toddpw options 	MEMORY_DISK_HOOKS
     15      1.1    toddpw options 	MEMORY_DISK_IS_ROOT 	# Force root on ram-disk
     16  1.1.6.4  jdolecek options 	MEMORY_DISK_ROOT_SIZE=5120	# 2.5 MB
     17      1.1    toddpw 
     18      1.1    toddpw # CPU support.  At least one is REQUIRED.
     19      1.1    toddpw options 	M68040
     20      1.1    toddpw options 	M68030
     21      1.1    toddpw options 	M68020		# Note:  must have 68851 PMMU
     22      1.1    toddpw 
     23      1.1    toddpw # CPU-related options.
     24      1.1    toddpw options 	FPSP
     25      1.1    toddpw options 	FPU_EMULATE
     26      1.1    toddpw 
     27      1.1    toddpw # Standard system options
     28      1.1    toddpw 
     29      1.1    toddpw options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     30      1.1    toddpw options 	INSECURE	# disable kernel security levels
     31      1.1    toddpw 
     32      1.1    toddpw options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     33  1.1.6.2  jdolecek 
     34  1.1.6.4  jdolecek #options 	USERCONF	# userconf(4) support
     35  1.1.6.5  jdolecek options		PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     36  1.1.6.5  jdolecek options 	MALLOC_NOINLINE		# Not inlining MALLOC saves memory
     37      1.1    toddpw 
     38      1.1    toddpw # Diagnostic/debugging support options - XXX remove these at some point
     39      1.1    toddpw options 	DIAGNOSTIC	# cheap kernel consistency checks
     40      1.1    toddpw options 	DDB		# in-kernel debugger
     41      1.1    toddpw #options 	ADB_DEBUG	# ADB debugging
     42      1.1    toddpw 
     43      1.1    toddpw # Compatibility options
     44      1.1    toddpw options 	COMPAT_10	# NetBSD 1.0,
     45      1.1    toddpw options 	COMPAT_11	# NetBSD 1.1,
     46      1.1    toddpw options 	COMPAT_12	# NetBSD 1.2,
     47      1.1    toddpw options 	COMPAT_13	# NetBSD 1.3,
     48      1.1    toddpw options 	COMPAT_14	# NetBSD 1.4,
     49      1.1    toddpw options 	COMPAT_43	# and 4.3BSD
     50      1.1    toddpw 
     51      1.1    toddpw # File systems
     52      1.1    toddpw file-system 	FFS		# UFS
     53      1.1    toddpw file-system 	NFS		# Network File System client
     54      1.1    toddpw file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     55      1.1    toddpw file-system 	MSDOSFS		# MS-DOS file system
     56      1.1    toddpw file-system 	KERNFS		# /kern
     57      1.1    toddpw 
     58      1.1    toddpw # Filesystem options
     59      1.1    toddpw #options 	NFS_V2_ONLY	# Exclude NFS3 and NQNFS code to save space
     60  1.1.6.5  jdolecek options 	VNODE_OP_NOINLINE	# Not inlining vnode op calls saves mem
     61      1.1    toddpw 
     62      1.1    toddpw # Networking options
     63      1.1    toddpw options 	INET		# IP + ICMP + TCP + UDP
     64      1.1    toddpw 
     65      1.1    toddpw # These options enable verbose messages for several subsystems.
     66      1.1    toddpw # Warning, these may compile large string tables into the kernel!
     67      1.1    toddpw options 	SCSIVERBOSE	# human readable SCSI error messages
     68      1.1    toddpw 
     69      1.1    toddpw # wscons options
     70      1.1    toddpw #options 	WSEMUL_SUN		# sun terminal emulation
     71      1.1    toddpw options 	WSEMUL_VT100		# VT100 / VT220 emulation
     72      1.1    toddpw options 	WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
     73      1.1    toddpw 
     74      1.1    toddpw # rcons options; note that 1-bit and 8-bit displays are supported by default.
     75      1.1    toddpw options 	RCONS_2BPP		# Support for 2-bit display
     76      1.1    toddpw options 	RCONS_4BPP		# Support for 4-bit display
     77      1.1    toddpw options 	RCONS_16BPP		# Support for 16-bit display
     78      1.1    toddpw 
     79      1.1    toddpw # Mac-specific options
     80      1.1    toddpw #options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
     81      1.1    toddpw #options 	MRG_ADB		# Use ROM-based ADB driver
     82      1.1    toddpw options 	ZS_CONSOLE_ABORT
     83      1.1    toddpw 
     84      1.1    toddpw options 	NFS_BOOT_DHCP
     85      1.1    toddpw 
     86      1.1    toddpw # Kernel root file system and dump configuration.
     87      1.1    toddpw config		netbsd	root on ? type ?
     88      1.1    toddpw 
     89      1.1    toddpw #
     90      1.1    toddpw # Device configuration
     91      1.1    toddpw #
     92      1.1    toddpw 
     93      1.1    toddpw mainbus0 at root
     94      1.1    toddpw 
     95      1.1    toddpw fpu0 at mainbus?			# Floating-Point Coprocessor support
     96      1.1    toddpw 
     97      1.1    toddpw 
     98      1.1    toddpw # Basic Bus Support
     99      1.1    toddpw 
    100      1.1    toddpw # On-board I/O bus support
    101      1.1    toddpw obio0 at mainbus?
    102      1.1    toddpw 
    103      1.1    toddpw # NuBus support
    104      1.1    toddpw nubus0 at mainbus?
    105      1.1    toddpw 
    106      1.1    toddpw 
    107      1.1    toddpw # Console Devices
    108      1.1    toddpw 
    109      1.1    toddpw # Apple Desktop Bus interface
    110      1.1    toddpw adb0	at obio?
    111      1.1    toddpw aed*	at adb?				# ADB event device
    112      1.1    toddpw akbd*	at adb?				# ADB keyboard
    113      1.1    toddpw ams*	at adb?				# ADB mouse
    114      1.1    toddpw 
    115      1.1    toddpw # Basic frame buffer support
    116      1.1    toddpw intvid0	at obio?			# Internal video hardware
    117      1.1    toddpw macvid*	at nubus?			# NuBus video card
    118      1.1    toddpw 
    119      1.1    toddpw # Device-independent frame buffer interface
    120      1.1    toddpw macfb*	at intvid?
    121      1.1    toddpw macfb*	at macvid?
    122      1.1    toddpw 
    123      1.1    toddpw # Workstation Console devices
    124      1.1    toddpw wsdisplay0 at macfb? console ?
    125      1.1    toddpw wskbd0	at akbd? console ?
    126      1.1    toddpw wsmouse0 at ams?
    127      1.1    toddpw 
    128      1.1    toddpw 
    129      1.1    toddpw # Serial Devices
    130      1.1    toddpw 
    131      1.1    toddpw # On-board serial interface
    132      1.1    toddpw zsc0	at obio?
    133      1.1    toddpw zstty*	at zsc? channel ?
    134      1.1    toddpw 
    135      1.1    toddpw 
    136      1.1    toddpw # SCSI Controllers and Devices
    137      1.1    toddpw 
    138      1.1    toddpw # SCSI controllers
    139      1.1    toddpw # XXX - use only one of ncrscsi or sbc
    140      1.1    toddpw #ncrscsi0 at obio?			# SCSI NCR 5380
    141      1.1    toddpw sbc0	at obio? flags 0x1		# MI SCSI NCR 5380
    142      1.1    toddpw esp0	at obio?			# SCSI NCR 53C9x
    143      1.1    toddpw esp1	at obio?			# SCSI NCR 53C9x
    144      1.1    toddpw 
    145      1.1    toddpw # SCSI bus support
    146      1.1    toddpw scsibus* at scsi?
    147      1.1    toddpw 
    148      1.1    toddpw # SCSI devices
    149      1.1    toddpw sd*	at scsibus? target ? lun ?	# SCSI disk drives
    150      1.1    toddpw cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    151      1.1    toddpw st*	at scsibus? target ? lun ?	# SCSI tape drives
    152  1.1.6.4  jdolecek 
    153  1.1.6.4  jdolecek # IDE controller and devices
    154  1.1.6.4  jdolecek wdc*	at obio? flags 0x1000
    155  1.1.6.4  jdolecek wd*	at wdc? channel ? drive ?
    156      1.1    toddpw 
    157      1.1    toddpw 
    158      1.1    toddpw # Miscellaneous mass storage devices
    159      1.1    toddpw 
    160      1.1    toddpw # IWM floppy disk controller
    161      1.1    toddpw iwm0	at obio?			# Sony driver (800K GCR)
    162      1.1    toddpw fd*	at iwm? drive ?
    163      1.1    toddpw 
    164      1.1    toddpw 
    165      1.1    toddpw # Network Interfaces
    166      1.1    toddpw 
    167      1.1    toddpw # On-board Ethernet controllers
    168      1.1    toddpw sn*	at obio?			# SONIC-based (DP83932, DP83916)
    169      1.1    toddpw mc*	at obio?			# MACE-based
    170      1.1    toddpw 
    171      1.1    toddpw # NuBus Ethernet controllers
    172      1.1    toddpw ae*	at nubus?			# DP8390-based
    173      1.1    toddpw sn*	at nubus?			# SONIC-based (DP83932, DP83916)
    174      1.1    toddpw sm*	at nubus?			# SMC-based
    175  1.1.6.5  jdolecek netdock*	at nubus?		# Asante NetDock, Newer Ether MicroDock
    176      1.1    toddpw 
    177      1.1    toddpw nsphy*	at mii? phy ?
    178      1.1    toddpw ukphy*	at mii? phy ?
    179      1.1    toddpw 
    180      1.1    toddpw # Audio Devices
    181      1.1    toddpw 
    182      1.1    toddpw # On-board audio hardware
    183      1.1    toddpw asc0	at obio?			# ASC/EASC audio
    184      1.1    toddpw 
    185      1.1    toddpw # Pseudo-Devices
    186      1.1    toddpw 
    187      1.1    toddpw # disk/mass storage pseudo-devices
    188      1.1    toddpw pseudo-device	md		1	# memory disk device (ramdisk)
    189      1.1    toddpw 
    190      1.1    toddpw # network pseudo-devices
    191      1.1    toddpw pseudo-device	loop 		1 	# network loopback
    192      1.1    toddpw pseudo-device	ppp		1 	# Point-to-Point Protocol
    193      1.1    toddpw pseudo-device	sl		1 	# Serial Line IP
    194      1.1    toddpw 
    195      1.1    toddpw # miscellaneous pseudo-devices
    196  1.1.6.5  jdolecek pseudo-device	bpfilter	8	# Berkeley packet filter
    197      1.1    toddpw pseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
    198