summaryrefslogtreecommitdiff
path: root/zephyr/program/myst/BUILD.py
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/program/myst/BUILD.py')
-rw-r--r--zephyr/program/myst/BUILD.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/zephyr/program/myst/BUILD.py b/zephyr/program/myst/BUILD.py
new file mode 100644
index 0000000000..27e4009c1c
--- /dev/null
+++ b/zephyr/program/myst/BUILD.py
@@ -0,0 +1,30 @@
+# Copyright 2023 The ChromiumOS Authors
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Define zmake projects for myst."""
+
+
+def register_myst_project(
+ project_name,
+):
+ """Register a variant of myst."""
+ register_npcx_project(
+ project_name=project_name,
+ zephyr_board="npcx9m7f",
+ dts_overlays=[
+ here / project_name / "project.overlay",
+ ],
+ kconfig_files=[
+ # Common to all projects.
+ here / "program.conf",
+ # Project-specific KConfig customization.
+ here / project_name / "project.conf",
+ ],
+ inherited_from=["myst"],
+ )
+
+
+register_myst_project(
+ project_name="myst",
+)