git: 8050e0a4299d - main - sys/modules/Makefile: add MAC/veriexec modules into the build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Apr 2023 23:19:16 UTC
The branch main has been updated by stevek: URL: https://cgit.FreeBSD.org/src/commit/?id=8050e0a4299d83d5ba99981e74f6a12b5c4e3dae commit 8050e0a4299d83d5ba99981e74f6a12b5c4e3dae Author: Stephen J. Kiernan <stevek@FreeBSD.org> AuthorDate: 2023-04-16 23:16:49 +0000 Commit: Stephen J. Kiernan <stevek@FreeBSD.org> CommitDate: 2023-04-16 23:18:55 +0000 sys/modules/Makefile: add MAC/veriexec modules into the build Build the MAC/veriexec module and the SHA2, SHA256, SHA384, and SHA512 fingerprint modules. Obtained from: Juniper Networks, Inc. --- sys/modules/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index b59559f4c621..71e0be4cce2c 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -235,6 +235,11 @@ SUBDIR= \ ${_mac_seeotheruids} \ ${_mac_stub} \ ${_mac_test} \ + ${_mac_veriexec} \ + ${_mac_veriexec_sha1} \ + ${_mac_veriexec_sha256} \ + ${_mac_veriexec_sha384} \ + ${_mac_veriexec_sha512} \ ${_malo} \ ${_mana} \ md \ @@ -583,6 +588,11 @@ _mac_priority= mac_priority _mac_seeotheruids= mac_seeotheruids _mac_stub= mac_stub _mac_test= mac_test +_mac_veriexec= mac_veriexec +_mac_veriexec_sha1= mac_veriexec_sha1 +_mac_veriexec_sha256= mac_veriexec_sha256 +_mac_veriexec_sha384= mac_veriexec_sha384 +_mac_veriexec_sha512= mac_veriexec_sha512 .endif .if ${MK_NETGRAPH} != "no" || defined(ALL_MODULES)