diff options
| author | Jan Setje-Eilers <jan.setjeeilers@oracle.com> | 2024-08-16 15:06:43 -0700 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2025-02-18 10:21:19 -0500 |
| commit | c66ce2a7e4f9c76057ceff8a3168582ebc1d4c4e (patch) | |
| tree | f5935e202d4e77b3cfac72dfb2fa22d9b3150fb7 /include | |
| parent | 3c3295dd581d000c4f1382811b318bda50218fcc (diff) | |
| download | efi-boot-shim-c66ce2a7e4f9c76057ceff8a3168582ebc1d4c4e.tar.gz efi-boot-shim-c66ce2a7e4f9c76057ceff8a3168582ebc1d4c4e.zip | |
Allow indepdent SkuSi and SBAT revocation updates
While a revocations.efi binary can contain either SBAT revocations,
SkuSi revocations, or both, it is desirable to package them separately
so that higher level tools such as fwupd can decide which ones to put
in place at a given moment. This changes revocations.efi to
revocations_sbat.efi and revocations_sku.efi
Signed-off-by: Jan Setje-Eilers <Jan.SetjeEilers@oracle.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/sbat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sbat.h b/include/sbat.h index bb523e7e..093bb64a 100644 --- a/include/sbat.h +++ b/include/sbat.h @@ -38,7 +38,8 @@ #define POLICY_RESET 3 #define POLICY_NOTREAD 255 -#define REVOCATIONFILE L"revocations.efi" +#define SBATREVOCATIONFILE L"revocations_sbat.efi" +#define SKUSIREVOCATIONFILE L"revocations_sku.efi" extern UINTN _sbat, _esbat; |
