Skip to content

Commit 9f77808

Browse files
LucasTamborfabiobaltieri
authored andcommitted
boards: xtensa: esp32_app_cpu: change bin name
Change bin name to esp32_appcpu_firmware instead of esp32_net_firmware to keep naming coherence. Signed-off-by: Lucas Tamborrino <[email protected]>
1 parent 11fc182 commit 9f77808

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

boards/xtensa/esp32_devkitc_wroom/Kconfig.defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ config HEAP_MEM_POOL_ADD_SIZE_BOARD
2929
default 4096
3030

3131
config KERNEL_BIN_NAME
32-
default "esp32_net_firmware"
32+
default "esp32_appcpu_firmware"
3333

3434
endif # BOARD_ESP32_DEVKITC_WROOM_APPCPU
3535

boards/xtensa/esp32_devkitc_wrover/Kconfig.defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ config HEAP_MEM_POOL_ADD_SIZE_BOARD
2727
default 4096
2828

2929
config KERNEL_BIN_NAME
30-
default "esp32_net_firmware"
30+
default "esp32_appcpu_firmware"
3131
endif
3232

3333
config ENTROPY_GENERATOR

boards/xtensa/esp32s3_devkitm/Kconfig.defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ config HEAP_MEM_POOL_ADD_SIZE_BOARD
2929
def_int 4096
3030

3131
config KERNEL_BIN_NAME
32-
default "esp32_net_firmware"
32+
default "esp32_appcpu_firmware"
3333
endif
3434

3535
config ENTROPY_GENERATOR

samples/drivers/ipm/ipm_esp32/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ endif()
1515
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1616
project(ipm_esp32)
1717

18-
set_source_files_properties(${REMOTE_ZEPHYR_DIR}/esp32_net_firmware.c PROPERTIES GENERATED TRUE)
19-
target_sources(app PRIVATE src/main.c ${REMOTE_ZEPHYR_DIR}/esp32_net_firmware.c)
18+
set_source_files_properties(${REMOTE_ZEPHYR_DIR}/esp32_appcpu_firmware.c PROPERTIES GENERATED TRUE)
19+
target_sources(app PRIVATE src/main.c ${REMOTE_ZEPHYR_DIR}/esp32_appcpu_firmware.c)
2020

2121
include(ExternalProject)
2222

samples/subsys/ipc/rpmsg_service/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ enable_language(C ASM)
3838
target_sources(app PRIVATE src/main.c)
3939

4040
if("${BOARD}" STREQUAL "esp32_devkitc_wrover" OR "${BOARD}" STREQUAL "esp32s3_devkitm")
41-
set_source_files_properties(${REMOTE_ZEPHYR_DIR}/esp32_net_firmware.c PROPERTIES GENERATED TRUE)
42-
target_sources(app PRIVATE src/main.c ${REMOTE_ZEPHYR_DIR}/esp32_net_firmware.c)
41+
set_source_files_properties(${REMOTE_ZEPHYR_DIR}/esp32_appcpu_firmware.c PROPERTIES GENERATED TRUE)
42+
target_sources(app PRIVATE src/main.c ${REMOTE_ZEPHYR_DIR}/esp32_appcpu_firmware.c)
4343
endif()
4444

4545
include(ExternalProject)

0 commit comments

Comments
 (0)