From 1c79096559f5b95f7153cd6784459734c8bb76b9 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 20 Mar 2020 15:10:16 +0100 Subject: [PATCH] ext: debug: Move ctf_map.h to subsys/tracing/ctf To complete the removal of the ext/ folder, move the ctf_map.h file to where it really belongs, which is subsys/tracing/ctf. Signed-off-by: Carles Cufi --- CMakeLists.txt | 1 - ext/CMakeLists.txt | 1 - ext/debug/CMakeLists.txt | 1 - {ext/debug => subsys/tracing}/ctf/ctf_map.h | 0 4 files changed, 3 deletions(-) delete mode 100644 ext/CMakeLists.txt delete mode 100644 ext/debug/CMakeLists.txt rename {ext/debug => subsys/tracing}/ctf/ctf_map.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 94a4634f53c..0d23e48adb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -452,7 +452,6 @@ else() endif() add_subdirectory(boards) -add_subdirectory(ext) add_subdirectory(subsys) add_subdirectory(drivers) diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt deleted file mode 100644 index 71bebdf6f8c..00000000000 --- a/ext/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ -add_subdirectory(debug) diff --git a/ext/debug/CMakeLists.txt b/ext/debug/CMakeLists.txt deleted file mode 100644 index 7da89c8f5ce..00000000000 --- a/ext/debug/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ -zephyr_include_directories_ifdef(CONFIG_TRACING_CTF ctf) diff --git a/ext/debug/ctf/ctf_map.h b/subsys/tracing/ctf/ctf_map.h similarity index 100% rename from ext/debug/ctf/ctf_map.h rename to subsys/tracing/ctf/ctf_map.h