OCTEON revision 1.1
11.1Ssimonb# $NetBSD: OCTEON,v 1.1 2020/07/15 12:15:30 simonb Exp $ 21.1Ssimonb 31.1Ssimonbinclude "arch/mips/conf/std.octeon" 41.1Ssimonbinclude "arch/evbmips/conf/files.octeon" 51.1Ssimonb 61.1Ssimonb#options INCLUDE_CONFIG_FILE # embed config file in kernel binary 71.1Ssimonb 81.1Ssimonb#ident "ERLITE-$Revision: 1.1 $" 91.1Ssimonb 101.1Ssimonbmaxusers 32 111.1Ssimonb 121.1Ssimonb# Options for necessary to use MD 131.1Ssimonb#options MEMORY_DISK_HOOKS 141.1Ssimonb#options MEMORY_DISK_IS_ROOT # force root on memory disk 151.1Ssimonb#options MEMORY_DISK_SERVER=0 # no userspace memory disk support 161.1Ssimonb#options MEMORY_DISK_ROOT_SIZE=6144 # size of memory disk, in blocks 171.1Ssimonb#options MEMORY_DISK_ROOT_SIZE=16384 # size of memory disk, in blocks 181.1Ssimonb#options MEMORY_DISK_ROOT_SIZE=7300 191.1Ssimonb 201.1Ssimonb# Size reduction options 211.1Ssimonb#options VNODE_OP_NOINLINE 221.1Ssimonb#options PIPE_SOCKETPAIR 231.1Ssimonb#options SOSEND_NO_LOAN 241.1Ssimonb 251.1Ssimonb# Standard system options 261.1Ssimonboptions KTRACE # system call tracing support 271.1Ssimonboptions SYSVMSG # System V message queues 281.1Ssimonboptions SYSVSEM # System V semaphores 291.1Ssimonboptions SYSVSHM # System V shared memory 301.1Ssimonboptions NTP # network time protocol 311.1Ssimonb 321.1Ssimonb# Debugging options 331.1Ssimonboptions DIAGNOSTIC # extra kernel sanity checking 341.1Ssimonb#options DEBUG # extra kernel debugging support 351.1Ssimonb#options USERCONF # userconf(4) support 361.1Ssimonb#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 371.1Ssimonboptions DDB # kernel dynamic debugger 381.1Ssimonboptions DDB_HISTORY_SIZE=100 # enable history editing in DDB 391.1Ssimonbmakeoptions DEBUG="-g" # compile full symbol table 401.1Ssimonbmakeoptions COPY_SYMTAB=1 # size for embedded symbol table 411.1Ssimonb 421.1Ssimonb# Compatibility options 431.1Ssimonb 441.1Ssimonbinclude "conf/compat_netbsd50.config" 451.1Ssimonb#options COMPAT_386BSD_MBRPART # recognize old partition ID 461.1Ssimonb 471.1Ssimonb#options EXEC_ECOFF # exec ECOFF binaries 481.1Ssimonb#options COMPAT_ULTRIX # binary compatibility with Ultrix 491.1Ssimonb 501.1Ssimonb# File systems 511.1Ssimonbfile-system FFS # Berkeley Fast Filesystem 521.1Ssimonbfile-system MFS # memory-based filesystem 531.1Ssimonbfile-system EXT2FS # second extended file system (linux) 541.1Ssimonbfile-system NFS # Sun NFS-compatible filesystem client 551.1Ssimonbfile-system TMPFS # Efficient memory file-system 561.1Ssimonbfile-system KERNFS # kernel data-structure filesystem 571.1Ssimonbfile-system NULLFS # NULL layered filesystem 581.1Ssimonb#file-system OVERLAY # overlay file system 591.1Ssimonb#file-system FDESC # user file descriptor filesystem 601.1Ssimonb#file-system UMAPFS # uid/gid remapping filesystem 611.1Ssimonb#file-system LFS # Log-based filesystem (still experimental) 621.1Ssimonbfile-system PROCFS # /proc 631.1Ssimonbfile-system CD9660 # ISO 9660 + Rock Ridge file system 641.1Ssimonb#file-system UNION # union file system 651.1Ssimonbfile-system MSDOSFS # MS-DOS FAT filesystem(s). 661.1Ssimonb#file-system CODA # Coda File System; also needs vcoda (below) 671.1Ssimonbfile-system PTYFS # /dev/pts/N support 681.1Ssimonb 691.1Ssimonb# File system options 701.1Ssimonboptions NFSSERVER # Sun NFS-compatible filesystem server 711.1Ssimonb#options QUOTA # legacy UFS quotas 721.1Ssimonb#options QUOTA2 # new, in-filesystem UFS quotas 731.1Ssimonb#options DISKLABEL_EI # disklabel Endian Independent support 741.1Ssimonb#options FFS_EI # FFS Endian Independent support 751.1Ssimonboptions WAPBL # File system journaling support 761.1Ssimonb#options FFS_NO_SNAPSHOT # No FFS snapshot support 771.1Ssimonb#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 781.1Ssimonb # immutable) behave as system flags. 791.1Ssimonb 801.1Ssimonb# Alternate buffer queue strategies for better responsiveness under high 811.1Ssimonb# disk I/O load. 821.1Ssimonb#options BUFQ_READPRIO 831.1Ssimonboptions BUFQ_PRIOCSCAN 841.1Ssimonb 851.1Ssimonb# Networking options 861.1Ssimonb#options GATEWAY # IP packet forwarding 871.1Ssimonboptions INET # Internet protocols 881.1Ssimonboptions INET6 # IPV6 891.1Ssimonb#options IPSEC # IP security 901.1Ssimonb#options IPSEC_DEBUG # debug for IP security 911.1Ssimonb#options MROUTING # packet forwarding of multicast packets 921.1Ssimonb#options PIM # Protocol Independent Multicast 931.1Ssimonb#options NETATALK # AppleTalk (over Ethernet) protocol 941.1Ssimonb#options PPP_BSDCOMP # BSD-Compress compression support for PPP 951.1Ssimonb#options PPP_DEFLATE # Deflate compression support for PPP 961.1Ssimonb#options PPP_FILTER # Active filter support for PPP (requires bpf) 971.1Ssimonboptions BPFJIT 981.1Ssimonboptions SLJIT 991.1Ssimonb 1001.1Ssimonb# These options enable verbose messages for several subsystems. 1011.1Ssimonb# Warning, these may compile large string tables into the kernel! 1021.1Ssimonboptions MIIVERBOSE # verbose PHY autoconfig messages 1031.1Ssimonb 1041.1Ssimonboptions NFS_BOOT_DHCP 1051.1Ssimonb 1061.1Ssimonbconfig netbsd root on ? type ? 1071.1Ssimonb#config netbsd root on cnmac0 type nfs 1081.1Ssimonb 1091.1Ssimonbmainbus0 at root 1101.1Ssimonbcpunode0 at mainbus? 1111.1Ssimonbcpu* at cpunode? core ? 1121.1Ssimonbwdog0 at cpunode0 flags 0 # flags 1 will enable it on boot 1131.1Ssimonb 1141.1Ssimonbiobus0 at mainbus? 1151.1Ssimonbbootbus0 at mainbus? 1161.1Ssimonb 1171.1Ssimonbcom* at iobus? 1181.1Ssimonb 1191.1Ssimonboctsmi* at iobus? # MDIO controller 1201.1Ssimonboctpip* at iobus? # PIP packet processing controller 1211.1Ssimonb 1221.1Ssimonboctgmx* at octpip? 1231.1Ssimonbcnmac* at octgmx? 1241.1Ssimonb 1251.1Ssimonboctrnm* at iobus? # Random Number Memory (and generator) 1261.1Ssimonb 1271.1Ssimonbdwctwo* at iobus? 1281.1Ssimonb 1291.1Ssimonbusb* at dwctwo? 1301.1Ssimonb 1311.1Ssimonbuhub* at usb? 1321.1Ssimonb 1331.1Ssimonb# USB Mass Storage 1341.1Ssimonbumass* at uhub? port ? configuration ? interface ? 1351.1Ssimonbscsibus* at umass? channel ? 1361.1Ssimonbsd* at scsibus? target ? lun ? # SCSI disk drives 1371.1Ssimonb 1381.1Ssimonb# Ethernet PHYs 1391.1Ssimonbatphy* at mii? phy ? # Attansic/Atheros PHYs 1401.1Ssimonbukphy* at mii? phy ? # generic unknown PHYs 1411.1Ssimonb 1421.1Ssimonb# Pseudo-devices 1431.1Ssimonb 1441.1Ssimonb# Disk/mass storage pseudo-devices 1451.1Ssimonb#pseudo-device ccd # concatenated disk devices 1461.1Ssimonb#pseudo-device raid # RAIDframe disk driver 1471.1Ssimonb#pseudo-device fss # file system snapshot device 1481.1Ssimonb#pseudo-device md # memory disk device (ramdisk) 1491.1Ssimonb#pseudo-device vnd # disk-like interface to files 1501.1Ssimonb 1511.1Ssimonb# Network pseudo-devices 1521.1Ssimonbpseudo-device bpfilter # Berkeley packet filter 1531.1Ssimonbpseudo-device carp # Common Address Redundancy Protocol 1541.1Ssimonbpseudo-device npf # NPF packet filter 1551.1Ssimonbpseudo-device loop # network loopback 1561.1Ssimonbpseudo-device ppp # Point-to-Point Protocol 1571.1Ssimonbpseudo-device pppoe # Point-to-Point Protocol over Ethernet 1581.1Ssimonb#pseudo-device sl # Serial Line IP 1591.1Ssimonbpseudo-device tun # network tunneling over tty 1601.1Ssimonbpseudo-device tap # virtual Ethernet 1611.1Ssimonb#pseudo-device gre # generic L3 over IP tunnel 1621.1Ssimonb#pseudo-device ipip # RFC 2003 IP Encapsulation 1631.1Ssimonbpseudo-device gif # RFC1933 tunnel 1641.1Ssimonb#pseudo-device faith # IPv[46] tcp relay translation 1651.1Ssimonb#pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 1661.1Ssimonbpseudo-device vlan # IEEE 802.1q encapsulation 1671.1Ssimonbpseudo-device bridge # simple inter-network bridging 1681.1Ssimonb 1691.1Ssimonb# Miscellaneous pseudo-devices 1701.1Ssimonbpseudo-device pty # pseudo-terminals 1711.1Ssimonbpseudo-device clockctl # user control of clock subsystem 1721.1Ssimonbpseudo-device ksyms # /dev/ksyms 1731.1Ssimonbpseudo-device drvctl # driver control 1741.1Ssimonb 1751.1Ssimonb# A pseudo device needed for Coda # also needs CODA (above) 1761.1Ssimonb#pseudo-device vcoda # coda minicache <-> venus comm. 1771.1Ssimonb 1781.1Ssimonbinclude "dev/veriexec.config" 1791.1Ssimonb 1801.1Ssimonbcinclude "arch/evbmips/conf/OCTEON.local" 181