git: d6bc956e143b - main - sysent.mk: remove CAPABILITIES_CONF support
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 30 Oct 2024 21:08:54 UTC
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/src/commit/?id=d6bc956e143b194c221a9e697cd45a8a62028e86
commit d6bc956e143b194c221a9e697cd45a8a62028e86
Author: Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2024-10-22 17:39:20 +0000
Commit: Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2024-10-30 21:04:30 +0000
sysent.mk: remove CAPABILITIES_CONF support
The last consumer was removed with a switch to generating freebsd32's
syscall files from sys/kern/syscalls.master in commit be67ea40c5a0.
This followed prior work to use CAPENABLED flags in syscalls.master
instead of capabilities.conf in commit df501bac6939.
---
sys/conf/sysent.mk | 6 ------
1 file changed, 6 deletions(-)
diff --git a/sys/conf/sysent.mk b/sys/conf/sysent.mk
index 6794d870fcde..7dfd7c1f21d9 100644
--- a/sys/conf/sysent.mk
+++ b/sys/conf/sysent.mk
@@ -21,12 +21,6 @@ SYSENT_CONF?= syscalls.conf
SRCS+= ${SYSENT_FILE}
SRCS+= ${SYSENT_CONF}
-# Ensure that the target gets updated if the capabilities file is modified,
-# even though it is not an explicit input to makesyscalls.lua. For some
-# targets, like Linux system calls, this is unnecessary, but a spurious rebuild
-# is both rare and harmless.
-SRCS+= ${CAPABILITIES_CONF}
-
MAKESYSCALLS_INTERP?= ${LUA}
MAKESYSCALLS_SCRIPT?= ${SYSDIR}/tools/makesyscalls.lua
MAKESYSCALLS= ${MAKESYSCALLS_INTERP} ${MAKESYSCALLS_SCRIPT}