From 155a06a1c96a7a38703ea4058727b89e7bc23054 Mon Sep 17 00:00:00 2001 From: Flavio Ceolin Date: Tue, 9 Feb 2021 14:43:45 -0800 Subject: [PATCH] scripts: Update paths on tags.sh Update source paths. Signed-off-by: Flavio Ceolin --- scripts/tags.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/tags.sh b/scripts/tags.sh index 8dde136f4d..2a3dd16494 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -204,13 +204,13 @@ fi tree="${ZEPHYR_BASE}/" # List of always explored directories -COMMON_DIRS="drivers dts ext include kernel lib misc subsys" +COMMON_DIRS="drivers dts include kernel lib misc subsys" # Detect if ARCH is set. If not, we look for all archs if [ "${ARCH}" = "" ]; then - ALLSOURCES="${COMMON_DIRS} arch boards" + ALLSOURCES="${COMMON_DIRS} arch boards soc" else - ALLSOURCES="${COMMON_DIRS} arch/${ARCH} boards/${ARCH}" + ALLSOURCES="${COMMON_DIRS} arch/${ARCH} boards/${ARCH} soc/${ARCH}" fi # TODO: detect if BOARD is set so we can select certain files