[edk2-devel] [PATCH v2 2/2] MdePkg: Added Call for AfterReadyToBoot Event

Robert Phelps via groups.io robert=ami.com at groups.io
Thu Jan 12 20:07:09 UTC 2023


In the function EfiSignalEventReadyToBoot, Code was added to also create, signal, and close the AfterReadyToBoot event.





Cc: Michael D Kinney <michael.d.kinney at intel.com>

Cc: Liming Gao <gaoliming at byosoft.com.cn>

Cc: Zhiguang Liu <zhiguang.liu at intel.com>

Signed-off-by: Robert Phelps <robert at ami.com>
---
 MdePkg/Library/UefiLib/UefiLib.inf    |  1 +
 MdePkg/Library/UefiLib/UefiNotTiano.c | 14 ++++++++++++++
 2 files changed, 15 insertions(+)

diff --git a/MdePkg/Library/UefiLib/UefiLib.inf b/MdePkg/Library/UefiLib/UefiLib.inf
index 01ed92092d..3aced47d2e 100644
--- a/MdePkg/Library/UefiLib/UefiLib.inf
+++ b/MdePkg/Library/UefiLib/UefiLib.inf
@@ -56,6 +56,7 @@


 [Guids]

   gEfiEventReadyToBootGuid                      ## SOMETIMES_CONSUMES  ## Event

+  gEfiEventAfterReadyToBootGuid                 ## SOMETIMES_CONSUMES  ## Event

   gEfiEventLegacyBootGuid                       ## SOMETIMES_CONSUMES  ## Event

   gEfiGlobalVariableGuid                        ## SOMETIMES_CONSUMES  ## Variable

   gEfiAcpi20TableGuid                           ## SOMETIMES_CONSUMES  ## SystemTable

diff --git a/MdePkg/Library/UefiLib/UefiNotTiano.c b/MdePkg/Library/UefiLib/UefiNotTiano.c
index d84e91fd01..f8f7406f3a 100644
--- a/MdePkg/Library/UefiLib/UefiNotTiano.c
+++ b/MdePkg/Library/UefiLib/UefiNotTiano.c
@@ -222,12 +222,26 @@ EfiSignalEventReadyToBoot (
 {

   EFI_STATUS  Status;

   EFI_EVENT   ReadyToBootEvent;

+  EFI_EVENT   AfterReadyToBootEvent;



   Status = EfiCreateEventReadyToBoot (&ReadyToBootEvent);

   if (!EFI_ERROR (Status)) {

     gBS->SignalEvent (ReadyToBootEvent);

     gBS->CloseEvent (ReadyToBootEvent);

   }

+

+  Status = gBS->CreateEventEx (

+                EVT_NOTIFY_SIGNAL,

+                TPL_CALLBACK,

+                EfiEventEmptyFunction,

+                NULL,

+                &gEfiEventAfterReadyToBootGuid,

+                AfterReadyToBootEvent

+                );

+  if (!EFI_ERROR (Status)) {

+    gBS->SignalEvent (AfterReadyToBootEvent);

+    gBS->CloseEvent (AfterReadyToBootEvent);

+  }

 }



 /**

--
2.36.1.windows.1
-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#98391): https://edk2.groups.io/g/devel/message/98391
Mute This Topic: https://groups.io/mt/96231204/1813853
Group Owner: devel+owner at edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [edk2-devel-archive at redhat.com]
-=-=-=-=-=-=-=-=-=-=-=-




More information about the edk2-devel-archive mailing list