RB153 revision 1.26
1# $NetBSD: RB153,v 1.26 2022/08/07 02:52:25 simonb Exp $ 2# 3# Example kernel config for the RouterBOARD 153. 4 5include "arch/evbmips/conf/std.adm5120" 6 7#ident "RB153-$Revision: 1.26 $" 8 9maxusers 32 10 11options MIPS32 12options NOFPU # No FPU 13options FPEMUL # emulate FPU insn 14options CONSPEED=115200 # YAMON default 15#options HZ=512 # for profiling 16#options ADM5120_YAMON # if our bootloader is YAMON 17#options MEMSIZE="(32*1024*1024)" 18 19#options LOCKDEBUG 20options SOSEND_COUNTERS 21options INET_CSUM_COUNTERS 22options TCP_CSUM_COUNTERS 23options UDP_CSUM_COUNTERS 24options TCP_OUTPUT_COUNTERS 25 26#options NTP # network time protocol 27 28# Debugging options 29options DIAGNOSTIC # extra kernel sanity checking 30#options DEBUG # extra kernel debugging support 31options DDB # kernel dynamic debugger 32options DDB_HISTORY_SIZE=100 # enable history editing in DDB 33makeoptions DEBUG="-g" # compile full symbol table 34makeoptions CPUFLAGS="-march=4kc" 35makeoptions COPY_SYMTAB=1 # size for embedded symbol table 36 37#options MEMORY_DISK_HOOKS 38#options MEMORY_DISK_IS_ROOT # Force root on ram-disk 39#options MEMORY_DISK_ROOT_SIZE=16384 # size of memory disk, in blocks 40 41# File systems 42file-system FFS # Berkeley Fast Filesystem 43file-system TMPFS 44#file-system EXT2FS # second extended file system (linux) 45file-system NFS # Sun NFS-compatible filesystem client 46#file-system KERNFS # kernel data-structure filesystem 47file-system NULLFS # NULL layered filesystem 48#file-system OVERLAY # overlay file system 49#file-system FDESC # user file descriptor filesystem 50#file-system UMAPFS # uid/gid remapping filesystem 51#file-system LFS # Log-based filesystem (still experimental) 52#file-system PROCFS # /proc 53#file-system CD9660 # ISO 9660 + Rock Ridge file system 54#file-system UNION # union file system 55#file-system MSDOSFS # MS-DOS FAT filesystem(s). 56#file-system CODA # Coda File System; also needs vcoda (below) 57 58# File system options 59#options FFS_EI # FFS Endian Independent support 60#options QUOTA # legacy UFS quotas 61#options QUOTA2 # new, in-filesystem UFS quotas 62#options UFS_DIRHASH # UFS Large Directory Hashing 63#options UFS_EXTATTR # Extended attribute support for UFS1 64#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 65 # immutable) behave as system flags. 66#options DISKLABEL_EI # disklabel Endian Independent support 67#options NFSSERVER # Network File System server 68 69# Alternate buffer queue strategies for better responsiveness under high 70# disk I/O load. 71#options BUFQ_READPRIO 72options BUFQ_PRIOCSCAN 73 74# Networking options 75options GATEWAY # IP packet forwarding 76options INET # Internet protocols 77options INET6 # IPV6 78#options IPSEC # IP security 79#options IPSEC_DEBUG # debug for IP security 80#options MROUTING # packet forwarding of multicast packets 81#options NETATALK # AppleTalk (over Ethernet) protocol 82#options PPP_BSDCOMP # BSD-Compress compression support for PPP 83#options PPP_DEFLATE # Deflate compression support for PPP 84#options PPP_FILTER # Active filter support for PPP (requires bpf) 85 86# JIT compiler for bpfilter 87#options SLJIT 88#options BPFJIT 89 90# These options enable verbose messages for several subsystems. 91# Warning, these may compile large string tables into the kernel! 92#options MIIVERBOSE # verbose PHY autoconfig messages 93#options PCIVERBOSE # verbose PCI device autoconfig messages 94#options PCI_CONFIG_DUMP # verbosely dump PCI config space 95#options SCSIVERBOSE # human readable SCSI error messages 96#options USBVERBOSE # verbose USB device autoconfig messages 97 98options NFS_BOOT_DHCP 99#options NFS_BOOT_RWSIZE=1024 100 101# Pretty much only one device to use for the root file system. 102config netbsd root on admsw0 type nfs 103 104mainbus0 at root 105 106cpu0 at mainbus? 107 108# Network pseudo-devices 109pseudo-device bpfilter # Berkeley packet filter 110pseudo-device carp # Common Address Redundancy Protocol 111pseudo-device loop # network loopback 112#pseudo-device ppp # Point-to-Point Protocol 113#pseudo-device sl # Serial Line IP 114#pseudo-device tun # network tunneling over tty 115pseudo-device gre # generic L3 over IP tunnel 116#pseudo-device ipip # RFC 2003 IP Encapsulation 117pseudo-device gif # RFC1933 tunnel 118#pseudo-device faith # IPv[46] tcp relay translation 119# Miscellaneous pseudo-devices 120pseudo-device pty # pseudo-terminals 121#pseudo-device sequencer # MIDI sequencer 122pseudo-device npf # NPF packet filter 123 124# A pseudo device needed for Coda # also needs CODA (above) 125#pseudo-device vcoda # coda minicache <-> venus comm. 126pseudo-device ksyms 127 128obio* at mainbus? 129gpio* at mainbus? 130extio* at mainbus? 131 132uart* at obio? addr ? 133admsw* at obio? addr ? 134#admflash* at obio? addr ? 135 136wdc* at extio? addr ? gpio_mask ? flags 0x1000 137atabus* at wdc? channel ? 138wd* at atabus? drive ? 139 140#USB 141options USB_DEBUG 142options UHUB_DEBUG 143ahci* at obio? addr ? 144usb* at ahci? 145uhub* at usb? 146uhub* at uhub? port ? configuration ? interface ? 147ugen* at uhub? port ? 148umass* at uhub? port ? 149 150options PCI_NETBSD_CONFIGURE 151admpci* at mainbus? 152pci* at admpci? 153ath* at pci? dev ? function ? 154 155options MSGBUFSIZE=65536 156 157scsibus* at scsi? 158sd* at scsibus? target ? lun ? # SCSI disk drives 159 160options IPSELSRC 161#options WDC_EXTIO_DEBUG 162#options EXTIO_DEBUG 163#options ATADEBUG 164 165include "dev/veriexec.config" 166