DHT revision 1.5
1# $NetBSD: DHT,v 1.5 2023/10/04 07:48:55 rin Exp $ 2# 3# DHT --- DHT Walnut 405GP Evaluation Board 4# (Digital Home Technologies PCB 01070201 Rev. 1.1) 5# 6 7include "arch/evbppc/conf/std.dht" 8 9options INCLUDE_CONFIG_FILE # embed config file in kernel binary 10 11#ident "DHT-$Revision: 1.5 $" 12 13maxusers 32 14 15 16# 17# Standard system options 18# 19 20options INSECURE # disable kernel security levels 21options NTP # NTP phase/frequency locked loop 22options KTRACE # system call tracing via ktrace(1) 23 24options SYSVMSG # System V message queues 25options SYSVSEM # System V semaphores 26options SYSVSHM # System V shared memory 27 28options MODULAR # new style module(7) framework 29#options MODULAR_DEFAULT_AUTOLOAD 30#options USERCONF # userconf(4) support 31#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 32#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 33 34#options UVMHIST 35#options UVMHIST_PRINT 36 37 38# Alternate buffer queue strategies for better responsiveness under high 39# disk I/O load. 40#options BUFQ_READPRIO 41options BUFQ_PRIOCSCAN 42 43# 44# Diagnostic/debugging support options 45# 46 47options DIAGNOSTIC # cheap kernel consistency checks 48#options DEBUG # expensive debugging checks/support 49options DDB # in-kernel debugger 50options DDB_HISTORY_SIZE=512 # enable history editing in DDB 51#options TRAP_PANICWAIT 52makeoptions COPY_SYMTAB=1 # size for embedded symbol table 53 54makeoptions DEBUG="-g" # compile full symbol table 55 56 57# 58# Compatibility options 59# 60 61include "conf/compat_netbsd13.config" 62#options COMPAT_386BSD_MBRPART # recognize old partition ID 63 64# 65# File systems 66# 67 68file-system FFS # UFS 69file-system EXT2FS # second extended file system (linux) 70file-system LFS # log-structured file system 71file-system MFS # memory file system 72file-system NFS # Network File System client 73file-system CD9660 # ISO 9660 + Rock Ridge file system 74file-system MSDOSFS # MS-DOS file system 75file-system FDESC # /dev/fd 76file-system KERNFS # /kern 77file-system NULLFS # loopback file system 78file-system OVERLAY # overlay file system 79file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 80file-system PROCFS # /proc 81file-system UMAPFS # NULLFS + uid and gid remapping 82file-system UNION # union file system 83file-system PTYFS # /dev/pts/N support 84file-system TMPFS # Efficient memory file-system 85#file-system NTFS # Windows NT file system (experimental) 86 87 88# 89# File system options 90# 91 92options FFS_EI # FFS Endian Independent support 93#options FFS_NO_SNAPSHOT # No FFS snapshot support 94options QUOTA # legacy UFS quotas 95options QUOTA2 # new, in-filesystem UFS quotas 96options UFS_DIRHASH # UFS Large Directory Hashing 97options UFS_EXTATTR # Extended attribute support for UFS1 98options WAPBL # File system journaling support 99options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental 100options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 101 # immutable) behave as system flags. 102options NFSSERVER # Network File System server 103 104options NFS_BOOT_DHCP # Support DHCP NFS root 105 106 107# 108# Networking options 109# 110 111options GATEWAY # packet forwarding 112options INET # IP + ICMP + TCP + UDP 113options INET6 # IPv6 114#options IPSEC # IP security 115#options IPSEC_DEBUG # debug for IP security 116#options MROUTING # IP multicast routing 117#options PIM # Protocol Independent Multicast 118#options NETATALK # AppleTalk networking protocols 119options PPP_BSDCOMP # BSD-Compress compression support for PPP 120options PPP_DEFLATE # Deflate compression support for PPP 121options PPP_FILTER # Active filter support for PPP (requires bpf) 122#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 123 124 125# 126# Kernel root file system and dump configuration. 127# 128 129#config netbsd root on ? type ? 130config netbsd root on wd0a type ffs 131#config netbsd root on emac0 type nfs 132 133 134# 135# Device configuration 136# 137 138plb0 at root # Processor Local Bus 139cpu0 at plb? # CPU 140ecc0 at plb? irq 17 # On-chip ECC controller 141pchb0 at plb? # PCI-Host bridges 142 143# On-chip Peripheral Bus support 144opb* at plb? # On-chip Peripheral Bus 145wdog* at opb? # Watchdog timer 146com* at opb? addr ? irq ? # UARTs 147emac0 at opb? addr ? irq ? # Ethernet Media Access Controller 148#options EMAC_EVENT_COUNTERS 149opbgpio0 at opb? addr ? irq ? # On-chip GPIO controller 150gpio* at opbgpio? # GPIO framework 151 # GPIO pins 0-8 go to J5 header. Pins 0 and 1 are also connected to 152 # Power and Media LEDs, respectively (negative logic). 153 154# PCI bus support 155pci* at pchb? 156options PCIVERBOSE # verbose PCI device autoconfig messages 157#options PCI_CONFIG_DUMP # verbosely dump PCI config space 158options PCI_NETBSD_CONFIGURE # Do not rely on BIOS/whatever 159 # to configure PCI devices 160#options PCI_CONFIGURE_VERBOSE # Show PCI config information 161 162pdcide* at pci? dev ? function ? # Promise IDE controllers 163options DHT_FIXUP_PDCIDE # Initialize pdcide to native-PCI mode 164 165# ATA (IDE) bus support 166atabus* at ata? 167wd* at atabus? drive ? 168 169# MII/PHY support 170nsphyter* at mii? phy ? # NS83843 PHYs 171options MIIVERBOSE # verbose PHY autoconfig messages 172 173# 174# Random useful PCI devices known to work. 175# 176 177ppb* at pci? dev ? function ? # PCI-PCI{,e} bridges 178pci* at ppb? 179 180ahcisata* at pci? dev ? function ? # AHCI SATA controllers 181siisata* at pci? dev ? function ? # SiI SteelVine controllers 182 183wm* at pci? dev ? function ? # Intel 82543/82544 gigabit 184igphy* at mii? phy ? # Intel IGP01E1000 185makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 186ukphy* at mii? phy ? # generic unknown PHYs 187 188igc* at pci? dev ? function ? # Intel 22x 2.5 gigabit 189 190xhci* at pci? dev ? function ? # eXtensible Host Controller 191usb* at xhci? 192 193# USB Hubs 194uhub* at usb? 195uhub* at uhub? port ? 196 197# USB Mass Storage 198umass* at uhub? port ? configuration ? interface ? 199scsibus* at umass? 200sd* at scsibus? target ? lun ? # SCSI disk drives 201 202 203# 204# Pseudo devices 205# 206 207pseudo-device crypto # /dev/crypto device 208pseudo-device swcrypto # software crypto implementation 209 210# disk/mass storage pseudo-devices 211#pseudo-device ccd # concatenated/striped disk devices 212#pseudo-device cgd # cryptographic disk devices 213#pseudo-device raid # RAIDframe disk driver 214#options RAID_AUTOCONFIG # auto-configuration of RAID components 215pseudo-device fss # file system snapshot device 216#pseudo-device md # memory disk device 217pseudo-device vnd # disk-like interface to files 218 219# network pseudo-devices 220pseudo-device loop # network loopback 221pseudo-device bpfilter # packet filter 222pseudo-device carp # Common Address Redundancy Protocol 223pseudo-device npf # NPF packet filter 224pseudo-device ppp # Point-to-Point Protocol 225pseudo-device pppoe # PPP over Ethernet (RFC 2516) 226pseudo-device sl # Serial Line IP 227pseudo-device irframetty # IrDA frame line discipline 228pseudo-device tap # virtual ethernet 229pseudo-device tun # network tunneling over tty 230pseudo-device gre # generic L3 over IP tunnel 231pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933) 232#pseudo-device faith # IPv[46] TCP relay translation i/f 233pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 234pseudo-device vlan # IEEE 802.1q encapsulation 235pseudo-device bridge # simple inter-network bridging 236pseudo-device vether # Virtual Ethernet for bridge 237pseudo-device agr # IEEE 802.3ad link aggregation 238 239# miscellaneous pseudo-devices 240pseudo-device pty # pseudo-terminals 241pseudo-device clockctl # user control of clock subsystem 242pseudo-device drvctl # user control of drive subsystem 243pseudo-device ksyms # /dev/ksyms 244pseudo-device putter # for puffs and pud 245 246include "dev/veriexec.config" 247