Move blproto.c and add missing header file
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
3fa2ec90aa
commit
3894d4fd75
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: xtldr/modules/blproto.c
|
||||
* FILE: xtldr/blproto.c
|
||||
* DESCRIPTION: EFI XTLDR protocol API
|
||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
22
xtldr/includes/blmod.h
Normal file
22
xtldr/includes/blmod.h
Normal file
@ -0,0 +1,22 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: xtldr/includes/blmod.h
|
||||
* DESCRIPTION: XTLDR modules support
|
||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
|
||||
#ifndef __XTLDR_BLMOD_H
|
||||
#define __XTLDR_BLMOD_H
|
||||
|
||||
#include <xtkmapi.h>
|
||||
#include <bldefs.h>
|
||||
|
||||
|
||||
/* EFI XT Loader Protocol */
|
||||
EXTERN PXT_BOOT_LOADER_PROTOCOL EfiXtLdrProtocol;
|
||||
|
||||
EFI_STATUS
|
||||
BlGetXtLoaderProtocol();
|
||||
|
||||
#endif /* __XTLDR_BLMOD_H */
|
@ -8,7 +8,7 @@ include_directories(
|
||||
|
||||
# Specify list of source code files
|
||||
list(APPEND XTLDR_DUMMY_SOURCE
|
||||
${XTLDR_SOURCE_DIR}/modules/blproto.c
|
||||
${XTLDR_SOURCE_DIR}/blproto.c
|
||||
${XTLDR_DUMMY_SOURCE_DIR}/dummy.c)
|
||||
|
||||
# Link bootloader executable
|
||||
|
Loading…
Reference in New Issue
Block a user