git: 10eed6bc2bc8 - main - dtrace: include fbt module unconditionally
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 12 Jan 2023 15:06:50 UTC
The branch main has been updated by mhorne:
URL: https://cgit.FreeBSD.org/src/commit/?id=10eed6bc2bc84a646241a05def3f2542af5df79e
commit 10eed6bc2bc84a646241a05def3f2542af5df79e
Author: Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2023-01-11 18:05:18 +0000
Commit: Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2023-01-12 15:04:36 +0000
dtrace: include fbt module unconditionally
It is supported on all platforms.
Reviewed by: markj
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D37658
---
sys/modules/dtrace/Makefile | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/sys/modules/dtrace/Makefile b/sys/modules/dtrace/Makefile
index 0bdb66c9c751..31beadb4d890 100644
--- a/sys/modules/dtrace/Makefile
+++ b/sys/modules/dtrace/Makefile
@@ -8,30 +8,26 @@ SUBDIR= dtaudit \
dtrace \
dtraceall \
dtrace_test \
+ fbt \
profile \
prototype \
sdt \
systrace
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
-SUBDIR+= fasttrap fbt systrace_linux
+SUBDIR+= fasttrap systrace_linux
.endif
.if ${MACHINE_CPUARCH} == "amd64"
SUBDIR+= systrace_linux32
SUBDIR+= kinst
.endif
.if ${MACHINE_CPUARCH} == "powerpc"
-SUBDIR+= fasttrap fbt
+SUBDIR+= fasttrap
.endif
.if ${MACHINE_CPUARCH} == "amd64" || \
${MACHINE_CPUARCH} == "aarch64" || \
${MACHINE_ARCH} == "powerpc64"
SUBDIR+= systrace_freebsd32
.endif
-.if ${MACHINE_CPUARCH} == "aarch64" || \
- ${MACHINE_CPUARCH} == "arm" || \
- ${MACHINE_CPUARCH} == "riscv"
-SUBDIR+= fbt
-.endif
.include <bsd.subdir.mk>