diff options
author | Aditya Garg <[email protected]> | 2022-10-27 10:01:43 +0000 |
---|---|---|
committer | Mimi Zohar <[email protected]> | 2022-11-01 14:12:28 -0400 |
commit | 0be56a116220f9e5731a6609e66a11accfe8d8e2 (patch) | |
tree | 9e95f1b7b60ac00305216b9792dc782bad4ba8ee | |
parent | 5adedd42245af0860ebda8fe0949f24f5204c1b1 (diff) |
efi: Add iMac Pro 2017 to uefi skip cert quirk
The iMac Pro 2017 is also a T2 Mac. Thus add it to the list of uefi skip
cert.
Cc: [email protected]
Fixes: 155ca952c7ca ("efi: Do not import certificates from UEFI Secure Boot for T2 Macs")
Link: https://lore.kernel.org/linux-integrity/[email protected]/
Signed-off-by: Aditya Garg <[email protected]>
Signed-off-by: Mimi Zohar <[email protected]>
-rw-r--r-- | security/integrity/platform_certs/load_uefi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/integrity/platform_certs/load_uefi.c b/security/integrity/platform_certs/load_uefi.c index b78753d27d8e..d1fdd113450a 100644 --- a/security/integrity/platform_certs/load_uefi.c +++ b/security/integrity/platform_certs/load_uefi.c @@ -35,6 +35,7 @@ static const struct dmi_system_id uefi_skip_cert[] = { { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacPro7,1") }, { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMac20,1") }, { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMac20,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMacPro1,1") }, { } }; |