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