summaryrefslogtreecommitdiff
path: root/zephyr/program/myst/BUILD.py
blob: 27e4009c1c6a0c33af1be9762e1840acfbf69c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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",
)