From db4df3ce1a20b47ed30ed65acc1aa4ea5705cb84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Wed, 26 Aug 2020 09:30:43 -0700 Subject: [PATCH] cmake: flash: remove stale cache variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit c1f80db44ae03452c82f8deab6936f018f6780a5 removed various now-unused CMake cache variables, but it missed the ones that begin with ZEPHYR_RUNNER_ARGS. Delete those now. Signed-off-by: Martí Bolívar --- cmake/flash/CMakeLists.txt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/cmake/flash/CMakeLists.txt b/cmake/flash/CMakeLists.txt index 0802fcd2192..53aac7da657 100644 --- a/cmake/flash/CMakeLists.txt +++ b/cmake/flash/CMakeLists.txt @@ -95,16 +95,6 @@ get_property(RUNNERS GLOBAL PROPERTY ZEPHYR_RUNNERS) # configuration if the board files change. if(RUNNERS) create_runners_yaml(${RUNNERS}) - - # Runner-specific command line arguments obtained from the board's - # build scripts, the application's scripts, etc. - foreach(runner ${RUNNERS}) - string(MAKE_C_IDENTIFIER ${runner} runner_id) - # E.g. args = BOARD_RUNNER_ARGS_openocd, BOARD_RUNNER_ARGS_dfu_util, etc. - get_property(runner_args GLOBAL PROPERTY "BOARD_RUNNER_ARGS_${runner_id}") - set(ZEPHYR_RUNNER_ARGS_${runner_id} ${runner_args} CACHE STRING - "Runner-specific arguments for ${runner}" FORCE) - endforeach() endif() if(DEFINED ENV{WEST_DIR} AND NOT WEST_DIR)