summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2022-10-20 11:35:45 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-11-04 22:51:13 +0000
commit13c68a3e7a85119367ddbcd130518163e4dcd619 (patch)
tree08736bb29c15afc4ca68f1958f6c34ec248640f3 /util
parentfba4956a5c7c7df15822a721310bc46b93ded47c (diff)
downloadchrome-ec-13c68a3e7a85119367ddbcd130518163e4dcd619.tar.gz
zephyr: rename projects folder to program
Renme the projects folder to program for consistency with the name scheme used by the boxster configuration. BUG=b:254097139 BRANCH=none TEST=zmake compare-builds -a TEST=twister Signed-off-by: Keith Short <keithshort@chromium.org> Change-Id: Ib56a57f1e5942e6dd0460e3be81722896eed72af Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3968444 Reviewed-by: Jeremy Bettis <jbettis@chromium.org> Commit-Queue: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/clangd_config.py2
-rwxr-xr-xutil/kconfig_check.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/util/clangd_config.py b/util/clangd_config.py
index 2553707c43..1e013b4159 100755
--- a/util/clangd_config.py
+++ b/util/clangd_config.py
@@ -32,7 +32,7 @@ def ec_fetch_boards(ec_root: Path) -> Optional[List[str]]:
def zephyr_fetch_projects(ec_root: Path) -> Optional[List[str]]:
"""Return a list of Zephyr projects seen."""
- base = str(ec_root) + "/zephyr/projects/"
+ base = str(ec_root) + "/zephyr/program/"
boards = glob.glob(base + "*")
if boards is None:
diff --git a/util/kconfig_check.py b/util/kconfig_check.py
index e745b3aeca..f3d127175c 100755
--- a/util/kconfig_check.py
+++ b/util/kconfig_check.py
@@ -259,8 +259,8 @@ class KconfigCheck:
dirs.remove("Kconfig")
if "boards" in dirs:
dirs.remove("boards")
- if "projects" in dirs:
- dirs.remove("projects")
+ if "program" in dirs:
+ dirs.remove("program")
if "test" in dirs:
dirs.remove("test")
if "chip" in dirs: