]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[build] Mark FDT management tools as permitted for UEFI Secure Boot
authorMichael Brown <mcb30@ipxe.org>
Wed, 28 Jan 2026 16:12:40 +0000 (16:12 +0000)
committerMichael Brown <mcb30@ipxe.org>
Wed, 28 Jan 2026 16:20:51 +0000 (16:20 +0000)
An EFI build of iPXE does not directly make use of a flattened device
tree (FDT) itself, but may pass on a device tree that the user chose
to download using the "fdt" command.

Review the simple files used to implement the "fdt" command and mark
these as permitted for UEFI Secure Boot.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/hci/commands/fdt_cmd.c
src/include/usr/fdtmgmt.h
src/usr/fdtmgmt.c

index 7cd39279b0bff15293795f510311945b0dad89f4..cc3509fc46be246e3da8892321edcd8d91c64c6e 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
 
 #include <getopt.h>
 #include <ipxe/command.h>
index 3d3aef859d7dd6f727486bda7e4db053a78ed7f4..182df29746f113d754a0a7d35fb8d73db3cedcc1 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
 
 #include <ipxe/image.h>
 
index dabeef2c8b2c5d3377c4f19c91c1f6ddbdee5a25..9952ec47ad9f839f93e725c9e9c835709a06362f 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
 
 #include <ipxe/fdt.h>
 #include <usr/fdtmgmt.h>