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