mirror of https://github.com/acidanthera/audk.git
ShellPkg: Add new UEFI Shell 2.1 protocol and fix comments in handle parsing
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15750 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9a6ac65ddd
commit
0a1eb97d37
|
@ -651,8 +651,6 @@ STATIC CONST GUID_INFO_BLOCK mGuidStringList[] = {
|
||||||
{STRING_TOKEN(STR_IPV4_SB), &gEfiIp4ServiceBindingProtocolGuid, NULL},
|
{STRING_TOKEN(STR_IPV4_SB), &gEfiIp4ServiceBindingProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_IPV4), &gEfiIp4ProtocolGuid, NULL},
|
{STRING_TOKEN(STR_IPV4), &gEfiIp4ProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_IPV4_CFG), &gEfiIp4ConfigProtocolGuid, NULL},
|
{STRING_TOKEN(STR_IPV4_CFG), &gEfiIp4ConfigProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_SHELL_PARAMETERS), &gEfiShellParametersProtocolGuid, NULL},
|
|
||||||
{STRING_TOKEN(STR_SHELL), &gEfiShellProtocolGuid, NULL},
|
|
||||||
{STRING_TOKEN(STR_UDPV4_SB), &gEfiUdp4ServiceBindingProtocolGuid, NULL},
|
{STRING_TOKEN(STR_UDPV4_SB), &gEfiUdp4ServiceBindingProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_UDPV4), &gEfiUdp4ProtocolGuid, NULL},
|
{STRING_TOKEN(STR_UDPV4), &gEfiUdp4ProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_MTFTPV4_SB), &gEfiMtftp4ServiceBindingProtocolGuid, NULL},
|
{STRING_TOKEN(STR_MTFTPV4_SB), &gEfiMtftp4ServiceBindingProtocolGuid, NULL},
|
||||||
|
@ -749,6 +747,17 @@ STATIC CONST GUID_INFO_BLOCK mGuidStringList[] = {
|
||||||
//
|
//
|
||||||
{STRING_TOKEN(STR_IDE_CONT_INIT), &gEfiIdeControllerInitProtocolGuid, NULL},
|
{STRING_TOKEN(STR_IDE_CONT_INIT), &gEfiIdeControllerInitProtocolGuid, NULL},
|
||||||
|
|
||||||
|
//
|
||||||
|
// UEFI Shell Spec 2.0
|
||||||
|
//
|
||||||
|
{STRING_TOKEN(STR_SHELL_PARAMETERS), &gEfiShellParametersProtocolGuid, NULL},
|
||||||
|
{STRING_TOKEN(STR_SHELL), &gEfiShellProtocolGuid, NULL},
|
||||||
|
|
||||||
|
//
|
||||||
|
// UEFI Shell Spec 2.1
|
||||||
|
//
|
||||||
|
{STRING_TOKEN(STR_SHELL_DYNAMIC), &gEfiShellDynamicCommandProtocolGuid, NULL},
|
||||||
|
|
||||||
//
|
//
|
||||||
// terminator
|
// terminator
|
||||||
//
|
//
|
||||||
|
@ -856,9 +865,11 @@ GetProtocolInformationDump(
|
||||||
/**
|
/**
|
||||||
Function to get the Guid for a protocol or struct based on it's string name.
|
Function to get the Guid for a protocol or struct based on it's string name.
|
||||||
|
|
||||||
|
do not modify the returned Guid.
|
||||||
|
|
||||||
@param[in] Name The pointer to the string name.
|
@param[in] Name The pointer to the string name.
|
||||||
@param[in] Lang The pointer to the language code.
|
@param[in] Lang The pointer to the language code.
|
||||||
@param[in] Guid The pointer to the Guid.
|
@param[out] Guid The pointer to the Guid.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The operation was sucessful.
|
@retval EFI_SUCCESS The operation was sucessful.
|
||||||
**/
|
**/
|
||||||
|
@ -867,7 +878,7 @@ EFIAPI
|
||||||
GetGuidFromStringName(
|
GetGuidFromStringName(
|
||||||
IN CONST CHAR16 *Name,
|
IN CONST CHAR16 *Name,
|
||||||
IN CONST CHAR8 *Lang OPTIONAL,
|
IN CONST CHAR8 *Lang OPTIONAL,
|
||||||
IN EFI_GUID **Guid
|
OUT EFI_GUID **Guid
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
CONST GUID_INFO_BLOCK *ListWalker;
|
CONST GUID_INFO_BLOCK *ListWalker;
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue