summaryrefslogtreecommitdiff
path: root/zephyr/projects/minimal/BUILD.py
blob: 5e892aa2d73d668de005abebb4ce1811f400d9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"],
)