summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Library/DxeSecurityManagementLib
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2009-12-23 04:55:08 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2009-12-23 04:55:08 +0000
commit2983a79df5840d344194da662e34877483bda903 (patch)
treedc2d3285fdaa11d0df698964192abf48926f5a61 /MdeModulePkg/Library/DxeSecurityManagementLib
parent8f635c36ad1059a064c747fd1f0e38814e7e7c29 (diff)
downloadedk2-2983a79df5840d344194da662e34877483bda903.tar.gz
edk2-2983a79df5840d344194da662e34877483bda903.tar.bz2
edk2-2983a79df5840d344194da662e34877483bda903.zip
Try to get the image form device path by FALSE and TRUE boot policy.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9589 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/DxeSecurityManagementLib')
-rw-r--r--MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.c b/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.c
index a23b747e41..eac96b8886 100644
--- a/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.c
+++ b/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.c
@@ -229,7 +229,16 @@ ExecuteSecurityHandlers (
// Try get file buffer when the handler requires image buffer.
//
if (FileBuffer == NULL) {
+ //
+ // Try to get image by FALSE boot policy for the exact boot file path.
+ //
FileBuffer = GetFileBufferByFilePath (FALSE, FilePath, &FileSize, &AuthenticationStatus);
+ if (FileBuffer == NULL) {
+ //
+ // Try to get image by TRUE boot policy for the inexact boot file path.
+ //
+ FileBuffer = GetFileBufferByFilePath (TRUE, FilePath, &FileSize, &AuthenticationStatus);
+ }
}
}
Status = mSecurityTable[Index].SecurityHandler (