* Re: [edk2-devel] [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
2022-01-28 21:39 Sean Rhodes
@ 2022-01-29 0:15 ` Guo Dong
2022-03-31 8:20 ` Sheng Lean Tan
0 siblings, 1 reply; 5+ messages in thread
From: Guo Dong @ 2022-01-29 0:15 UTC (permalink / raw)
To: devel@edk2.groups.io, Rhodes, Sean
Reviewed-by: Guo Dong <guo.dong@intel.com>
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Sean Rhodes
Sent: Friday, January 28, 2022 2:39 PM
To: devel@edk2.groups.io
Cc: Rhodes, Sean <sean@starlabs.systems>
Subject: [edk2-devel] [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
---
UefiPayloadPkg/UefiPayloadPkg.dsc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc
index 3d08edfe31..15f7bb999c 100644
--- a/UefiPayloadPkg/UefiPayloadPkg.dsc
+++ b/UefiPayloadPkg/UefiPayloadPkg.dsc
@@ -33,6 +33,7 @@
DEFINE UNIVERSAL_PAYLOAD = FALSE DEFINE SECURITY_STUB_ENABLE = TRUE DEFINE SMM_SUPPORT = FALSE+ DEFINE PLATFORM_BOOT_TIMEOUT = 3 # # SBL: UEFI payload for Slim Bootloader # COREBOOT: UEFI payload for coreboot@@ -463,7 +464,7 @@
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0- gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|3+ gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|$(PLATFORM_BOOT_TIMEOUT) !if $(VARIABLE_SUPPORT) == "SPI" gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize |0 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0--
2.32.0
-=-=-=-=-=-=
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#86183): https://edk2.groups.io/g/devel/message/86183
Mute This Topic: https://groups.io/mt/88757864/1781375
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [guo.dong@intel.com] -=-=-=-=-=-=
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
@ 2022-03-18 14:17 Sean Rhodes
2022-03-23 17:55 ` [edk2-devel] " Guo Dong
0 siblings, 1 reply; 5+ messages in thread
From: Sean Rhodes @ 2022-03-18 14:17 UTC (permalink / raw)
To: devel; +Cc: Sean Rhodes
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
---
UefiPayloadPkg/UefiPayloadPkg.dsc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc
index 14a8d157a2..3f172c5912 100644
--- a/UefiPayloadPkg/UefiPayloadPkg.dsc
+++ b/UefiPayloadPkg/UefiPayloadPkg.dsc
@@ -35,6 +35,7 @@
DEFINE SMM_SUPPORT = FALSE
DEFINE ABOVE_4G_MEMORY = TRUE
DEFINE BOOT_MANAGER_ESCAPE = FALSE
+ DEFINE PLATFORM_BOOT_TIMEOUT = 3
DEFINE SD_MMC_TIMEOUT = 1000000
#
# SBL: UEFI payload for Slim Bootloader
@@ -475,7 +476,7 @@
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
- gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|3
+ gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|$(PLATFORM_BOOT_TIMEOUT)
!if $(VARIABLE_SUPPORT) == "SPI"
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize |0
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0
--
2.32.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
2022-03-18 14:17 [PATCH] UefiPayloadPkg: Make Boot Timeout configurable Sean Rhodes
@ 2022-03-23 17:55 ` Guo Dong
2022-03-31 8:17 ` Sheng Lean Tan
0 siblings, 1 reply; 5+ messages in thread
From: Guo Dong @ 2022-03-23 17:55 UTC (permalink / raw)
To: devel@edk2.groups.io, Rhodes, Sean
Reviewed-by: Guo Dong <guo.dong@intel.com>
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Sean Rhodes
Sent: Friday, March 18, 2022 7:17 AM
To: devel@edk2.groups.io
Cc: Rhodes, Sean <sean@starlabs.systems>
Subject: [edk2-devel] [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
---
UefiPayloadPkg/UefiPayloadPkg.dsc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc
index 14a8d157a2..3f172c5912 100644
--- a/UefiPayloadPkg/UefiPayloadPkg.dsc
+++ b/UefiPayloadPkg/UefiPayloadPkg.dsc
@@ -35,6 +35,7 @@
DEFINE SMM_SUPPORT = FALSE DEFINE ABOVE_4G_MEMORY = TRUE DEFINE BOOT_MANAGER_ESCAPE = FALSE+ DEFINE PLATFORM_BOOT_TIMEOUT = 3 DEFINE SD_MMC_TIMEOUT = 1000000 # # SBL: UEFI payload for Slim Bootloader@@ -475,7 +476,7 @@
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0- gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|3+ gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|$(PLATFORM_BOOT_TIMEOUT) !if $(VARIABLE_SUPPORT) == "SPI" gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize |0 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0--
2.32.0
-=-=-=-=-=-=
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#87748): https://edk2.groups.io/g/devel/message/87748
Mute This Topic: https://groups.io/mt/89868842/1781375
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [guo.dong@intel.com] -=-=-=-=-=-=
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
2022-03-23 17:55 ` [edk2-devel] " Guo Dong
@ 2022-03-31 8:17 ` Sheng Lean Tan
0 siblings, 0 replies; 5+ messages in thread
From: Sheng Lean Tan @ 2022-03-31 8:17 UTC (permalink / raw)
To: Guo Dong, devel
[-- Attachment #1: Type: text/plain, Size: 122 bytes --]
[to keep record]
This is merged:
https://github.com/tianocore/edk2/commit/55637a2894babca97945eeca1da0d431f74f8627
[-- Attachment #2: Type: text/html, Size: 139 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH] UefiPayloadPkg: Make Boot Timeout configurable
2022-01-29 0:15 ` [edk2-devel] " Guo Dong
@ 2022-03-31 8:20 ` Sheng Lean Tan
0 siblings, 0 replies; 5+ messages in thread
From: Sheng Lean Tan @ 2022-03-31 8:20 UTC (permalink / raw)
To: Guo Dong, devel
[-- Attachment #1: Type: text/plain, Size: 94 bytes --]
Merged.
https://github.com/tianocore/edk2/commit/55637a2894babca97945eeca1da0d431f74f8627
[-- Attachment #2: Type: text/html, Size: 106 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-03-31 8:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-18 14:17 [PATCH] UefiPayloadPkg: Make Boot Timeout configurable Sean Rhodes
2022-03-23 17:55 ` [edk2-devel] " Guo Dong
2022-03-31 8:17 ` Sheng Lean Tan
-- strict thread matches above, loose matches on Subject: below --
2022-01-28 21:39 Sean Rhodes
2022-01-29 0:15 ` [edk2-devel] " Guo Dong
2022-03-31 8:20 ` Sheng Lean Tan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox