* [PATCH v2 0/1] UefiPayloadPkg: Make TerminalDxe build time configurable @ 2020-06-24 9:57 marcello.bauer 2020-06-24 9:57 ` [PATCH v2 1/1] " Marcello Sylvester Bauer 0 siblings, 1 reply; 7+ messages in thread From: marcello.bauer @ 2020-06-24 9:57 UTC (permalink / raw) To: devel As the TerminalDxe significantly slows down the boot menu rendering, add a DISABLE_SERIAL_TERMINAL option to disable it. Changes in v2: - do not change the default behaviour and add an option to disable it instead Patrick Rudolph (1): UefiPayloadPkg: Make TerminalDxe build time configurable UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ 3 files changed, 12 insertions(+) -- 2.25.4 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable 2020-06-24 9:57 [PATCH v2 0/1] UefiPayloadPkg: Make TerminalDxe build time configurable marcello.bauer @ 2020-06-24 9:57 ` Marcello Sylvester Bauer 2020-06-24 14:07 ` Ma, Maurice 2020-06-24 14:32 ` Guo Dong 0 siblings, 2 replies; 7+ messages in thread From: Marcello Sylvester Bauer @ 2020-06-24 9:57 UTC (permalink / raw) To: devel; +Cc: Patrick Rudolph, Christian Walter, Maurice Ma, Guo Dong, Benjamin You From: Patrick Rudolph <patrick.rudolph@9elements.com> As the TerminalDxe significantly slows down the boot menu rendering, add the DISABLE_SERIAL_TERMINAL option to disable it at build time. Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Signed-off-by: Marcello Sylvester Bauer <marcello.bauer@9elements.com> Cc: Patrick Rudolph <patrick.rudolph@9elements.com> Cc: Christian Walter <christian.walter@9elements.com> Cc: Maurice Ma <maurice.ma@intel.com> Cc: Guo Dong <guo.dong@intel.com> Cc: Benjamin You <benjamin.you@intel.com> --- UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ 3 files changed, 12 insertions(+) diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc index c6c47833871b..49f42285882d 100644 --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc @@ -58,6 +58,9 @@ [Defines] DEFINE UART_DEFAULT_STOP_BITS = 1 DEFINE DEFAULT_TERMINAL_TYPE = 0 + # Enabling the serial terminal will slow down the boot menu rendering! + DEFINE DISABLE_SERIAL_TERMINAL = FALSE + # # typedef struct { # UINT16 VendorId; ///< Vendor ID to match the PCI device. The value 0xFFFF terminates the list of entries. @@ -502,7 +505,9 @@ [Components.IA32] MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!if $(DISABLE_SERIAL_TERMINAL) == FALSE MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf +!endif UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #------------------------------ diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc index 5559b1258521..33805902f705 100644 --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc @@ -59,6 +59,9 @@ [Defines] DEFINE UART_DEFAULT_STOP_BITS = 1 DEFINE DEFAULT_TERMINAL_TYPE = 0 + # Enabling the serial terminal will slow down the boot menu redering! + DEFINE DISABLE_SERIAL_TERMINAL = FALSE + # # typedef struct { # UINT16 VendorId; ///< Vendor ID to match the PCI device. The value 0xFFFF terminates the list of entries. @@ -504,7 +507,9 @@ [Components.X64] MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!if $(DISABLE_SERIAL_TERMINAL) == FALSE MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf +!endif UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #------------------------------ diff --git a/UefiPayloadPkg/UefiPayloadPkg.fdf b/UefiPayloadPkg/UefiPayloadPkg.fdf index dfbcde566849..03ff6a9595d1 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.fdf +++ b/UefiPayloadPkg/UefiPayloadPkg.fdf @@ -131,7 +131,9 @@ [FV.DXEFV] INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!if $(DISABLE_SERIAL_TERMINAL) == FALSE INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf +!endif INF UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf # -- 2.25.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable 2020-06-24 9:57 ` [PATCH v2 1/1] " Marcello Sylvester Bauer @ 2020-06-24 14:07 ` Ma, Maurice 2020-06-24 14:32 ` Guo Dong 1 sibling, 0 replies; 7+ messages in thread From: Ma, Maurice @ 2020-06-24 14:07 UTC (permalink / raw) To: Marcello Sylvester Bauer, devel@edk2.groups.io Cc: Patrick Rudolph, Christian Walter, Dong, Guo, You, Benjamin Reviewed-by: Maurice Ma <maurice.ma@intel.com> > -----Original Message----- > From: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > Sent: Wednesday, June 24, 2020 2:58 > To: devel@edk2.groups.io > Cc: Patrick Rudolph <patrick.rudolph@9elements.com>; Christian Walter > <christian.walter@9elements.com>; Ma, Maurice <maurice.ma@intel.com>; > Dong, Guo <guo.dong@intel.com>; You, Benjamin <benjamin.you@intel.com> > Subject: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time > configurable > > From: Patrick Rudolph <patrick.rudolph@9elements.com> > > As the TerminalDxe significantly slows down the boot menu rendering, add the > DISABLE_SERIAL_TERMINAL option to disable it at build time. > > Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> > Signed-off-by: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > Cc: Patrick Rudolph <patrick.rudolph@9elements.com> > Cc: Christian Walter <christian.walter@9elements.com> > Cc: Maurice Ma <maurice.ma@intel.com> > Cc: Guo Dong <guo.dong@intel.com> > Cc: Benjamin You <benjamin.you@intel.com> > --- > UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ > UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ > UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ > 3 files changed, 12 insertions(+) > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > index c6c47833871b..49f42285882d 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > @@ -58,6 +58,9 @@ [Defines] > DEFINE UART_DEFAULT_STOP_BITS = 1 DEFINE > DEFAULT_TERMINAL_TYPE = 0 + # Enabling the serial terminal will slow > down the boot menu rendering!+ DEFINE DISABLE_SERIAL_TERMINAL = > FALSE+ # # typedef struct { # UINT16 VendorId; ///< Vendor ID to > match the PCI device. The value 0xFFFF terminates the list of entries.@@ - > 502,7 +505,9 @@ [Components.IA32] > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.in > f+!if $(DISABLE_SERIAL_TERMINAL) == FALSE > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf+!endif > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #-------------------- > ----------diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > index 5559b1258521..33805902f705 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > @@ -59,6 +59,9 @@ [Defines] > DEFINE UART_DEFAULT_STOP_BITS = 1 DEFINE > DEFAULT_TERMINAL_TYPE = 0 + # Enabling the serial terminal will slow > down the boot menu redering!+ DEFINE DISABLE_SERIAL_TERMINAL = > FALSE+ # # typedef struct { # UINT16 VendorId; ///< Vendor ID to > match the PCI device. The value 0xFFFF terminates the list of entries.@@ - > 504,7 +507,9 @@ [Components.X64] > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.in > f+!if $(DISABLE_SERIAL_TERMINAL) == FALSE > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf+!endif > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #-------------------- > ----------diff --git a/UefiPayloadPkg/UefiPayloadPkg.fdf > b/UefiPayloadPkg/UefiPayloadPkg.fdf > index dfbcde566849..03ff6a9595d1 100644 > --- a/UefiPayloadPkg/UefiPayloadPkg.fdf > +++ b/UefiPayloadPkg/UefiPayloadPkg.fdf > @@ -131,7 +131,9 @@ [FV.DXEFV] > INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf INF > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.in > f+!if $(DISABLE_SERIAL_TERMINAL) == FALSE INF > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf+!endif INF > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #-- > 2.25.4 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable 2020-06-24 9:57 ` [PATCH v2 1/1] " Marcello Sylvester Bauer 2020-06-24 14:07 ` Ma, Maurice @ 2020-06-24 14:32 ` Guo Dong 2020-07-13 10:13 ` Marcello Sylvester Bauer 1 sibling, 1 reply; 7+ messages in thread From: Guo Dong @ 2020-06-24 14:32 UTC (permalink / raw) To: Marcello Sylvester Bauer, devel@edk2.groups.io Cc: Patrick Rudolph, Christian Walter, Ma, Maurice, You, Benjamin Reviewed-by: Dong, Guo <guo.dong@intel.com> Thanks, Guo > -----Original Message----- > From: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > Sent: Wednesday, June 24, 2020 2:58 AM > To: devel@edk2.groups.io > Cc: Patrick Rudolph <patrick.rudolph@9elements.com>; Christian Walter > <christian.walter@9elements.com>; Ma, Maurice <maurice.ma@intel.com>; > Dong, Guo <guo.dong@intel.com>; You, Benjamin > <benjamin.you@intel.com> > Subject: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time > configurable > > From: Patrick Rudolph <patrick.rudolph@9elements.com> > > As the TerminalDxe significantly slows down the boot menu rendering, > add the DISABLE_SERIAL_TERMINAL option to disable it at build time. > > Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> > Signed-off-by: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > Cc: Patrick Rudolph <patrick.rudolph@9elements.com> > Cc: Christian Walter <christian.walter@9elements.com> > Cc: Maurice Ma <maurice.ma@intel.com> > Cc: Guo Dong <guo.dong@intel.com> > Cc: Benjamin You <benjamin.you@intel.com> > --- > UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ > UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ > UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ > 3 files changed, 12 insertions(+) > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > index c6c47833871b..49f42285882d 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > @@ -58,6 +58,9 @@ [Defines] > DEFINE UART_DEFAULT_STOP_BITS = 1 > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > + # Enabling the serial terminal will slow down the boot menu rendering! > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > + > > # > > # typedef struct { > > # UINT16 VendorId; ///< Vendor ID to match the PCI device. The > value 0xFFFF terminates the list of entries. > > @@ -502,7 +505,9 @@ [Components.IA32] > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > xe.inf > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > +!endif > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > #------------------------------ > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > index 5559b1258521..33805902f705 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > @@ -59,6 +59,9 @@ [Defines] > DEFINE UART_DEFAULT_STOP_BITS = 1 > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > + # Enabling the serial terminal will slow down the boot menu redering! > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > + > > # > > # typedef struct { > > # UINT16 VendorId; ///< Vendor ID to match the PCI device. The > value 0xFFFF terminates the list of entries. > > @@ -504,7 +507,9 @@ [Components.X64] > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > xe.inf > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > +!endif > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > #------------------------------ > > diff --git a/UefiPayloadPkg/UefiPayloadPkg.fdf > b/UefiPayloadPkg/UefiPayloadPkg.fdf > index dfbcde566849..03ff6a9595d1 100644 > --- a/UefiPayloadPkg/UefiPayloadPkg.fdf > +++ b/UefiPayloadPkg/UefiPayloadPkg.fdf > @@ -131,7 +131,9 @@ [FV.DXEFV] > INF > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > INF > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > xe.inf > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > +!endif > > INF UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > # > > -- > 2.25.4 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable 2020-06-24 14:32 ` Guo Dong @ 2020-07-13 10:13 ` Marcello Sylvester Bauer 2020-07-13 15:58 ` [edk2-devel] " Guo Dong 0 siblings, 1 reply; 7+ messages in thread From: Marcello Sylvester Bauer @ 2020-07-13 10:13 UTC (permalink / raw) To: Dong, Guo Cc: devel@edk2.groups.io, Patrick Rudolph, Christian Walter, Ma, Maurice, You, Benjamin [-- Attachment #1: Type: text/plain, Size: 7356 bytes --] Hello Guo, regarding the master commit 48aa2edf5dae7a1e819ae01c43a326b6c97f20b1, I noticed that the patch was not merged properly. Instead of making TerminalDxe depend on DISABLE_SERIAL_TERMINAL, it does apply it to GraphicsConsoleDxe. Therefore it does not work as expected. Did this happen by mistake? Best regards, Marcello PS: Here is a diff of the commit in the master branch compared to my submission: diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc index 9aab54461986..1a8b1792f24c 100644 --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc @@ -506,10 +506,10 @@ [Components.IA32] # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf - MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf !if $(DISABLE_SERIAL_TERMINAL) == FALSE + MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!endif MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf -!endif UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #------------------------------ diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc index a768a8702c66..650a72162a29 100644 --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc @@ -507,10 +507,10 @@ [Components.X64] # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf - MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf !if $(DISABLE_SERIAL_TERMINAL) == FALSE + MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!endif MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf -!endif UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #------------------------------ On Wed, Jun 24, 2020 at 4:32 PM Dong, Guo <guo.dong@intel.com> wrote: > > Reviewed-by: Dong, Guo <guo.dong@intel.com> > > Thanks, > Guo > > > -----Original Message----- > > From: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > > Sent: Wednesday, June 24, 2020 2:58 AM > > To: devel@edk2.groups.io > > Cc: Patrick Rudolph <patrick.rudolph@9elements.com>; Christian Walter > > <christian.walter@9elements.com>; Ma, Maurice <maurice.ma@intel.com>; > > Dong, Guo <guo.dong@intel.com>; You, Benjamin > > <benjamin.you@intel.com> > > Subject: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time > > configurable > > > > From: Patrick Rudolph <patrick.rudolph@9elements.com> > > > > As the TerminalDxe significantly slows down the boot menu rendering, > > add the DISABLE_SERIAL_TERMINAL option to disable it at build time. > > > > Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> > > Signed-off-by: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > > Cc: Patrick Rudolph <patrick.rudolph@9elements.com> > > Cc: Christian Walter <christian.walter@9elements.com> > > Cc: Maurice Ma <maurice.ma@intel.com> > > Cc: Guo Dong <guo.dong@intel.com> > > Cc: Benjamin You <benjamin.you@intel.com> > > --- > > UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ > > UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ > > UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ > > 3 files changed, 12 insertions(+) > > > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > index c6c47833871b..49f42285882d 100644 > > --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > @@ -58,6 +58,9 @@ [Defines] > > DEFINE UART_DEFAULT_STOP_BITS = 1 > > > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > > > > > + # Enabling the serial terminal will slow down the boot menu rendering! > > > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > > > + > > > > # > > > > # typedef struct { > > > > # UINT16 VendorId; ///< Vendor ID to match the PCI > device. The > > value 0xFFFF terminates the list of entries. > > > > @@ -502,7 +505,9 @@ [Components.IA32] > > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > > xe.inf > > > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > > > +!endif > > > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > > > > > #------------------------------ > > > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > index 5559b1258521..33805902f705 100644 > > --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > @@ -59,6 +59,9 @@ [Defines] > > DEFINE UART_DEFAULT_STOP_BITS = 1 > > > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > > > > > + # Enabling the serial terminal will slow down the boot menu redering! > > > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > > > + > > > > # > > > > # typedef struct { > > > > # UINT16 VendorId; ///< Vendor ID to match the PCI > device. The > > value 0xFFFF terminates the list of entries. > > > > @@ -504,7 +507,9 @@ [Components.X64] > > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > > xe.inf > > > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > > > +!endif > > > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > > > > > #------------------------------ > > > > diff --git a/UefiPayloadPkg/UefiPayloadPkg.fdf > > b/UefiPayloadPkg/UefiPayloadPkg.fdf > > index dfbcde566849..03ff6a9595d1 100644 > > --- a/UefiPayloadPkg/UefiPayloadPkg.fdf > > +++ b/UefiPayloadPkg/UefiPayloadPkg.fdf > > @@ -131,7 +131,9 @@ [FV.DXEFV] > > INF > > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > > > INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > > INF > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > > xe.inf > > > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > > > INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > > > +!endif > > > > INF UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > > > > > # > > > > -- > > 2.25.4 > > -- *[Marcello Sylvester Bauer]* 9elements Agency GmbH, Kortumstraße 19-21, 44787 Bochum, Germany Email: [DEINE EMAIL ADDRESSE] <https://static.9elements.com/email_signatur.html> Phone: *+49 234 68 94 188 <+492346894188>* Mobile: *+49 1722847618 <+491722847618>* Sitz der Gesellschaft: Bochum Handelsregister: Amtsgericht Bochum, HRB 17519 Geschäftsführung: Sebastian Deutsch, Eray Basar Datenschutzhinweise nach Art. 13 DSGVO <https://9elements.com/privacy> [-- Attachment #2: Type: text/html, Size: 11754 bytes --] ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable 2020-07-13 10:13 ` Marcello Sylvester Bauer @ 2020-07-13 15:58 ` Guo Dong 2020-07-13 16:54 ` Marcello Sylvester Bauer 0 siblings, 1 reply; 7+ messages in thread From: Guo Dong @ 2020-07-13 15:58 UTC (permalink / raw) To: devel@edk2.groups.io, marcello.bauer@9elements.com Cc: Patrick Rudolph, Christian Walter, Ma, Maurice, You, Benjamin [-- Attachment #1: Type: text/plain, Size: 8479 bytes --] Hi Marcello, I had fixed this issue in latest UefipayloadPkg. Please double check. Sorry for the merge mistake. There is some issues to apply the patch copied from the email. So I manually add the changes since only few lines changes. But the mistake happens in that time ☹. I would be great if we could review and merge directly from GitHub lately. Thanks, Guo From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Marcello Sylvester Bauer Sent: Monday, July 13, 2020 3:14 AM To: Dong, Guo <guo.dong@intel.com> Cc: devel@edk2.groups.io; Patrick Rudolph <patrick.rudolph@9elements.com>; Christian Walter <christian.walter@9elements.com>; Ma, Maurice <maurice.ma@intel.com>; You, Benjamin <benjamin.you@intel.com> Subject: Re: [edk2-devel] [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable Hello Guo, regarding the master commit 48aa2edf5dae7a1e819ae01c43a326b6c97f20b1, I noticed that the patch was not merged properly. Instead of making TerminalDxe depend on DISABLE_SERIAL_TERMINAL, it does apply it to GraphicsConsoleDxe. Therefore it does not work as expected. Did this happen by mistake? Best regards, Marcello PS: Here is a diff of the commit in the master branch compared to my submission: diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc index 9aab54461986..1a8b1792f24c 100644 --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc @@ -506,10 +506,10 @@ [Components.IA32] # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf - MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf !if $(DISABLE_SERIAL_TERMINAL) == FALSE + MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!endif MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf -!endif UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #------------------------------ diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc index a768a8702c66..650a72162a29 100644 --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc @@ -507,10 +507,10 @@ [Components.X64] # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf - MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf !if $(DISABLE_SERIAL_TERMINAL) == FALSE + MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf +!endif MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf -!endif UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf #------------------------------ On Wed, Jun 24, 2020 at 4:32 PM Dong, Guo <guo.dong@intel.com<mailto:guo.dong@intel.com>> wrote: Reviewed-by: Dong, Guo <guo.dong@intel.com<mailto:guo.dong@intel.com>> Thanks, Guo > -----Original Message----- > From: Marcello Sylvester Bauer <marcello.bauer@9elements.com<mailto:marcello.bauer@9elements.com>> > Sent: Wednesday, June 24, 2020 2:58 AM > To: devel@edk2.groups.io<mailto:devel@edk2.groups.io> > Cc: Patrick Rudolph <patrick.rudolph@9elements.com<mailto:patrick.rudolph@9elements.com>>; Christian Walter > <christian.walter@9elements.com<mailto:christian.walter@9elements.com>>; Ma, Maurice <maurice.ma@intel.com<mailto:maurice.ma@intel.com>>; > Dong, Guo <guo.dong@intel.com<mailto:guo.dong@intel.com>>; You, Benjamin > <benjamin.you@intel.com<mailto:benjamin.you@intel.com>> > Subject: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time > configurable > > From: Patrick Rudolph <patrick.rudolph@9elements.com<mailto:patrick.rudolph@9elements.com>> > > As the TerminalDxe significantly slows down the boot menu rendering, > add the DISABLE_SERIAL_TERMINAL option to disable it at build time. > > Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com<mailto:patrick.rudolph@9elements.com>> > Signed-off-by: Marcello Sylvester Bauer <marcello.bauer@9elements.com<mailto:marcello.bauer@9elements.com>> > Cc: Patrick Rudolph <patrick.rudolph@9elements.com<mailto:patrick.rudolph@9elements.com>> > Cc: Christian Walter <christian.walter@9elements.com<mailto:christian.walter@9elements.com>> > Cc: Maurice Ma <maurice.ma@intel.com<mailto:maurice.ma@intel.com>> > Cc: Guo Dong <guo.dong@intel.com<mailto:guo.dong@intel.com>> > Cc: Benjamin You <benjamin.you@intel.com<mailto:benjamin.you@intel.com>> > --- > UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ > UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ > UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ > 3 files changed, 12 insertions(+) > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > index c6c47833871b..49f42285882d 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > @@ -58,6 +58,9 @@ [Defines] > DEFINE UART_DEFAULT_STOP_BITS = 1 > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > + # Enabling the serial terminal will slow down the boot menu rendering! > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > + > > # > > # typedef struct { > > # UINT16 VendorId; ///< Vendor ID to match the PCI device. The > value 0xFFFF terminates the list of entries. > > @@ -502,7 +505,9 @@ [Components.IA32] > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > xe.inf > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > +!endif > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > #------------------------------ > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > index 5559b1258521..33805902f705 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > @@ -59,6 +59,9 @@ [Defines] > DEFINE UART_DEFAULT_STOP_BITS = 1 > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > + # Enabling the serial terminal will slow down the boot menu redering! > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > + > > # > > # typedef struct { > > # UINT16 VendorId; ///< Vendor ID to match the PCI device. The > value 0xFFFF terminates the list of entries. > > @@ -504,7 +507,9 @@ [Components.X64] > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > xe.inf > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > +!endif > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > #------------------------------ > > diff --git a/UefiPayloadPkg/UefiPayloadPkg.fdf > b/UefiPayloadPkg/UefiPayloadPkg.fdf > index dfbcde566849..03ff6a9595d1 100644 > --- a/UefiPayloadPkg/UefiPayloadPkg.fdf > +++ b/UefiPayloadPkg/UefiPayloadPkg.fdf > @@ -131,7 +131,9 @@ [FV.DXEFV] > INF > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > INF > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > xe.inf > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > +!endif > > INF UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > # > > -- > 2.25.4 -- [Marcello Sylvester Bauer] [http://static.9elements.com/logo-signature.png] 9elements Agency GmbH, Kortumstraße 19-21, 44787 Bochum, Germany Email: [DEINE EMAIL ADDRESSE]<https://static.9elements.com/email_signatur.html> Phone: +49 234 68 94 188<tel:+492346894188> Mobile: +49 1722847618<tel:+491722847618> Sitz der Gesellschaft: Bochum Handelsregister: Amtsgericht Bochum, HRB 17519 Geschäftsführung: Sebastian Deutsch, Eray Basar Datenschutzhinweise nach Art. 13 DSGVO<https://9elements.com/privacy> [-- Attachment #2: Type: text/html, Size: 19267 bytes --] ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time configurable 2020-07-13 15:58 ` [edk2-devel] " Guo Dong @ 2020-07-13 16:54 ` Marcello Sylvester Bauer 0 siblings, 0 replies; 7+ messages in thread From: Marcello Sylvester Bauer @ 2020-07-13 16:54 UTC (permalink / raw) To: Dong, Guo Cc: devel@edk2.groups.io, Patrick Rudolph, Christian Walter, Ma, Maurice, You, Benjamin [-- Attachment #1: Type: text/plain, Size: 9182 bytes --] Dont worry. The newes change did fix the issue. All our patches are on github. I will add them as references in future. Thanks, Marcello On Mon, Jul 13, 2020 at 5:58 PM Dong, Guo <guo.dong@intel.com> wrote: > > > Hi Marcello, > > > > I had fixed this issue in latest UefipayloadPkg. Please double check. > > > > Sorry for the merge mistake. There is some issues to apply the patch > copied from the email. So I manually add the changes since only few lines > changes. But the mistake happens in that time L. I would be great if we > could review and merge directly from GitHub lately. > > > > Thanks, > > Guo > > > > *From:* devel@edk2.groups.io <devel@edk2.groups.io> * On Behalf Of *Marcello > Sylvester Bauer > *Sent:* Monday, July 13, 2020 3:14 AM > *To:* Dong, Guo <guo.dong@intel.com> > *Cc:* devel@edk2.groups.io; Patrick Rudolph <patrick.rudolph@9elements.com>; > Christian Walter <christian.walter@9elements.com>; Ma, Maurice < > maurice.ma@intel.com>; You, Benjamin <benjamin.you@intel.com> > *Subject:* Re: [edk2-devel] [PATCH v2 1/1] UefiPayloadPkg: Make > TerminalDxe build time configurable > > > > Hello Guo, > > > > regarding the master commit 48aa2edf5dae7a1e819ae01c43a326b6c97f20b1, I > noticed that the patch was not merged properly. > Instead of making TerminalDxe depend on DISABLE_SERIAL_TERMINAL, it does > apply it to GraphicsConsoleDxe. > Therefore it does not work as expected. Did this happen by mistake? > > Best regards, > > Marcello > > PS: Here is a diff of the commit in the master branch compared to my > submission: > > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > index 9aab54461986..1a8b1792f24c 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > @@ -506,10 +506,10 @@ [Components.IA32] > # > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > - MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf > !if $(DISABLE_SERIAL_TERMINAL) == FALSE > + MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf > +!endif > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > -!endif > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > #------------------------------ > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > index a768a8702c66..650a72162a29 100644 > --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > @@ -507,10 +507,10 @@ [Components.X64] > # > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > - MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf > !if $(DISABLE_SERIAL_TERMINAL) == FALSE > + MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf > +!endif > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > -!endif > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > #------------------------------ > > > > On Wed, Jun 24, 2020 at 4:32 PM Dong, Guo <guo.dong@intel.com> wrote: > > > Reviewed-by: Dong, Guo <guo.dong@intel.com> > > Thanks, > Guo > > > -----Original Message----- > > From: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > > Sent: Wednesday, June 24, 2020 2:58 AM > > To: devel@edk2.groups.io > > Cc: Patrick Rudolph <patrick.rudolph@9elements.com>; Christian Walter > > <christian.walter@9elements.com>; Ma, Maurice <maurice.ma@intel.com>; > > Dong, Guo <guo.dong@intel.com>; You, Benjamin > > <benjamin.you@intel.com> > > Subject: [PATCH v2 1/1] UefiPayloadPkg: Make TerminalDxe build time > > configurable > > > > From: Patrick Rudolph <patrick.rudolph@9elements.com> > > > > As the TerminalDxe significantly slows down the boot menu rendering, > > add the DISABLE_SERIAL_TERMINAL option to disable it at build time. > > > > Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> > > Signed-off-by: Marcello Sylvester Bauer <marcello.bauer@9elements.com> > > Cc: Patrick Rudolph <patrick.rudolph@9elements.com> > > Cc: Christian Walter <christian.walter@9elements.com> > > Cc: Maurice Ma <maurice.ma@intel.com> > > Cc: Guo Dong <guo.dong@intel.com> > > Cc: Benjamin You <benjamin.you@intel.com> > > --- > > UefiPayloadPkg/UefiPayloadPkgIa32.dsc | 5 +++++ > > UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc | 5 +++++ > > UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ > > 3 files changed, 12 insertions(+) > > > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > index c6c47833871b..49f42285882d 100644 > > --- a/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32.dsc > > @@ -58,6 +58,9 @@ [Defines] > > DEFINE UART_DEFAULT_STOP_BITS = 1 > > > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > > > > > + # Enabling the serial terminal will slow down the boot menu rendering! > > > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > > > + > > > > # > > > > # typedef struct { > > > > # UINT16 VendorId; ///< Vendor ID to match the PCI > device. The > > value 0xFFFF terminates the list of entries. > > > > @@ -502,7 +505,9 @@ [Components.IA32] > > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > > xe.inf > > > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > > > +!endif > > > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > > > > > #------------------------------ > > > > diff --git a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > index 5559b1258521..33805902f705 100644 > > --- a/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > +++ b/UefiPayloadPkg/UefiPayloadPkgIa32X64.dsc > > @@ -59,6 +59,9 @@ [Defines] > > DEFINE UART_DEFAULT_STOP_BITS = 1 > > > > DEFINE DEFAULT_TERMINAL_TYPE = 0 > > > > > > > > + # Enabling the serial terminal will slow down the boot menu redering! > > > > + DEFINE DISABLE_SERIAL_TERMINAL = FALSE > > > > + > > > > # > > > > # typedef struct { > > > > # UINT16 VendorId; ///< Vendor ID to match the PCI > device. The > > value 0xFFFF terminates the list of entries. > > > > @@ -504,7 +507,9 @@ [Components.X64] > > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > > > MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > > > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > > xe.inf > > > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > > > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > > > +!endif > > > > UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > > > > > #------------------------------ > > > > diff --git a/UefiPayloadPkg/UefiPayloadPkg.fdf > > b/UefiPayloadPkg/UefiPayloadPkg.fdf > > index dfbcde566849..03ff6a9595d1 100644 > > --- a/UefiPayloadPkg/UefiPayloadPkg.fdf > > +++ b/UefiPayloadPkg/UefiPayloadPkg.fdf > > @@ -131,7 +131,9 @@ [FV.DXEFV] > > INF > > MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf > > > > INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf > > > > INF > > MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleD > > xe.inf > > > > +!if $(DISABLE_SERIAL_TERMINAL) == FALSE > > > > INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf > > > > +!endif > > > > INF UefiPayloadPkg/GraphicsOutputDxe/GraphicsOutputDxe.inf > > > > > > > > # > > > > -- > > 2.25.4 > > > > > -- > > *[Marcello Sylvester Bauer]* > > > > 9elements Agency GmbH, Kortumstraße 19-21, 44787 Bochum, Germany > > Email: [DEINE EMAIL ADDRESSE] > <https://static.9elements.com/email_signatur.html> > > Phone: +49 234 68 94 188 <+492346894188> > > Mobile: +49 1722847618 <+491722847618> > > > > Sitz der Gesellschaft: Bochum > > Handelsregister: Amtsgericht Bochum, HRB 17519 > > Geschäftsführung: Sebastian Deutsch, Eray Basar > > > Datenschutzhinweise nach Art. 13 DSGVO <https://9elements.com/privacy> > > > -- *[Marcello Sylvester Bauer]* 9elements Agency GmbH, Kortumstraße 19-21, 44787 Bochum, Germany Email: [DEINE EMAIL ADDRESSE] <https://static.9elements.com/email_signatur.html> Phone: *+49 234 68 94 188 <+492346894188>* Mobile: *+49 1722847618 <+491722847618>* Sitz der Gesellschaft: Bochum Handelsregister: Amtsgericht Bochum, HRB 17519 Geschäftsführung: Sebastian Deutsch, Eray Basar Datenschutzhinweise nach Art. 13 DSGVO <https://9elements.com/privacy> [-- Attachment #2: Type: text/html, Size: 19329 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-07-13 16:55 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-06-24 9:57 [PATCH v2 0/1] UefiPayloadPkg: Make TerminalDxe build time configurable marcello.bauer 2020-06-24 9:57 ` [PATCH v2 1/1] " Marcello Sylvester Bauer 2020-06-24 14:07 ` Ma, Maurice 2020-06-24 14:32 ` Guo Dong 2020-07-13 10:13 ` Marcello Sylvester Bauer 2020-07-13 15:58 ` [edk2-devel] " Guo Dong 2020-07-13 16:54 ` Marcello Sylvester Bauer
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox