boards: up_squared: add a post build target
Build an EFI image as a post build step. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
4382532fd3
commit
48216b33a5
9
boards/x86/up_squared/CMakeLists.txt
Normal file
9
boards/x86/up_squared/CMakeLists.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Create an EFI image
|
||||
if(CONFIG_BOARD_UP_SQUARED)
|
||||
set_property(GLOBAL APPEND PROPERTY extra_post_build_commands
|
||||
COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/arch/x86/zefi/zefi.py
|
||||
-f ${PROJECT_BINARY_DIR}/${CONFIG_KERNEL_BIN_NAME}.elf
|
||||
$<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>
|
||||
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
||||
)
|
||||
endif()
|
Loading…
Reference in a new issue