diff options
| author | xengineering <me@xengineering.eu> | 2025-03-23 18:22:51 +0100 | 
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2025-03-26 21:18:23 +0100 | 
| commit | 1eabe70aae439fbc00325d27749d1464320d8a03 (patch) | |
| tree | c16dc3a71a225efa6611c68fd10ab447a0df01fe | |
| parent | be8aaed5d8903ce68e97a0cdfe3247f664ecda85 (diff) | |
| download | iot-contact-1eabe70aae439fbc00325d27749d1464320d8a03.tar iot-contact-1eabe70aae439fbc00325d27749d1464320d8a03.tar.zst iot-contact-1eabe70aae439fbc00325d27749d1464320d8a03.zip  | |
fw: btl: Use `build/fw/btl` folder consistently
Previously a folder `build/fw/bootloader` was used in addition. This
change removes this and puts everything bootloader-related in
`build/fw/btl` to make this consistent to `build/fw/app`.
| -rw-r--r-- | fw/CMakeLists.txt | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fw/CMakeLists.txt b/fw/CMakeLists.txt index 6aaec03..f51689b 100644 --- a/fw/CMakeLists.txt +++ b/fw/CMakeLists.txt @@ -16,8 +16,8 @@ set(ZEPHYR_BASE "${CMAKE_CURRENT_SOURCE_DIR}/rtos/zephyr")  string(REPLACE ";" "," ZEPHYR_MODULES_COMMA "${ZEPHYR_MODULES}")  include(ExternalProject)  ExternalProject_Add( -	bootloader -	PREFIX bootloader +	btl +	PREFIX btl  	SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/btl/mcuboot/boot/zephyr"  	BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/btl"  	INSTALL_COMMAND ""  | 
