blob: a3fe93f88177dbc23d6b850416b2a6723af4d1de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index 20d0c3f..3f5bf52 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -22,7 +22,8 @@ cpu HAMMER
ident GENERIC
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
-makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
+#makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
+nomakeoptions WITH_CTF # Disabled on Gentoo/FreeBSD
options SCHED_ULE # ULE scheduler
options PREEMPTION # Enable kernel thread preemption
diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC
index f77b0fc..1f67a3a 100644
--- a/sys/i386/conf/GENERIC
+++ b/sys/i386/conf/GENERIC
@@ -24,7 +24,8 @@ cpu I686_CPU
ident GENERIC
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
-makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
+#makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
+nomakeoptions WITH_CTF # Disabled on Gentoo/FreeBSD
options SCHED_ULE # ULE scheduler
options PREEMPTION # Enable kernel thread preemption
|