Lines Matching +full:- +full:o
2 # SPDX-License-Identifier: Apache-2.0
4 # Convert the .bin file argument to a .o file, create a wrapper
5 # library for the .o file, and register the library as a generated
9 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${bin}.o
12 -I binary
13 -B ${OUTPUT_ARCH}
14 -O ${OUTPUT_FORMAT}
15 --rename-section .data=${bin},CONTENTS,ALLOC,LOAD,READONLY,DATA
17 ${bin}.o
21 add_custom_target(${bin}_o DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${bin}.o)
23 set_property(TARGET ${bin} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${bin}.o)
34 # Always set for 64-bit (long mode requires page tables), optional for 32-bit
59 --kernel $<TARGET_FILE:${ZEPHYR_PREBUILT_EXECUTABLE}>
60 --output pagetables.bin
61 $<$<BOOL:${CMAKE_VERBOSE_MAKEFILE}>:--verbose>