summaryrefslogtreecommitdiffstats
path: root/src/config/config.c
diff options
context:
space:
mode:
authorMichael Brown2023-06-09 15:03:48 +0200
committerMichael Brown2023-06-09 15:37:44 +0200
commit4fa4052c7ebb59e4d4aa396f1563c89118623ec7 (patch)
treee7a8c6faf2b93dcb0679cf63e195dda6d2e7b6e2 /src/config/config.c
parent[efi] Veto the VMware UefiPxeBcDxe driver (diff)
downloadipxe-4fa4052c7ebb59e4d4aa396f1563c89118623ec7.tar.gz
ipxe-4fa4052c7ebb59e4d4aa396f1563c89118623ec7.tar.xz
ipxe-4fa4052c7ebb59e4d4aa396f1563c89118623ec7.zip
[efi] Provide read-only access to EFI variables via settings mechanism
EFI variables do not map neatly to the iPXE settings mechanism, since the EFI variable identifier includes a namespace GUID that cannot cleanly be supplied as part of a setting name. Creating a new EFI variable requires the variable's attributes to be specified, which does not fit within iPXE's settings concept. However, EFI variable names are generally unique even without the namespace GUID, and EFI does provide a mechanism to iterate over all existent variables. We can therefore provide read-only access to EFI variables by comparing only the names and ignoring the namespace GUIDs. Provide an "efi" settings block that implements this mechanism using a syntax such as: echo Platform language is ${efi/PlatformLang:string} show efi/SecureBoot:int8 Settings are returned as raw binary values by default since an EFI variable may contain boolean flags, integer values, ASCII strings, UCS-2 strings, EFI device paths, X.509 certificates, or any other arbitrary blob of data. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r--src/config/config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c
index 40f9c72c..abb7d16a 100644
--- a/src/config/config.c
+++ b/src/config/config.c
@@ -355,6 +355,9 @@ REQUIRE_OBJECT ( vram_settings );
#ifdef ACPI_SETTINGS
REQUIRE_OBJECT ( acpi_settings );
#endif
+#ifdef EFI_SETTINGS
+REQUIRE_OBJECT ( efi_settings );
+#endif
/*
* Drag in selected keyboard map