1 # $NetBSD: WGT624V3,v 1.34 2024/01/29 18:27:12 christos Exp $ 2 3 include "arch/evbmips/conf/std.atheros" 4 5 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary 6 7 #ident "WGT624V3-$Revision: 1.34 $" 8 9 maxusers 32 10 11 makeoptions COPTS="-Os" # Optimise for space. Implies -O2 12 makeoptions ATH_MACHINE_HAL=ap51 13 14 options MIPS32 15 options NOFPU # No FPU 16 options FPEMUL # emulate FPU insn 17 options WISOC_AR5315 # WiSoC select 18 options COM_ARBUS_BAUD=9600 19 20 # Options for necessary to use MD 21 #options MEMORY_DISK_HOOKS 22 #options MEMORY_DISK_IS_ROOT # force root on memory disk 23 #options MEMORY_DISK_SERVER=0 # no userspace memory disk support 24 #options MEMORY_DISK_ROOT_SIZE=6144 # size of memory disk, in blocks 25 #options MEMORY_DISK_ROOT_SIZE=16384 # size of memory disk, in blocks 26 #options MEMORY_DISK_ROOT_SIZE=7300 27 28 # Size reduction options 29 options VNODE_OP_NOINLINE 30 options PIPE_SOCKETPAIR 31 options SOSEND_NO_LOAN 32 33 # Standard system options 34 #options KTRACE # system call tracing support 35 #options SYSVMSG # System V message queues 36 #options SYSVSEM # System V semaphores 37 #options SYSVSHM # System V shared memory 38 options NTP # network time protocol 39 40 # Debugging options 41 options DIAGNOSTIC # extra kernel sanity checking 42 #options DEBUG # extra kernel debugging support 43 #options USERCONF # userconf(4) support 44 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 45 options DDB # kernel dynamic debugger 46 options DDB_HISTORY_SIZE=100 # enable history editing in DDB 47 makeoptions DEBUG="-g" # compile full symbol table 48 makeoptions COPY_SYMTAB=1 # size for embedded symbol table 49 50 # Compatibility options 51 52 include "conf/compat_netbsd50.config" 53 54 #options EXEC_ECOFF # exec ECOFF binaries 55 #options COMPAT_ULTRIX # binary compatibility with Ultrix 56 57 # File systems 58 file-system FFS # Berkeley Fast Filesystem 59 file-system MFS # memory-based filesystem 60 #file-system EXT2FS # second extended file system (linux) 61 file-system NFS # Sun NFS-compatible filesystem client 62 #file-system KERNFS # kernel data-structure filesystem 63 #file-system NULLFS # NULL layered filesystem 64 #file-system OVERLAY # overlay file system 65 #file-system FDESC # user file descriptor filesystem 66 #file-system UMAPFS # uid/gid remapping filesystem 67 #file-system LFS # Log-based filesystem (still experimental) 68 #file-system PROCFS # /proc 69 #file-system CD9660 # ISO 9660 + Rock Ridge file system 70 #file-system UNION # union file system 71 #file-system MSDOSFS # MS-DOS FAT filesystem(s). 72 #file-system CODA # Coda File System; also needs vcoda (below) 73 #file-system PTYFS # /dev/pts/N support 74 75 # File system options 76 #options FFS_EI # FFS Endian Independent support 77 options FFS_NO_SNAPSHOT # No FFS snapshot support 78 #options QUOTA # legacy UFS quotas 79 #options QUOTA2 # new, in-filesystem UFS quotas 80 #options UFS_DIRHASH # UFS Large Directory Hashing 81 #options UFS_EXTATTR # Extended attribute support for UFS1 82 options WAPBL # File system journaling support 83 #options NFSSERVER # Network File System server 84 85 # Alternate buffer queue strategies for better responsiveness under high 86 # disk I/O load. 87 #options BUFQ_READPRIO 88 options BUFQ_PRIOCSCAN 89 90 # Networking options 91 #options GATEWAY # IP packet forwarding 92 options INET # Internet protocols 93 #options INET6 # IPV6 94 #options IPSEC # IP security 95 #options IPSEC_DEBUG # debug for IP security 96 #options MROUTING # packet forwarding of multicast packets 97 #options PIM # Protocol Independent Multicast 98 #options NETATALK # AppleTalk (over Ethernet) protocol 99 #options PPP_BSDCOMP # BSD-Compress compression support for PPP 100 #options PPP_DEFLATE # Deflate compression support for PPP 101 #options PPP_FILTER # Active filter support for PPP (requires bpf) 102 103 # JIT compiler for bpfilter 104 #options SLJIT 105 #options BPFJIT 106 107 # These options enable verbose messages for several subsystems. 108 # Warning, these may compile large string tables into the kernel! 109 options MIIVERBOSE # verbose PHY autoconfig messages 110 111 # Bitmask for enabling the PCI IDE channels in the southbridge. 112 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1. 113 # 114 # Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE 115 # channels for you (thus causing the NetBSD `pciide' driver to ignore them). 116 #options PCI_NETBSD_ENABLE_IDE=0x1 117 118 options NFS_BOOT_DHCP 119 options NFS_V2_ONLY 120 121 #config netbsd root on ? type ? 122 config netbsd root on ae0 type nfs 123 124 125 mainbus0 at root 126 cpu0 at mainbus? 127 wdog0 at mainbus? 128 arbus0 at mainbus? 129 130 com* at arbus? addr ? 131 ae* at arbus? addr ? 132 ath* at arbus? addr ? 133 athflash* at arbus? addr ? 134 argpio* at arbus? addr ? 135 gpio* at argpio? 136 137 # no RTC! so fake with a stub (required to prevent evbmips panic) 138 139 140 # MII/PHY support 141 mvphy* at mii? phy ? 142 143 144 # Pseudo-devices 145 146 # Disk/mass storage pseudo-devices 147 #pseudo-device ccd # concatenated disk devices 148 #pseudo-device raid # RAIDframe disk driver 149 #pseudo-device fss # file system snapshot device 150 #pseudo-device md # memory disk device (ramdisk) 151 #pseudo-device vnd # disk-like interface to files 152 153 # Network pseudo-devices 154 pseudo-device bpfilter # Berkeley packet filter 155 #pseudo-device npf # NPF packet filter 156 pseudo-device loop # network loopback 157 #pseudo-device ppp # Point-to-Point Protocol 158 #pseudo-device sl # Serial Line IP 159 #pseudo-device tun # network tunneling over tty 160 #pseudo-device tap # virtual Ethernet 161 #pseudo-device gre # generic L3 over IP tunnel 162 #pseudo-device ipip # RFC 2003 IP Encapsulation 163 #pseudo-device gif # RFC1933 tunnel 164 #pseudo-device faith # IPv[46] tcp relay translation 165 #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 166 #pseudo-device vlan # IEEE 802.1q encapsulation 167 #pseudo-device bridge # simple inter-network bridging 168 #pseudo-device vether # Virtual Ethernet for bridge 169 170 # Miscellaneous pseudo-devices 171 pseudo-device pty # pseudo-terminals 172 pseudo-device clockctl # user control of clock subsystem 173 pseudo-device ksyms # /dev/ksyms 174 175 # A pseudo device needed for Coda # also needs CODA (above) 176 #pseudo-device vcoda # coda minicache <-> venus comm. 177