1# 2# GENERIC -- Generic kernel configuration file for FreeBSD/arm64 3# 4# For more information on this file, please read the config(5) manual page, 5# and/or the handbook section on Kernel Configuration Files: 6# 7# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html 8# 9# The handbook is also available locally in /usr/share/doc/handbook 10# if you've installed the doc distribution, otherwise always see the 11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the 12# latest information. 13# 14# An exhaustive list of options and more detailed explanations of the 15# device lines is also present in the ../../conf/NOTES and NOTES files. 16# If you are in doubt as to the purpose or necessity of a line, check first 17# in NOTES. 18# 19# $FreeBSD$ 20 21cpu ARM64 22ident GENERIC 23 24makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols 25makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support 26 27options SCHED_ULE # ULE scheduler 28options PREEMPTION # Enable kernel thread preemption 29options INET # InterNETworking 30options INET6 # IPv6 communications protocols 31options IPSEC # IP (v4/v6) security 32options TCP_OFFLOAD # TCP offload 33options SCTP # Stream Control Transmission Protocol 34options FFS # Berkeley Fast Filesystem 35options SOFTUPDATES # Enable FFS soft updates support 36options UFS_ACL # Support for access control lists 37options UFS_DIRHASH # Improve performance on big directories 38options UFS_GJOURNAL # Enable gjournal-based UFS journaling 39options QUOTA # Enable disk quotas for UFS 40options MD_ROOT # MD is a potential root device 41options NFSCL # Network Filesystem Client 42options NFSD # Network Filesystem Server 43options NFSLOCKD # Network Lock Manager 44options NFS_ROOT # NFS usable as /, requires NFSCL 45options MSDOSFS # MSDOS Filesystem 46options CD9660 # ISO 9660 Filesystem 47options PROCFS # Process filesystem (requires PSEUDOFS) 48options PSEUDOFS # Pseudo-filesystem framework 49options GEOM_PART_GPT # GUID Partition Tables. 50options GEOM_RAID # Soft RAID functionality. 51options GEOM_LABEL # Provides labelization 52options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI 53options KTRACE # ktrace(1) support 54options STACK # stack(9) support 55options SYSVSHM # SYSV-style shared memory 56options SYSVMSG # SYSV-style message queues 57options SYSVSEM # SYSV-style semaphores 58options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions 59options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed. 60options KBD_INSTALL_CDEV # install a CDEV entry in /dev 61options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) 62options AUDIT # Security event auditing 63options CAPABILITY_MODE # Capsicum capability mode 64options CAPABILITIES # Capsicum capabilities 65options MAC # TrustedBSD MAC Framework 66options KDTRACE_FRAME # Ensure frames are compiled in 67options KDTRACE_HOOKS # Kernel DTrace hooks 68options VFP # Floating-point support 69options RACCT # Resource accounting framework 70options RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default 71options RCTL # Resource limits 72options SMP 73options INTRNG 74 75# Debugging support. Always need this: 76options KDB # Enable kernel debugger support. 77options KDB_TRACE # Print a stack trace for a panic. 78# For full debugger support use (turn off in stable branch): 79options DDB # Support DDB. 80#options GDB # Support remote GDB. 81options DEADLKRES # Enable the deadlock resolver 82options INVARIANTS # Enable calls of extra sanity checking 83options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS 84options WITNESS # Enable checks to detect deadlocks and cycles 85options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed 86options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones 87 88# SoC support 89options SOC_ALLWINNER_A64 90options SOC_CAVM_THUNDERX 91options SOC_HISI_HI6220 92 93# VirtIO support 94device virtio 95device virtio_mmio 96device virtio_blk 97device vtnet 98 99# CPU frequency control 100device cpufreq 101 102# Bus drivers 103device pci 104options PCI_HP # PCI-Express native HotPlug 105options PCI_IOV # PCI SR-IOV support 106 107# Ethernet NICs 108device mii 109device miibus # MII bus support 110device awg # Allwinner EMAC Gigabit Ethernet 111device em # Intel PRO/1000 Gigabit Ethernet Family 112device igb # Intel PRO/1000 PCIE Server Gigabit Family 113device ix # Intel 10Gb Ethernet Family 114device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet 115device vnic # Cavium ThunderX NIC 116 117# Block devices 118device ahci 119device scbus 120device da 121 122# ATA/SCSI peripherals 123device pass # Passthrough device (direct ATA/SCSI access) 124 125# MMC/SD/SDIO Card slot support 126device aw_mmc # Allwinner SD/MMC controller 127device mmc # mmc/sd bus 128device mmcsd # mmc/sd flash cards 129device dwmmc 130 131# Serial (COM) ports 132device uart # Generic UART driver 133device uart_ns8250 # ns8250-type UART driver 134device uart_snps 135device pl011 136 137# USB support 138options USB_DEBUG # enable debug msgs 139device aw_ehci # Allwinner EHCI USB interface (USB 2.0) 140device aw_usbphy # Allwinner USB PHY 141device dwcotg # DWC OTG controller 142device ohci # OHCI USB interface 143device ehci # EHCI USB interface (USB 2.0) 144device xhci # XHCI PCI->USB interface (USB 3.0) 145device usb # USB Bus (required) 146device ukbd # Keyboard 147device umass # Disks/Mass storage - Requires scbus and da 148 149# GPIO 150device aw_gpio # Allwinner GPIO controller 151device gpio 152device fdt_pinctrl 153 154# I2C 155device aw_rsb # Allwinner Reduced Serial Bus 156device iicbus 157 158# Clock and reset controllers 159device aw_ccu # Allwinner clock controller 160 161# Interrupt controllers 162device aw_nmi # Allwinner NMI support 163 164# Real-time clock support 165device aw_rtc # Allwinner Real-time Clock 166 167# Watchdog controllers 168device aw_wdog # Allwinner Watchdog 169 170# Power management controllers 171device axp81x # X-Powers AXP81x PMIC 172 173# EFUSE 174device aw_sid # Allwinner Secure ID EFUSE 175 176# Thermal sensors 177device aw_thermal # Allwinner Thermal Sensor Controller 178 179# Pseudo devices. 180device loop # Network loopback 181device random # Entropy device 182device ether # Ethernet support 183device vlan # 802.1Q VLAN support 184device tun # Packet tunnel. 185device md # Memory "disks" 186device gif # IPv6 and IPv4 tunneling 187device firmware # firmware assist module 188device psci # Support for ARM PSCI 189 190# EXT_RESOURCES pseudo devices 191options EXT_RESOURCES 192device clk 193device phy 194device hwreset 195device regulator 196 197# The `bpf' device enables the Berkeley Packet Filter. 198# Be aware of the administrative consequences of enabling this! 199# Note that 'bpf' is required for DHCP. 200device bpf # Berkeley packet filter 201 202# Chip-specific errata 203options THUNDERX_PASS_1_1_ERRATA 204 205options FDT 206#device acpi 207 208# The crypto framework is required by IPSEC 209device crypto # Required by IPSEC 210