]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/conf/GENERIC
Merge OpenBSM 1.2 alpha 4.
[FreeBSD/FreeBSD.git] / sys / arm64 / conf / GENERIC
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
21 cpu             ARM64
22 ident           GENERIC
23
24 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
25 makeoptions     WITH_CTF=1              # Run ctfconvert(1) for DTrace support
26
27 options         SCHED_ULE               # ULE scheduler
28 options         PREEMPTION              # Enable kernel thread preemption
29 options         INET                    # InterNETworking
30 options         INET6                   # IPv6 communications protocols
31 options         IPSEC                   # IP (v4/v6) security
32 options         TCP_OFFLOAD             # TCP offload
33 options         SCTP                    # Stream Control Transmission Protocol
34 options         FFS                     # Berkeley Fast Filesystem
35 options         SOFTUPDATES             # Enable FFS soft updates support
36 options         UFS_ACL                 # Support for access control lists
37 options         UFS_DIRHASH             # Improve performance on big directories
38 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
39 options         QUOTA                   # Enable disk quotas for UFS
40 options         MD_ROOT                 # MD is a potential root device
41 options         NFSCL                   # Network Filesystem Client
42 options         NFSD                    # Network Filesystem Server
43 options         NFSLOCKD                # Network Lock Manager
44 options         NFS_ROOT                # NFS usable as /, requires NFSCL
45 options         MSDOSFS                 # MSDOS Filesystem
46 options         CD9660                  # ISO 9660 Filesystem
47 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
48 options         PSEUDOFS                # Pseudo-filesystem framework
49 options         GEOM_PART_GPT           # GUID Partition Tables.
50 options         GEOM_RAID               # Soft RAID functionality.
51 options         GEOM_LABEL              # Provides labelization
52 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
53 options         KTRACE                  # ktrace(1) support
54 options         STACK                   # stack(9) support
55 options         SYSVSHM                 # SYSV-style shared memory
56 options         SYSVMSG                 # SYSV-style message queues
57 options         SYSVSEM                 # SYSV-style semaphores
58 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
59 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
60 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
61 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
62 options         AUDIT                   # Security event auditing
63 options         CAPABILITY_MODE         # Capsicum capability mode
64 options         CAPABILITIES            # Capsicum capabilities
65 options         MAC                     # TrustedBSD MAC Framework
66 options         KDTRACE_FRAME           # Ensure frames are compiled in
67 options         KDTRACE_HOOKS           # Kernel DTrace hooks
68 options         VFP                     # Floating-point support
69 options         RACCT                   # Resource accounting framework
70 options         RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
71 options         RCTL                    # Resource limits
72 options         SMP
73
74 # Debugging support.  Always need this:
75 options         KDB                     # Enable kernel debugger support.
76 options         KDB_TRACE               # Print a stack trace for a panic.
77 # For full debugger support use (turn off in stable branch):
78 options         DDB                     # Support DDB.
79 #options        GDB                     # Support remote GDB.
80 options         DEADLKRES               # Enable the deadlock resolver
81 options         INVARIANTS              # Enable calls of extra sanity checking
82 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
83 options         WITNESS                 # Enable checks to detect deadlocks and cycles
84 options         WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
85 options         MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
86
87 # SoC support
88 options         SOC_CAVM_THUNDERX
89 options         SOC_HISI_HI6220
90
91 # VirtIO support
92 device          virtio
93 device          virtio_mmio
94 device          virtio_blk
95 device          vtnet
96
97 # Bus drivers
98 device          pci
99 options         PCI_IOV         # PCI SR-IOV support
100
101 # Ethernet NICs
102 device          mii
103 device          miibus          # MII bus support
104 device          em              # Intel PRO/1000 Gigabit Ethernet Family
105 device          igb             # Intel PRO/1000 PCIE Server Gigabit Family
106 device          msk             # Marvell/SysKonnect Yukon II Gigabit Ethernet
107 device          vnic            # Cavium ThunderX NIC
108
109 # Block devices
110 device          ahci
111 device          scbus
112 device          da
113
114 # ATA/SCSI peripherals
115 device          pass            # Passthrough device (direct ATA/SCSI access)
116
117 # MMC/SD/SDIO Card slot support
118 device          mmc                     # mmc/sd bus
119 device          mmcsd                   # mmc/sd flash cards
120 device          dwmmc
121
122 # Serial (COM) ports
123 device          uart            # Generic UART driver
124 device          pl011
125
126 # USB support
127 options         USB_DEBUG               # enable debug msgs
128 device          dwcotg                  # DWC OTG controller
129 device          xhci                    # XHCI PCI->USB interface (USB 3.0)
130 device          usb                     # USB Bus (required)
131 device          ukbd                    # Keyboard
132 device          umass                   # Disks/Mass storage - Requires scbus and da
133
134 # Pseudo devices.
135 device          loop            # Network loopback
136 device          random          # Entropy device
137 device          ether           # Ethernet support
138 device          vlan            # 802.1Q VLAN support
139 device          tun             # Packet tunnel.
140 device          md              # Memory "disks"
141 device          gif             # IPv6 and IPv4 tunneling
142 device          firmware        # firmware assist module
143 device          psci            # Support for ARM PSCI
144
145 # The `bpf' device enables the Berkeley Packet Filter.
146 # Be aware of the administrative consequences of enabling this!
147 # Note that 'bpf' is required for DHCP.
148 device          bpf             # Berkeley packet filter
149
150 # Chip-specific errata
151 options         THUNDERX_PASS_1_1_ERRATA
152
153 options         FDT
154 device          acpi
155
156 # The crypto framework is required by IPSEC
157 device          crypto                  # Required by IPSEC