mirror of https://github.com/acidanthera/audk.git
Clarify an error in Map command.
Revert a change in Map command that affected some consistent map names being printed correctly. Fix a library instance mapping in DSC. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11675 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
deff65a4fd
commit
77dd0c814e
|
@ -347,7 +347,7 @@ MappingListHasType(
|
|||
if ( Consist
|
||||
&& (SearchList(MapList, L"HD*", NULL, TRUE, TRUE, L";")
|
||||
||SearchList(MapList, L"CD*", NULL, TRUE, TRUE, L";")
|
||||
||SearchList(MapList, L"AnyF*", NULL, TRUE, TRUE, L";")
|
||||
||SearchList(MapList, L"F*", NULL, TRUE, TRUE, L";")
|
||||
||SearchList(MapList, L"FP*", NULL, TRUE, TRUE, L";"))){
|
||||
return (TRUE);
|
||||
}
|
||||
|
@ -686,7 +686,11 @@ PerformMappingDisplay(
|
|||
FreePool(HandleBuffer);
|
||||
}
|
||||
if (!Found) {
|
||||
ShellPrintHiiEx(gST->ConOut->Mode->CursorColumn, gST->ConOut->Mode->CursorRow-1, NULL, STRING_TOKEN (STR_MAP_NF), gShellLevel2HiiHandle, Specific);
|
||||
if (Specific != NULL) {
|
||||
ShellPrintHiiEx(gST->ConOut->Mode->CursorColumn, gST->ConOut->Mode->CursorRow-1, NULL, STRING_TOKEN (STR_MAP_NF), gShellLevel2HiiHandle, Specific);
|
||||
} else {
|
||||
ShellPrintHiiEx(gST->ConOut->Mode->CursorColumn, gST->ConOut->Mode->CursorRow-1, NULL, STRING_TOKEN (STR_CD_NF), gShellLevel2HiiHandle);
|
||||
}
|
||||
}
|
||||
return (SHELL_SUCCESS);
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
||||
FileHandleLib|ShellPkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
||||
ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
|
||||
SortLib|ShellPkg/Library/BaseSortLib/BaseSortLib.inf
|
||||
SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
|
||||
HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
||||
|
||||
PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
||||
|
|
Loading…
Reference in New Issue