Lines Matching +full:app +full:- +full:path
1 # SPDX-License-Identifier: Apache-2.0
25 message("ESP-IDF path: ${ESP_IDF_PATH}")
28 message("esptool path: ${ESPTOOL_PY}")
32 set(ELF2IMAGE_ARG "--ram-only-header")
37 ARGS --chip esp32c3 elf2image ${ELF2IMAGE_ARG}
38 --flash_mode dio --flash_freq 40m --flash_size ${esptoolpy_flashsize}MB
39 -o ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.bin
45 # get code-partition slot0 address
47 dt_reg_addr(img_0_off PATH ${dts_partition_path})
49 # get code-partition boot address
51 dt_reg_addr(boot_off PATH ${dts_partition_path})
54 board_finalize_runner_args(esp32 "--esp-app-address=${img_0_off}")
56 board_finalize_runner_args(esp32 "--esp-app-address=${boot_off}")
66 --rtl-dirs ${CMAKE_BINARY_DIR}/zephyr
67 --elf-file ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.elf
68 find-refs --from-section=.iram0.iram_loader --to-section=.iram0.text
69 --exit-code)