git: 61f78130c2f3 - main - stand: Force disable RETPOLINE for boot loaders
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 25 Mar 2026 02:35:27 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=61f78130c2f3a6abaa70bd66d6d6974060fb3d04
commit 61f78130c2f3a6abaa70bd66d6d6974060fb3d04
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2026-03-24 14:53:13 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-03-25 02:33:43 +0000
stand: Force disable RETPOLINE for boot loaders
Boot loaders do not require speculative execution protection, and may be
too large if enabled.
Reported by: Shawn Webb
Reviewed by: dim, imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56068
---
stand/defs.mk | 1 +
1 file changed, 1 insertion(+)
diff --git a/stand/defs.mk b/stand/defs.mk
index b74dac395d15..7f3803c7ab42 100644
--- a/stand/defs.mk
+++ b/stand/defs.mk
@@ -11,6 +11,7 @@ FORTIFY_SOURCE= 0
MK_CTF= no
MK_SSP= no
MK_PIE= no
+MK_RETPOLINE= no
MK_ZEROREGS= no
MAN=
.if !defined(PIC)