We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 098be94 commit 2e38e91Copy full SHA for 2e38e91
3 files changed
libc-hack/uefi/stdio.c
@@ -8,6 +8,7 @@
8
9
#include <stdarg.h>
10
#include <Library/DebugLib.h>
11
+#include <stdio.h>
12
13
14
int printf(const char *format, ...)
uefi/common/droidboot_uefi_common.h
@@ -43,3 +43,6 @@ int droidboot_internal_get_disp_buffer_height(void);
43
bool droidboot_internal_use_double_buffering(void);
44
45
void droidboot_internal_platform_tasks();
46
+
47
+// Function to set efi system table, to be called by code outside of droidboot part.
48
+void droidboot_internal_setgST(EFI_SYSTEM_TABLE*st1);
uefi/common/uefi-wrapper/uefi-wrapper.c
@@ -4,6 +4,7 @@
4
#include<Library/ReportStatusCodeLib.h>
5
#include<droidboot_main.h>
6
#include <droidboot_logging.h>
7
+#include<droidboot_uefi_common.h>
EFI_SYSTEM_TABLE *gST2;
0 commit comments