Lines Matching +full:app +full:- +full:path
1 # SPDX-License-Identifier: Apache-2.0
22 message("ESP-IDF path: ${ESP_IDF_PATH}")
25 message("esptool path: ${ESPTOOL_PY}")
29 set(ELF2IMAGE_ARG "--ram-only-header")
34 ARGS --chip esp32c2 elf2image ${ELF2IMAGE_ARG}
35 --flash_mode dio --flash_freq 60m --flash_size ${esptoolpy_flashsize}MB
36 -o ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.bin
42 # get code-partition slot0 address
44 dt_reg_addr(img_0_off PATH ${dts_partition_path})
46 # get code-partition boot address
48 dt_reg_addr(boot_off PATH ${dts_partition_path})
51 dt_chosen(dts_shell_uart PROPERTY "zephyr,shell-uart")
52 dt_prop(monitor_baud PATH ${dts_shell_uart} PROPERTY "current-speed")
55 board_runner_args(esp32 "--esp-flash-freq=60m")
56 board_runner_args(esp32 "--esp-monitor-baud=${monitor_baud}")
59 board_finalize_runner_args(esp32 "--esp-app-address=${img_0_off}")
61 board_finalize_runner_args(esp32 "--esp-app-address=${boot_off}")
71 --rtl-dirs ${CMAKE_BINARY_DIR}/zephyr
72 --elf-file ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.elf
73 find-refs --from-section=.iram0.iram_loader --to-section=.iram0.text
74 --exit-code)