aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2026-01-27 16:39:40 +0000
committerMichael Brown <mcb30@ipxe.org>2026-01-27 16:39:40 +0000
commite31dc79d40ae482404805c13972c25b038713f58 (patch)
tree40683d3a4ef720ccc39f91a05b82e99ce0bcb2ed
parent641ea020f1b10a4317f758a0b73e3c8fc00f8914 (diff)
downloadipxe-master.zip
ipxe-master.tar.gz
ipxe-master.tar.bz2
[build] Mark EFI SNP/MNP driver wrappers as permitted for UEFI Secure BootHEADmaster
The EFI SNP/MNP driver wrapper is a trivial layer that exists only to allow for the separation of "snponly.efi" as a build target. Review this trivial wrapper and mark it as permitted for UEFI Secure Boot. Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/drivers/net/efi/mnp.c1
-rw-r--r--src/drivers/net/efi/snp.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/net/efi/mnp.c b/src/drivers/net/efi/mnp.c
index 212c712..c4a950d 100644
--- a/src/drivers/net/efi/mnp.c
+++ b/src/drivers/net/efi/mnp.c
@@ -22,6 +22,7 @@
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
/** @file
*
diff --git a/src/drivers/net/efi/snp.c b/src/drivers/net/efi/snp.c
index 854fa87..a28a7bd 100644
--- a/src/drivers/net/efi/snp.c
+++ b/src/drivers/net/efi/snp.c
@@ -22,6 +22,7 @@
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
#include <ipxe/efi/efi.h>
#include <ipxe/efi/efi_driver.h>