1 1.3 gdamore # $NetBSD: AP30,v 1.3 2006/07/07 22:03:19 gdamore Exp $ 2 1.1 gdamore 3 1.1 gdamore include "arch/evbmips/conf/std.atheros" 4 1.1 gdamore 5 1.1 gdamore #options INCLUDE_CONFIG_FILE # embed config file in kernel binary 6 1.1 gdamore 7 1.3 gdamore #ident "AP30-$Revision: 1.3 $" 8 1.1 gdamore 9 1.1 gdamore maxusers 32 10 1.1 gdamore 11 1.1 gdamore makeoptions COPTS="-Os" # Optimise for space. Implies -O2 12 1.1 gdamore makeoptions ATH_MACHINE_HAL=ap30 13 1.1 gdamore 14 1.1 gdamore options MIPS32 15 1.1 gdamore options NOFPU # No FPU 16 1.1 gdamore options SOFTFLOAT # emulate FPU insn 17 1.1 gdamore 18 1.1 gdamore # Options for necessary to use MD 19 1.1 gdamore #options MEMORY_DISK_HOOKS 20 1.1 gdamore #options MEMORY_DISK_IS_ROOT # force root on memory disk 21 1.1 gdamore #options MEMORY_DISK_SERVER=0 # no userspace memory disk support 22 1.1 gdamore #options MEMORY_DISK_ROOT_SIZE=6144 # size of memory disk, in blocks 23 1.1 gdamore #options MEMORY_DISK_ROOT_SIZE=16384 # size of memory disk, in blocks 24 1.1 gdamore #options MEMORY_DISK_ROOT_SIZE=7300 25 1.1 gdamore 26 1.1 gdamore # Size reduction options 27 1.1 gdamore options MALLOC_NOINLINE 28 1.1 gdamore options VNODE_OP_NOINLINE 29 1.1 gdamore options PIPE_SOCKETPAIR 30 1.1 gdamore options SOSEND_NO_LOAN 31 1.1 gdamore 32 1.1 gdamore # Standard system options 33 1.1 gdamore #options KTRACE # system call tracing support 34 1.1 gdamore #options SYSVMSG # System V message queues 35 1.1 gdamore #options SYSVSEM # System V semaphores 36 1.1 gdamore #options SYSVSHM # System V shared memory 37 1.1 gdamore #options SHMMAXPGS=1024 # 1024 pages is the default 38 1.1 gdamore #options LKM # loadable kernel modules 39 1.1 gdamore options NTP # network time protocol 40 1.1 gdamore 41 1.1 gdamore # Debugging options 42 1.1 gdamore options DIAGNOSTIC # extra kernel sanity checking 43 1.1 gdamore #options DEBUG # extra kernel debugging support 44 1.1 gdamore #options KMEMSTATS # kernel memory statistics (vmstat -m) 45 1.1 gdamore #options USERCONF # userconf(4) support 46 1.1 gdamore #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 47 1.1 gdamore options DDB # kernel dynamic debugger 48 1.1 gdamore options DDB_HISTORY_SIZE=100 # enable history editing in DDB 49 1.1 gdamore makeoptions DEBUG="-g" # compile full symbol table 50 1.1 gdamore options SYMTAB_SPACE=150000 # size for embedded symbol table 51 1.1 gdamore 52 1.1 gdamore # Compatibility options 53 1.1 gdamore #options COMPAT_43 # compatibility with 4.3BSD binaries 54 1.1 gdamore #options COMPAT_09 # NetBSD 0.9 binary compatibility 55 1.1 gdamore #options COMPAT_10 # NetBSD 1.0 binary compatibility 56 1.1 gdamore #options COMPAT_11 # NetBSD 1.1 binary compatibility 57 1.1 gdamore #options COMPAT_12 # NetBSD 1.2 binary compatibility 58 1.1 gdamore #options COMPAT_13 # NetBSD 1.3 binary compatibility 59 1.1 gdamore #options COMPAT_14 # NetBSD 1.4 binary compatibility 60 1.1 gdamore #options COMPAT_16 # NetBSD 1.6 binary compatibility 61 1.1 gdamore #options COMPAT_20 # NetBSD 2.0 binary compatibility 62 1.1 gdamore options COMPAT_30 # NetBSD 3.0 compatibility. 63 1.1 gdamore #options EXEC_ECOFF # exec ECOFF binaries 64 1.1 gdamore #options COMPAT_ULTRIX # binary compatibility with Ultrix 65 1.1 gdamore #options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 66 1.1 gdamore 67 1.1 gdamore # File systems 68 1.1 gdamore file-system FFS # Berkeley Fast Filesystem 69 1.1 gdamore file-system MFS # memory-based filesystem 70 1.1 gdamore #file-system EXT2FS # second extended file system (linux) 71 1.1 gdamore file-system NFS # Sun NFS-compatible filesystem client 72 1.1 gdamore #file-system KERNFS # kernel data-structure filesystem 73 1.1 gdamore #file-system NULLFS # NULL layered filesystem 74 1.1 gdamore #file-system OVERLAY # overlay file system 75 1.1 gdamore #file-system FDESC # user file descriptor filesystem 76 1.1 gdamore #file-system UMAPFS # uid/gid remapping filesystem 77 1.1 gdamore #file-system LFS # Log-based filesystem (still experimental) 78 1.1 gdamore #file-system PORTAL # portal filesystem (still experimental) 79 1.1 gdamore #file-system PROCFS # /proc 80 1.1 gdamore #file-system CD9660 # ISO 9660 + Rock Ridge file system 81 1.1 gdamore #file-system UNION # union file system 82 1.1 gdamore #file-system MSDOSFS # MS-DOS FAT filesystem(s). 83 1.1 gdamore #file-system CODA # Coda File System; also needs vcoda (below) 84 1.1 gdamore #file-system PTYFS # /dev/pts/N support 85 1.1 gdamore 86 1.1 gdamore # File system options 87 1.1 gdamore #options NFSSERVER # Sun NFS-compatible filesystem server 88 1.1 gdamore #options QUOTA # FFS quotas 89 1.1 gdamore #options FFS_EI # FFS Endian Independant support 90 1.1 gdamore #options SOFTDEP # FFS soft updates support. 91 1.1 gdamore options FFS_NO_SNAPSHOT # No FFS snapshot support 92 1.1 gdamore #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 93 1.1 gdamore # immutable) behave as system flags. 94 1.1 gdamore 95 1.1 gdamore # Networking options 96 1.1 gdamore #options GATEWAY # IP packet forwarding 97 1.1 gdamore options INET # Internet protocols 98 1.1 gdamore #options INET6 # IPV6 99 1.1 gdamore #options IPSEC # IP security 100 1.1 gdamore #options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 101 1.1 gdamore #options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 102 1.1 gdamore #options IPSEC_DEBUG # debug for IP security 103 1.1 gdamore #options MROUTING # packet forwarding of multicast packets 104 1.1 gdamore #options PIM # Protocol Independent Multicast 105 1.1 gdamore #options NS # Xerox NS networking 106 1.1 gdamore #options NSIP # Xerox NS tunneling over IP 107 1.1 gdamore #options ISO,TPIP # OSI networking 108 1.1 gdamore #options EON # OSI tunneling over IP 109 1.1 gdamore #options CCITT,LLC,HDLC # X.25 110 1.1 gdamore #options NETATALK # AppleTalk (over Ethernet) protocol 111 1.1 gdamore #options PPP_BSDCOMP # BSD-Compress compression support for PPP 112 1.1 gdamore #options PPP_DEFLATE # Deflate compression support for PPP 113 1.1 gdamore #options PPP_FILTER # Active filter support for PPP (requires bpf) 114 1.1 gdamore #options PFIL_HOOKS # pfil(9) packet filter hooks 115 1.1 gdamore #options IPFILTER_LOG # ipmon(8) log support 116 1.1 gdamore 117 1.1 gdamore # Compatibility with 4.2BSD implementation of TCP/IP. Not recommended. 118 1.1 gdamore #options TCP_COMPAT_42 119 1.1 gdamore 120 1.1 gdamore # These options enable verbose messages for several subsystems. 121 1.1 gdamore # Warning, these may compile large string tables into the kernel! 122 1.1 gdamore options MIIVERBOSE # verbose PHY autoconfig messages 123 1.1 gdamore 124 1.1 gdamore # Bitmask for enabling the PCI IDE channels in the southbridge. 125 1.1 gdamore # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1. 126 1.1 gdamore # 127 1.1 gdamore # Do this if your firmware (usually PMON and YAMON) doens't enable the IDE 128 1.1 gdamore # channels for you (thus causing the NetBSD `pciide' driver to ignore them). 129 1.1 gdamore #options PCI_NETBSD_ENABLE_IDE=0x1 130 1.1 gdamore 131 1.1 gdamore options NFS_BOOT_DHCP 132 1.1 gdamore options NFS_V2_ONLY 133 1.1 gdamore 134 1.1 gdamore config netbsd root on ? type ? 135 1.1 gdamore 136 1.1 gdamore 137 1.1 gdamore mainbus0 at root 138 1.1 gdamore cpu0 at mainbus? 139 1.2 gdamore wdog0 at mainbus? 140 1.1 gdamore arbus0 at mainbus? 141 1.1 gdamore 142 1.1 gdamore com* at arbus? addr ? 143 1.1 gdamore ae* at arbus? addr ? 144 1.1 gdamore ath* at arbus? addr ? 145 1.1 gdamore athflash* at arbus? addr ? 146 1.3 gdamore argpio* at arbus? addr ? 147 1.3 gdamore gpio* at argpio? 148 1.1 gdamore 149 1.1 gdamore # no RTC! so fake with a stub (required to prevent evbmips panic) 150 1.1 gdamore 151 1.1 gdamore 152 1.1 gdamore # MII/PHY support 153 1.1 gdamore #acphy* at mii? phy ? # DAltima AC101 and AMD Am79c874 PHYs 154 1.1 gdamore #amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 155 1.1 gdamore #dmphy* at mii? phy ? # Davicom DM9101 PHYs 156 1.1 gdamore #glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 157 1.1 gdamore #gphyter* at mii? phy ? # NS83861 Gig-E PHY 158 1.1 gdamore #icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890 159 1.1 gdamore #lxtphy* at mii? phy ? # Level One LXT-970 PHYs 160 1.1 gdamore #makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 161 1.1 gdamore #nsphy* at mii? phy ? # NS83840 PHYs 162 1.1 gdamore #nsphyter* at mii? phy ? # NS83843 PHYs 163 1.1 gdamore #pnaphy* at mii? phy ? # generic HomePNA PHYs 164 1.1 gdamore #qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 165 1.1 gdamore #sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 166 1.1 gdamore #tlphy* at mii? phy ? # ThunderLAN PHYs 167 1.1 gdamore #tqphy* at mii? phy ? # TDK Semiconductor PHYs 168 1.1 gdamore rlphy* at mii? phy ? # RealTek PHYs 169 1.1 gdamore ukphy* at mii? phy ? # generic unknown PHYs 170 1.1 gdamore 171 1.1 gdamore 172 1.1 gdamore # Pseudo-devices 173 1.1 gdamore 174 1.1 gdamore # Disk/mass storage pseudo-devices 175 1.1 gdamore #pseudo-device ccd 4 # concatenated disk devices 176 1.1 gdamore #pseudo-device raid 4 # RAIDframe disk driver 177 1.1 gdamore #pseudo-device fss 4 # file system snapshot device 178 1.2 gdamore #pseudo-device md 1 # memory disk device (ramdisk) 179 1.1 gdamore #pseudo-device vnd # disk-like interface to files 180 1.1 gdamore 181 1.1 gdamore # Network pseudo-devices 182 1.1 gdamore pseudo-device bpfilter # Berkeley packet filter 183 1.1 gdamore #pseudo-device ipfilter # IP filter (firewall) and NAT 184 1.1 gdamore pseudo-device loop # network loopback 185 1.1 gdamore #pseudo-device ppp # Point-to-Point Protocol 186 1.1 gdamore #pseudo-device sl # Serial Line IP 187 1.1 gdamore #pseudo-device strip # Starmode Radio IP (Metricom) 188 1.1 gdamore #pseudo-device tun # network tunneling over tty 189 1.1 gdamore #pseudo-device tap # virtual Ethernet 190 1.1 gdamore #pseudo-device gre # generic L3 over IP tunnel 191 1.1 gdamore #pseudo-device ipip 2 # RFC 2003 IP Encapsulation 192 1.1 gdamore #pseudo-device gif # RFC1933 tunnel 193 1.1 gdamore #pseudo-device faith # IPv[46] tcp relay translation 194 1.1 gdamore #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 195 1.1 gdamore #pseudo-device vlan # IEEE 802.1q encapsulation 196 1.1 gdamore #pseudo-device bridge # simple inter-network bridging 197 1.1 gdamore 198 1.1 gdamore # Miscellaneous pseudo-devices 199 1.1 gdamore pseudo-device pty # pseudo-terminals 200 1.1 gdamore pseudo-device rnd # /dev/random & kernel generator 201 1.1 gdamore pseudo-device clockctl # user control of clock subsystem 202 1.1 gdamore pseudo-device ksyms # /dev/ksyms 203 1.1 gdamore 204 1.1 gdamore # A pseudo device needed for Coda # also needs CODA (above) 205 1.1 gdamore #pseudo-device vcoda 4 # coda minicache <-> venus comm. 206