1 # 2 # $NetBSD: GENERIC.in,v 1.23 2002/09/18 02:19:19 lukem Exp $ 3 # 4 # Generic atari 5 # 6 7 #if defined(TT030_KERNEL) || defined(FALCON_KERNEL) 8 include "arch/atari/conf/std.atari" 9 #elif defined (HADES_KERNEL) 10 include "arch/atari/conf/std.hades" 11 #elif defined (MILAN_KERNEL) 12 include "arch/atari/conf/std.milan" 13 #endif 14 15 options INCLUDE_CONFIG_FILE # embed config file in kernel binary 16 17 # 18 # Add support for about 16 users. This variable is used to size 19 # various kernel structures. 20 # 21 maxusers 16 22 23 options HZ=64 # Set the clock-rate (48/64/96) 24 25 #if !defined(INSTALL_KERNEL) || defined(INSTALLX_KERNEL) 26 # 27 # X11R6 related options 28 # 29 options UCONSOLE # Allow xconsole to work 30 #endif 31 32 # Standard system options 33 options INSECURE # disable kernel security levels 34 #options NTP # NTP phase/frequency locked loop 35 36 # 37 # (Co)processors this kernel should support 38 # 39 #if defined(TT030_KERNEL) || defined(FALCON_KERNEL) 40 options M68030 # support for 030 41 options FPU_EMULATE # Support for MC68881/MC68882 emulator 42 #if !defined(INSTALL_KERNEL) 43 options M68040 # support for 040 44 options FPSP # 68040 Floatingpoint support 45 #endif 46 #else /* for the Hades & Milan: */ 47 options M68040 # support for 040 48 options M68060 # support for 060 49 options FPSP # 68040 Floatingpoint support 50 options M060SP # MC68060 software support (Required for 060) 51 #endif 52 53 # 54 # Networking options 55 # 56 options INET # IP + ICMP + TCP + UDP 57 58 #ifndef INSTALL_KERNEL 59 options INET6 # IPV6 60 #options IPSEC # IP security 61 #options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 62 #options IPSEC_DEBUG # debug for IP security 63 #options GATEWAY # packet forwarding 64 #options MROUTING # IP multicast routing 65 options NS # XNS 66 #options NSIP # XNS tunneling over IP 67 options ISO,TPIP # OSI 68 #options EON # OSI tunneling over IP 69 options CCITT,LLC,HDLC # X.25 70 #ifndef NO_PHYS_NETWORK 71 options NETATALK # AppleTalk networking protocols 72 #endif 73 #endif 74 75 options PPP_BSDCOMP # BSD-Compress compression support for PPP 76 options PPP_DEFLATE # Deflate compression support for PPP 77 options PPP_FILTER # Active filter support for PPP (requires bpf) 78 79 #ifndef INSTALL_KERNEL 80 options PFIL_HOOKS # pfil(9) packet filter hooks 81 options IPFILTER_LOG # ipmon(8) log support 82 #options IPFILTER_DEFAULT_BLOCK # block packages by default 83 84 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 85 #endif 86 87 # File systems 88 file-system FFS # Berkeley fast file system 89 file-system MFS # Memory based filesystem 90 file-system KERNFS # Kernel parameter filesystem 91 file-system MSDOSFS # MSDOS filesystem 92 file-system CD9660 # ISO 9660 filesystem with Rock Ridge 93 94 #ifndef INSTALL_KERNEL 95 file-system NFS # Network File System client side code 96 file-system PROCFS # Process filesystem 97 file-system FDESC # /dev/fd 98 file-system NULLFS # Loopback filesystem 99 file-system OVERLAY # overlay filesystem 100 file-system UNION # union file system 101 file-system UMAPFS # null file system (with uid & gid remapping) 102 file-system PORTAL # portal file system 103 file-system EXT2FS # second extended file system (linux) 104 file-system LFS # log-structured file system 105 #endif 106 107 #ifndef INSTALL_KERNEL 108 # File system options 109 options QUOTA # Disk quotas for local disks 110 #options FFS_EI # FFS Endian Independant support 111 options SOFTDEP # FFS soft updates support. 112 options NFSSERVER # Network File System server side code 113 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 114 # immutable) behave as system flags. 115 #endif 116 117 # 118 # Misc. debugging options 119 # 120 options PANICWAIT # Require keystroke to dump/reboot 121 options DDB # Kernel debugger 122 #ifndef INSTALL_KERNEL 123 options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 124 #options DEBUG # expensive debugging checks/support 125 #endif 126 127 # 128 # Compatibility options for various existing systems 129 # 130 options COMPAT_43 # 4.3 BSD compatible system calls (required) 131 options COMPAT_10 # Compatibility to NetBSD1.0 132 options COMPAT_11 # Compatibility to NetBSD1.1 133 options COMPAT_12 # Compatibility to NetBSD1.2 134 options COMPAT_13 # Compatibility to NetBSD1.3 135 options COMPAT_14 # Compatibility to NetBSD1.4 136 #ifndef INSTALL_KERNEL 137 #options COMPAT_09 # has no meaning on the atari 138 #options COMPAT_SUNOS # Support to run Sun-3 executables 139 #options COMPAT_SVR4 # Support to run SVR4 executables 140 #options COMPAT_LINUX # Support to run Linux/m68k executables 141 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 142 #endif 143 options COMPAT_AOUT_M68K # Compatibility to a.out executables 144 options EXEC_AOUT # a.out format executables 145 146 #ifndef INSTALL_KERNEL 147 # 148 # Support for System V IPC facilities. 149 # 150 options SYSVSHM # System V shared memory 151 options SYSVMSG # System V messages 152 options SYSVSEM # System V semaphores 153 #options SEMMNI=10 # number of semaphore identifiers 154 #options SEMUME=10 # max number of undo entries per proc. 155 #options SEMMNU=30 # number of undo structures in system 156 #endif 157 158 #ifndef INSTALL_KERNEL 159 # 160 # Support for various kernel options 161 # 162 options KTRACE # Add kernel tracing system call 163 options DIAGNOSTIC # Add additional error checking code 164 options USERCONF # userconf(4) support 165 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 166 #else /* INSTALL_KERNEL */ 167 options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 168 #endif 169 170 # These options enable verbose messages for several subsystems. 171 # Warning, these may compile large string tables into the kernel! 172 #ifndef INSTALL_KERNEL 173 options SCSIVERBOSE # human readable SCSI error messages 174 #endif 175 #if defined(HADES_KERNEL) || defined(MILAN_KERNEL) 176 options MIIVERBOSE # verbose PHY autoconfig messages 177 options PCIVERBOSE # verbose PCI device autoconfig messages 178 #options PCI_CONFIG_DUMP # verbosely dump PCI config space 179 #endif 180 181 # 182 # Atari specific options 183 # 184 #options KFONT_8x8 # Use 8x8 font instead of 8x16 185 options ST_POOL_SIZE=22 # smallest that allows TT-HIGH 186 #if defined(TT030_KERNEL) || defined(HADES_KERNEL) 187 options TT_SCSI # SCSI-support for TT 188 options TT_VIDEO # Graphics support for TT 189 #endif 190 #ifdef FALCON_KERNEL 191 options FALCON_SCSI # SCSI-support for Falcon 192 options FALCON_VIDEO # Graphics support for FALCON 193 #endif 194 options MEMORY_DISK_HOOKS # Boot RAM-disk 195 options DISKLABEL_NBDA # NetBSD disklabels (required) 196 options DISKLABEL_AHDI # NetBSD/AHDI disklabels 197 #ifndef INSTALL_KERNEL 198 options SERCONSOLE # modem1 console support 199 options RELOC_KERNEL # TT/Falcon: relocate kernel to TT-RAM 200 options MSGBUFSIZE=32768 # size of kernel msg. buffer 201 #options STATCLOCK # Separate {stat,prof}clock 202 #endif 203 204 #ifndef INSTALL_KERNEL 205 # Try linked commands on all targets 206 options TRY_SCSI_LINKED_COMMANDS=0x7f 207 #endif 208 209 # 210 # Build one kernel that can boot from any disk. 211 # 212 config netbsd root on ? type ? 213 214 pseudo-device sl # Slip 215 pseudo-device ppp # ppp 216 #ifndef NO_PHYS_NETWORK 217 pseudo-device pppoe # PPP over Ethernet (RFC 2516) 218 #endif 219 pseudo-device pty # pseudo-terminals 220 pseudo-device loop # Loopback network 221 pseudo-device vnd 3 # 3 pseudo disks (see vnconfig) 222 pseudo-device md 2 # Boot memory disk 223 224 #ifndef INSTALL_KERNEL 225 pseudo-device bpfilter 2 # berkeley packet filters 226 pseudo-device tun 2 # network tunnel 227 #pseudo-device gre 2 # generic L3 over IP tunnel 228 pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 229 #pseudo-device faith 1 # IPv[46] tcp relay translation i/f 230 #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 231 #ifndef NO_PHYS_NETWORK 232 pseudo-device vlan # IEEE 802.1q encapsulation 233 pseudo-device bridge # simple inter-network bridging 234 #endif 235 pseudo-device ccd 4 # concatenating disk driver 236 pseudo-device raid 8 # RAIDframe disk driver 237 options RAID_AUTOCONFIG # auto-configuration of RAID components 238 # Options to enable various other RAIDframe RAID types. 239 # options RF_INCLUDE_EVENODD=1 240 # options RF_INCLUDE_RAID5_RS=1 241 # options RF_INCLUDE_PARITYLOGGING=1 242 # options RF_INCLUDE_CHAINDECLUSTER=1 243 # options RF_INCLUDE_INTERDECLUSTER=1 244 # options RF_INCLUDE_PARITY_DECLUSTERING=1 245 # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 246 pseudo-device ipfilter # IP filtering device 247 pseudo-device rnd # /dev/random and in-kernel generator 248 pseudo-device clockctl # user control of clock subsystem 249 #endif 250 251 #if defined(HADES_KERNEL) || defined(MILAN_KERNEL) 252 253 # MII/PHY support 254 exphy* at mii? phy ? # 3Com internal PHYs 255 inphy* at mii? phy ? # Intel 82555 PHYs 256 iophy* at mii? phy ? # Intel 82553 PHYs 257 ukphy* at mii? phy ? # generic unknown PHYs 258 259 # PCI network interfaces 260 # If unsure, check the port-atari page for tested cards. 261 ep* at pci? dev ? function ? # 3Com 3c59x 262 fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 263 264 265 # 266 # This is the only tested audio card at the moment. 267 # 268 eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 269 audio* at eso? 270 271 #endif /* defined(HADES_KERNEL) || defined(MILAN_KERNEL) */ 272 273 # 274 # Hardware options for GENERIC are in the various machine type specific files 275 # 276