From c36307ea865e7b6561587c7116ee45f2c1bb3ac0 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 11 Jul 2022 10:51:50 -0400 Subject: [PATCH] scripts: move gen_isr_tables.py to scripts/build/gen_isr_tables.py Move scripts needed by the build system and not designed to be run individually or standalone into the build subfolder. Signed-off-by: Anas Nashif --- CMakeLists.txt | 2 +- scripts/{ => build}/gen_isr_tables.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/{ => build}/gen_isr_tables.py (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4db00c4ba8e..54fd6f355af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1181,7 +1181,7 @@ if(CONFIG_GEN_ISR_TABLES) $isrList.bin $ COMMAND ${PYTHON_EXECUTABLE} - ${ZEPHYR_BASE}/scripts/gen_isr_tables.py + ${ZEPHYR_BASE}/scripts/build/gen_isr_tables.py --output-source isr_tables.c --kernel $ --intlist isrList.bin diff --git a/scripts/gen_isr_tables.py b/scripts/build/gen_isr_tables.py similarity index 100% rename from scripts/gen_isr_tables.py rename to scripts/build/gen_isr_tables.py