From a538a7bbab7d8d01749df86e8b18b3144d6d4427 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Wed, 2 Aug 2023 12:54:03 +0000 Subject: [PATCH] linter: skip native API check for more UEFI routines --- scripts/lint.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/lint.py b/scripts/lint.py index c243ca16..85de2bfc 100644 --- a/scripts/lint.py +++ b/scripts/lint.py @@ -571,6 +571,8 @@ class FeatureNtdllNtoskrnlApi(Lint): "RtlCreateUserProcess", "NtProtectVirtualMemory", "NtEnumerateSystemEnvironmentValuesEx", + "NtQuerySystemEnvironmentValueEx", + "NtQuerySystemEnvironmentValue", ): # ntoskrnl.exe does not export these routines continue @@ -581,6 +583,7 @@ class FeatureNtdllNtoskrnlApi(Lint): "KeStackAttachProcess", "ObfDereferenceObject", "KeUnstackDetachProcess", + "ExGetFirmwareEnvironmentVariable", ): # ntdll.dll does not export these routines continue