X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FConsole%2FConPlatformDxe%2FConPlatform.c;h=1a32cb301605d9d5f44b0ecfaf5b7ded7c84efdb;hp=178be23ca52cb583fb6b2b95c53233389ca946a0;hb=ff37790d3d3805b232cecb19867d19f44860112c;hpb=859b72fa7e3ff1cf1d7476a3446af4ebbb5fe3e6 diff --git a/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c b/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c index 178be23ca5..1a32cb3016 100644 --- a/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c +++ b/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c @@ -279,7 +279,7 @@ Returns: // Append the device path to the ConInDev environment variable // ConPlatformUpdateDeviceVariable ( - VarConsoleInpDev, + L"ConInDev", DevicePath, APPEND ); @@ -289,7 +289,7 @@ Returns: // then install EfiConsoleInDeviceGuid onto ControllerHandle // Status = ConPlatformUpdateDeviceVariable ( - VarConsoleInp, + L"ConIn", DevicePath, CHECK ); @@ -387,7 +387,7 @@ Returns: // Append the device path to the ConOutDev environment variable // ConPlatformUpdateDeviceVariable ( - VarConsoleOutDev, + L"ConOutDev", DevicePath, APPEND ); @@ -395,7 +395,7 @@ Returns: // Append the device path to the StdErrDev environment variable // ConPlatformUpdateDeviceVariable ( - VarErrorOutDev, + L"ErrOutDev", DevicePath, APPEND ); @@ -405,7 +405,7 @@ Returns: // then install EfiConsoleOutDeviceGuid onto ControllerHandle // Status = ConPlatformUpdateDeviceVariable ( - VarConsoleOut, + L"ConOut", DevicePath, CHECK ); @@ -496,7 +496,7 @@ Returns: // Remove DevicePath from ConInDev // ConPlatformUpdateDeviceVariable ( - VarConsoleInpDev, + L"ConInDev", DevicePath, DELETE ); @@ -569,12 +569,12 @@ Returns: // Remove DevicePath from ConOutDev, and StdErrDev // ConPlatformUpdateDeviceVariable ( - VarConsoleOutDev, + L"ConOutDev", DevicePath, DELETE ); ConPlatformUpdateDeviceVariable ( - VarErrorOutDev, + L"ErrOutDev", DevicePath, DELETE );