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 esp32s2 elf2image ${ELF2IMAGE_ARG}
38 --flash_mode dio --flash_freq 40m
39 --flash_size ${esptoolpy_flashsize}MB
40 -o ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.bin
46 # Get code-partition boot address
48 dt_reg_addr(boot_off PATH ${dts_partition_path})
50 # Get code-partition slot0 address
52 dt_reg_addr(img_0_off PATH ${dts_partition_path})
55 board_finalize_runner_args(esp32 "--esp-app-address=${img_0_off}")
57 board_finalize_runner_args(esp32 "--esp-app-address=${boot_off}")
67 --rtl-dirs ${CMAKE_BINARY_DIR}/zephyr
68 --elf-file ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.elf
69 find-refs --from-section=.iram0.iram_loader --to-section=.iram0.text
70 --exit-code)