diff options
author | Star Zeng <star.zeng@intel.com> | 2016-08-26 16:27:06 +0800 |
---|---|---|
committer | Star Zeng <star.zeng@intel.com> | 2016-08-29 15:34:23 +0800 |
commit | 37136e069dc0a0b8a47098d80d8f6f742db88c04 (patch) | |
tree | ef3af68e61bb6d3de0b60d1a58ca9b9d409e9944 /IntelFrameworkModulePkg | |
parent | 2bc08e8cd64d2f2ab80f11abc63fc8291126626e (diff) | |
download | edk2-37136e069dc0a0b8a47098d80d8f6f742db88c04.tar.gz edk2-37136e069dc0a0b8a47098d80d8f6f742db88c04.tar.bz2 edk2-37136e069dc0a0b8a47098d80d8f6f742db88c04.zip |
IntelFrameworkModulePkg FwVolDxe: Return correct AuthStatus for FvReadFile
Inherit the authentication status from FV.
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Chao Zhang <chao.b.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Reviewed by: Chao Zhang <chao.b.zhang@intel.com>
Diffstat (limited to 'IntelFrameworkModulePkg')
-rw-r--r-- | IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolRead.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolRead.c b/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolRead.c index 8e2706bb8a..0d9021914f 100644 --- a/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolRead.c +++ b/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolRead.c @@ -1,7 +1,7 @@ /** @file
Implements functions to read firmware file.
- Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions
@@ -405,7 +405,10 @@ FvReadFile ( if ((FvDevice->FwVolHeader->Attributes & EFI_FVB2_MEMORY_MAPPED) == EFI_FVB2_MEMORY_MAPPED) {
*FileAttributes |= EFI_FV_FILE_ATTRIB_MEMORY_MAPPED;
}
- *AuthenticationStatus = 0;
+ //
+ // Inherit the authentication status.
+ //
+ *AuthenticationStatus = FvDevice->AuthenticationStatus;
//
// If Buffer is NULL, we only want to get some information
|