diff options
author | Tobias Fleig <tfleig@meta.com> | 2024-04-02 12:54:30 +0200 |
---|---|---|
committer | Tobias Fleig <tfleig@meta.com> | 2024-04-19 14:58:46 +0200 |
commit | aea81bc0ff97ce553d244f91cceea1545c490175 (patch) | |
tree | 70d35db96f11d32d1ff3918bf7c6546754034826 /src/fundamental/uki.h | |
parent | Merge pull request #32333 from DaanDeMeyer/mkosi (diff) | |
download | systemd-aea81bc0ff97ce553d244f91cceea1545c490175.tar.xz systemd-aea81bc0ff97ce553d244f91cceea1545c490175.zip |
stub: Add support for .ucode UKI section
This commit adds support for loading, measuring and handling a ".ucode"
UKI section. This section is functionally an initrd, intended for
microcode updates. As such it will always be passed to the kernel first.
Diffstat (limited to '')
-rw-r--r-- | src/fundamental/uki.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fundamental/uki.h b/src/fundamental/uki.h index ffa960f01b..8ab742dd58 100644 --- a/src/fundamental/uki.h +++ b/src/fundamental/uki.h @@ -10,6 +10,7 @@ typedef enum UnifiedSection { UNIFIED_SECTION_OSREL, UNIFIED_SECTION_CMDLINE, UNIFIED_SECTION_INITRD, + UNIFIED_SECTION_UCODE, UNIFIED_SECTION_SPLASH, UNIFIED_SECTION_DTB, UNIFIED_SECTION_UNAME, |