diff options
author | jhb <jhb@FreeBSD.org> | 2017-05-24 00:00:55 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2017-05-24 00:00:55 +0000 |
commit | 89d1a406f492b6e678811477533f719745bb178a (patch) | |
tree | f554ff702ad7487fa4716c0fa4961015d45e8a81 /sys/amd64 | |
parent | 8b9b483d0b85fd3bddfd926c1400956a50c91223 (diff) | |
download | FreeBSD-src-89d1a406f492b6e678811477533f719745bb178a.zip FreeBSD-src-89d1a406f492b6e678811477533f719745bb178a.tar.gz |
MFC 310177: Enable EARLY_AP_STARTUP on amd64 and i386 kernels by default.
PR: 199321, 203682
Discussed with: re (kib)
Relnotes: yes
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/amd64/conf/MINIMAL | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index 6f68eb3..de7cbe6 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -85,6 +85,7 @@ options KDB_TRACE # Print a stack trace for a panic. # Make an SMP-capable kernel by default options SMP # Symmetric MultiProcessor Kernel options DEVICE_NUMA # I/O Device Affinity +options EARLY_AP_STARTUP # CPU frequency control device cpufreq diff --git a/sys/amd64/conf/MINIMAL b/sys/amd64/conf/MINIMAL index 2caf958..7e7b037 100644 --- a/sys/amd64/conf/MINIMAL +++ b/sys/amd64/conf/MINIMAL @@ -93,6 +93,7 @@ options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones # Make an SMP-capable kernel by default options SMP # Symmetric MultiProcessor Kernel options DEVICE_NUMA # I/O Device Affinity +options EARLY_AP_STARTUP # CPU frequency control device cpufreq |