Initial XTLDR configuration
Some checks failed
Builds / ExectOS (amd64) (push) Failing after 15s
Builds / ExectOS (i686) (push) Failing after 15s

This commit is contained in:
2023-12-03 14:22:14 +01:00
parent e302f662bb
commit ab7fa5ffa4
5 changed files with 132 additions and 0 deletions

View File

@@ -72,12 +72,17 @@ EFI_STATUS
BmStartXtLoader(IN EFI_HANDLE ImageHandle,
IN PEFI_SYSTEM_TABLE SystemTable);
XTCDECL
VOID
BmpFormatString(IN BMPRINTCHAR PrintCharRoutine,
IN PUINT16 Format,
IN ...);
XTCDECL
VOID
BmpParseCommandLineOptions(VOID);
XTCDECL
VOID
BmpPrintSigned32String(IN BMPRINTCHAR PrintCharRoutine,
@@ -108,4 +113,8 @@ XTCDECL
UINT64
BmpReadStringPadding(IN PUINT16 *Format);
XTCDECL
VOID
BmpUpdateGlobalConfiguration(IN PWCHAR Options);
#endif /* __XTLDR_BOOTMAN_H */

View File

@@ -12,6 +12,9 @@
#include <xtbmapi.h>
/* XT Boot Loader configuration data */
EXTERN XTBM_CONFIGURATION BmpConfiguration;
/* XT Boot Loader hex table */
EXTERN PUINT16 BmpHexTable;