Re: [edk2-devel] [PATCH V3 3/3] MdeModulePkg/BM_UI: Add the new terminal types to related menu

2019-09-19 Thread Gao, Zhichao


> -Original Message-
> From: Bi, Dandan
> Sent: Friday, September 20, 2019 11:05 AM
> To: devel@edk2.groups.io; Gao, Zhichao 
> Cc: Wang, Jian J ; Wu, Hao A ;
> Ni, Ray ; Gao, Liming 
> Subject: RE: [edk2-devel] [PATCH V3 3/3] MdeModulePkg/BM_UI: Add the
> new terminal types to related menu
> 
> > -Original Message-
> > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > Gao, Zhichao
> > Sent: Wednesday, September 18, 2019 1:34 PM
> > To: devel@edk2.groups.io
> > Cc: Wang, Jian J ; Wu, Hao A
> > ; Ni, Ray ; Gao, Liming
> > 
> > Subject: [edk2-devel] [PATCH V3 3/3] MdeModulePkg/BM_UI: Add the
> new
> > terminal types to related menu
> >
> > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2186
> >
> > Add the new introduced terminal types to related setup menu to change
> > the terminal type from setup. Most platforms would have its own
> > configure setup menu and they need to change it to support these.
> > The new introduced terminal types are Linux, XtermR6, VT400 and SCO.
> >
> > Cc: Jian J Wang 
> > Cc: Hao A Wu 
> > Cc: Ray Ni 
> > Cc: Liming Gao 
> > Signed-off-by: Zhichao Gao 
> > ---
> >  .../BootMaintenanceManager.h  | 12 ---
> >  .../BootMaintenanceManagerStrings.uni | 10 +-
> >  .../ConsoleOption.c   | 35 ++-
> >  .../BootMaintenanceManagerUiLib/Data.c| 16 ++---
> >  4 files changed, 39 insertions(+), 34 deletions(-)
> >
> > diff --git
> >
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eManager.h
> >
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eManager.h
> > index ea3cdce794..67847d8bf3 100644
> > ---
> >
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eManager.h
> > +++
> >
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eMa
> > +++ nager.h
> > @@ -1,7 +1,7 @@
> >  /** @file
> >  Header file for boot maintenance module.
> >
> > -Copyright (c) 2004 - 2018, Intel Corporation. All rights
> > reserved.
> > +Copyright (c) 2004 - 2019, Intel Corporation. All rights
> > +reserved.
> >  SPDX-License-Identifier: BSD-2-Clause-Patent
> >
> >  **/
> > @@ -92,7 +92,11 @@ typedef enum _TYPE_OF_TERMINAL {
> >TerminalTypeVt100,
> >TerminalTypeVt100Plus,
> >TerminalTypeVtUtf8,
> > -  TerminalTypeTtyTerm
> > +  TerminalTypeTtyTerm,
> > +  TerminalTypeLinux,
> > +  TerminalTypeXtermR6,
> > +  TerminalTypeVt400,
> > +  TerminalTypeSCO
> >  } TYPE_OF_TERMINAL;
> >
> >  //
> > @@ -1301,12 +1305,12 @@ extern BM_MENU_OPTION ConsoleOutMenu;
> >  extern BM_MENU_OPTION ConsoleErrMenu;
> >  extern BM_MENU_OPTION DriverMenu;
> >  extern BM_MENU_OPTION TerminalMenu;
> > -extern UINT16 TerminalType[5];
> > +extern UINT16 TerminalType[9];
> >  extern COM_ATTR   BaudRateList[19];
> >  extern COM_ATTR   DataBitsList[4];
> >  extern COM_ATTR   ParityList[5];
> >  extern COM_ATTR   StopBitsList[3];
> > -extern EFI_GUID   TerminalTypeGuid[5];
> > +extern EFI_GUID   TerminalTypeGuid[9];
> >  extern EFI_DEVICE_PATH_PROTOCOL   EndDevicePath[];
> >  extern UINT16 mFlowControlType[2];
> >  extern UINT32 mFlowControlValue[2];
> > diff --git
> >
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eManagerStrings.uni
> >
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eManagerStrings.uni
> > index 2e67d27bd0..3d47473e6c 100644
> > ---
> >
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eManagerStrings.uni
> > +++
> >
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> > eMa
> > +++ nagerStrings.uni
> > @@ -1,7 +1,7 @@
> >  ///** @file
> >  //  String definitions for Boot Maintenance Utility.
> >  //
> > -//  Copyright (c) 2004 - 2018, Intel Corporation. All rights
> > reserved.
> > +//  Copyright (c) 2004 - 2019, Intel Corporation. All rights
> > +reserved.
> >  //  SPDX-License-Identifier: BSD-2-Clause-Patent  //  //**/ @@ -233,6
> > +233,14 @@
> > #language fr-FR  "VT_UTF8"

Re: [edk2-devel] [PATCH V3 3/3] MdeModulePkg/BM_UI: Add the new terminal types to related menu

2019-09-19 Thread Dandan Bi
> -Original Message-
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Gao, Zhichao
> Sent: Wednesday, September 18, 2019 1:34 PM
> To: devel@edk2.groups.io
> Cc: Wang, Jian J ; Wu, Hao A ;
> Ni, Ray ; Gao, Liming 
> Subject: [edk2-devel] [PATCH V3 3/3] MdeModulePkg/BM_UI: Add the new
> terminal types to related menu
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2186
> 
> Add the new introduced terminal types to related setup menu to change the
> terminal type from setup. Most platforms would have its own configure
> setup menu and they need to change it to support these.
> The new introduced terminal types are Linux, XtermR6, VT400 and SCO.
> 
> Cc: Jian J Wang 
> Cc: Hao A Wu 
> Cc: Ray Ni 
> Cc: Liming Gao 
> Signed-off-by: Zhichao Gao 
> ---
>  .../BootMaintenanceManager.h  | 12 ---
>  .../BootMaintenanceManagerStrings.uni | 10 +-
>  .../ConsoleOption.c   | 35 ++-
>  .../BootMaintenanceManagerUiLib/Data.c| 16 ++---
>  4 files changed, 39 insertions(+), 34 deletions(-)
> 
> diff --git
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eManager.h
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eManager.h
> index ea3cdce794..67847d8bf3 100644
> ---
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eManager.h
> +++
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eMa
> +++ nager.h
> @@ -1,7 +1,7 @@
>  /** @file
>  Header file for boot maintenance module.
> 
> -Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.
> +Copyright (c) 2004 - 2019, Intel Corporation. All rights reserved.
>  SPDX-License-Identifier: BSD-2-Clause-Patent
> 
>  **/
> @@ -92,7 +92,11 @@ typedef enum _TYPE_OF_TERMINAL {
>TerminalTypeVt100,
>TerminalTypeVt100Plus,
>TerminalTypeVtUtf8,
> -  TerminalTypeTtyTerm
> +  TerminalTypeTtyTerm,
> +  TerminalTypeLinux,
> +  TerminalTypeXtermR6,
> +  TerminalTypeVt400,
> +  TerminalTypeSCO
>  } TYPE_OF_TERMINAL;
> 
>  //
> @@ -1301,12 +1305,12 @@ extern BM_MENU_OPTION
> ConsoleOutMenu;
>  extern BM_MENU_OPTION ConsoleErrMenu;
>  extern BM_MENU_OPTION DriverMenu;
>  extern BM_MENU_OPTION TerminalMenu;
> -extern UINT16 TerminalType[5];
> +extern UINT16 TerminalType[9];
>  extern COM_ATTR   BaudRateList[19];
>  extern COM_ATTR   DataBitsList[4];
>  extern COM_ATTR   ParityList[5];
>  extern COM_ATTR   StopBitsList[3];
> -extern EFI_GUID   TerminalTypeGuid[5];
> +extern EFI_GUID   TerminalTypeGuid[9];
>  extern EFI_DEVICE_PATH_PROTOCOL   EndDevicePath[];
>  extern UINT16 mFlowControlType[2];
>  extern UINT32 mFlowControlValue[2];
> diff --git
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eManagerStrings.uni
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eManagerStrings.uni
> index 2e67d27bd0..3d47473e6c 100644
> ---
> a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eManagerStrings.uni
> +++
> b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanc
> eMa
> +++ nagerStrings.uni
> @@ -1,7 +1,7 @@
>  ///** @file
>  //  String definitions for Boot Maintenance Utility.
>  //
> -//  Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.
> +//  Copyright (c) 2004 - 2019, Intel Corporation. All rights
> +reserved.
>  //  SPDX-License-Identifier: BSD-2-Clause-Patent  //  //**/ @@ -233,6
> +233,14 @@
> #language fr-FR  "VT_UTF8"
>  #string STR_COM_TYPE_4 #language en-US  "TTY_TERM"
> #language fr-FR  "TTY_TERM"
> +#string STR_COM_TYPE_5 #language en-US  "LINUX"
> +   #language fr-FR  "LINUX"
> +#string STR_COM_TYPE_6 #language en-US  "XTERM_R6"
> +   #language fr-FR  "XTERM_R6"
> +#string STR_COM_TYPE_7 #language en-US  "VT_400"
> +   #language fr-FR  "VT_400"
> +#string STR_COM_TYPE_8 #language en-US  "SCO"
> +   #language fr-FR  "SCO"
>  #string STR_RESET  #language en-US  "Reset System"
>  

[edk2-devel] [PATCH V3 3/3] MdeModulePkg/BM_UI: Add the new terminal types to related menu

2019-09-17 Thread Gao, Zhichao
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2186

Add the new introduced terminal types to related setup menu to change
the terminal type from setup. Most platforms would have its own
configure setup menu and they need to change it to support these.
The new introduced terminal types are Linux, XtermR6, VT400 and SCO.

Cc: Jian J Wang 
Cc: Hao A Wu 
Cc: Ray Ni 
Cc: Liming Gao 
Signed-off-by: Zhichao Gao 
---
 .../BootMaintenanceManager.h  | 12 ---
 .../BootMaintenanceManagerStrings.uni | 10 +-
 .../ConsoleOption.c   | 35 ++-
 .../BootMaintenanceManagerUiLib/Data.c| 16 ++---
 4 files changed, 39 insertions(+), 34 deletions(-)

diff --git 
a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h 
b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h
index ea3cdce794..67847d8bf3 100644
--- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h
+++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h
@@ -1,7 +1,7 @@
 /** @file
 Header file for boot maintenance module.
 
-Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.
+Copyright (c) 2004 - 2019, Intel Corporation. All rights reserved.
 SPDX-License-Identifier: BSD-2-Clause-Patent
 
 **/
@@ -92,7 +92,11 @@ typedef enum _TYPE_OF_TERMINAL {
   TerminalTypeVt100,
   TerminalTypeVt100Plus,
   TerminalTypeVtUtf8,
-  TerminalTypeTtyTerm
+  TerminalTypeTtyTerm,
+  TerminalTypeLinux,
+  TerminalTypeXtermR6,
+  TerminalTypeVt400,
+  TerminalTypeSCO
 } TYPE_OF_TERMINAL;
 
 //
@@ -1301,12 +1305,12 @@ extern BM_MENU_OPTION ConsoleOutMenu;
 extern BM_MENU_OPTION ConsoleErrMenu;
 extern BM_MENU_OPTION DriverMenu;
 extern BM_MENU_OPTION TerminalMenu;
-extern UINT16 TerminalType[5];
+extern UINT16 TerminalType[9];
 extern COM_ATTR   BaudRateList[19];
 extern COM_ATTR   DataBitsList[4];
 extern COM_ATTR   ParityList[5];
 extern COM_ATTR   StopBitsList[3];
-extern EFI_GUID   TerminalTypeGuid[5];
+extern EFI_GUID   TerminalTypeGuid[9];
 extern EFI_DEVICE_PATH_PROTOCOL   EndDevicePath[];
 extern UINT16 mFlowControlType[2];
 extern UINT32 mFlowControlValue[2];
diff --git 
a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerStrings.uni
 
b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerStrings.uni
index 2e67d27bd0..3d47473e6c 100644
--- 
a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerStrings.uni
+++ 
b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerStrings.uni
@@ -1,7 +1,7 @@
 ///** @file
 //  String definitions for Boot Maintenance Utility.
 //
-//  Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.
+//  Copyright (c) 2004 - 2019, Intel Corporation. All rights reserved.
 //  SPDX-License-Identifier: BSD-2-Clause-Patent
 //
 //**/
@@ -233,6 +233,14 @@
#language fr-FR  "VT_UTF8"
 #string STR_COM_TYPE_4 #language en-US  "TTY_TERM"
#language fr-FR  "TTY_TERM"
+#string STR_COM_TYPE_5 #language en-US  "LINUX"
+   #language fr-FR  "LINUX"
+#string STR_COM_TYPE_6 #language en-US  "XTERM_R6"
+   #language fr-FR  "XTERM_R6"
+#string STR_COM_TYPE_7 #language en-US  "VT_400"
+   #language fr-FR  "VT_400"
+#string STR_COM_TYPE_8 #language en-US  "SCO"
+   #language fr-FR  "SCO"
 #string STR_RESET  #language en-US  "Reset System"
#language fr-FR  "Reset System"
 #string STR_FORM_GOTO_MAIN #language en-US  "Go Back To Main Page"
diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ConsoleOption.c 
b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ConsoleOption.c
index 7a53b58771..b0641c5ee9 100644
--- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ConsoleOption.c
+++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ConsoleOption.c
@@ -897,6 +897,7 @@ IsTerminalDevicePath (
   VENDOR_DEVICE_PATH*Vendor;
   UART_DEVICE_PATH  *Uart;
   ACPI_HID_DEVICE_PATH  *Acpi;
+  UINTN Index;
 
   IsTerminal = FALSE;
 
@@ -929,37 +930,21 @@ IsTerminalDevicePath (
   }
 
   //
-  // There are four kinds of Terminal types
+  // There are 9 kinds of Terminal types
   // check to see whether this devicepath
   // is one of that type
   //
-  if (CompareGuid (>Guid, [0])) {
-*Termi  = TerminalTypePcAnsi;
-IsTerminal  = TRUE;
-  } else {
-if (CompareGuid