summaryrefslogtreecommitdiff
path: root/zephyr/projects/minimal/BUILD.py
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/projects/minimal/BUILD.py')
-rw-r--r--zephyr/projects/minimal/BUILD.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/zephyr/projects/minimal/BUILD.py b/zephyr/projects/minimal/BUILD.py
new file mode 100644
index 0000000000..5e892aa2d7
--- /dev/null
+++ b/zephyr/projects/minimal/BUILD.py
@@ -0,0 +1,22 @@
+# Copyright 2022 The ChromiumOS Authors
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Minimal example project."""
+
+register_host_project(
+ project_name="minimal-posix",
+ zephyr_board="native_posix",
+)
+
+register_npcx_project(
+ project_name="minimal-npcx9",
+ zephyr_board="npcx9m3f",
+ dts_overlays=[here / "npcx9.dts"],
+)
+
+register_binman_project(
+ project_name="minimal-it8xxx2",
+ zephyr_board="it81302bx",
+ dts_overlays=[here / "it8xxx2.dts"],
+)