diff options
author | Thamballi Sreelalitha <quic_sreelali@quicinc.com> | 2024-07-04 14:16:03 +0530 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-07-09 18:03:04 +0000 |
commit | 7aaee521a1966e71a51b71b73f5e3bbddb6faa31 (patch) | |
tree | a11b375e92549a9c9e0ac51bdefe9c79aa868584 | |
parent | 426b69830efff788f2c17a4b920a84d6e08739c8 (diff) | |
download | edk2-7aaee521a1966e71a51b71b73f5e3bbddb6faa31.tar.gz |
FmpDevicePkg: Correct broken Depex in FmpDxe
Commit 2f6f3329add3 ("FmpDevicePkg/FmpDxe: Use new Variable Lock interface"),
moved to using gEdkiiVariablePolicyProtocolGuid instead of
gEdkiiVariableLockProtocolGuid however the Depex was not updated to
reflect the change.
Correct the dependency.
Signed-off-by: Vishal Oliyil Kunnil <quic_vishalo@quicinc.com>
-rwxr-xr-x[-rw-r--r--] | FmpDevicePkg/FmpDxe/FmpDxe.inf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FmpDevicePkg/FmpDxe/FmpDxe.inf b/FmpDevicePkg/FmpDxe/FmpDxe.inf index 1c296388b0..d7a02733de 100644..100755 --- a/FmpDevicePkg/FmpDxe/FmpDxe.inf +++ b/FmpDevicePkg/FmpDxe/FmpDxe.inf @@ -5,6 +5,7 @@ #
# Copyright (c) 2016, Microsoft Corporation. All rights reserved.<BR>
# Copyright (c) 2018 - 2021, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
@@ -78,7 +79,7 @@ gEfiMdeModulePkgTokenSpaceGuid.PcdTestKeyUsed ## SOMETIMES_PRODUCES
[Depex]
- gEfiVariableWriteArchProtocolGuid AND gEdkiiVariableLockProtocolGuid
+ gEfiVariableWriteArchProtocolGuid AND gEdkiiVariablePolicyProtocolGuid
[UserExtensions.TianoCore."ExtraFiles"]
FmpDxeExtra.uni
|