diff options
| author | John-Mark Gurney <jmg@FreeBSD.org> | 2023-02-22 02:27:37 +0000 |
|---|---|---|
| committer | John-Mark Gurney <jmg@FreeBSD.org> | 2023-02-22 04:10:12 +0000 |
| commit | ee97f198b42d50437f87aa4111d478eca2a5be16 (patch) | |
| tree | 58fc17f9bb0f5f1e01491cd2eefbef0aa8c0d028 /stand/efi | |
| parent | 19850ee07363ffd97b4ba3c06361392ce9834440 (diff) | |
Diffstat (limited to 'stand/efi')
| -rw-r--r-- | stand/efi/loader/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c index 446c267a517a..9ff5f1dd7674 100644 --- a/stand/efi/loader/main.c +++ b/stand/efi/loader/main.c @@ -1187,7 +1187,8 @@ main(int argc, CHAR16 *argv[]) #if !defined(__arm__) for (k = 0; k < ST->NumberOfTableEntries; k++) { guid = &ST->ConfigurationTable[k].VendorGuid; - if (!memcmp(guid, &smbios, sizeof(EFI_GUID))) { + if (!memcmp(guid, &smbios, sizeof(EFI_GUID)) || + !memcmp(guid, &smbios3, sizeof(EFI_GUID))) { char buf[40]; snprintf(buf, sizeof(buf), "%p", |
