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