summaryrefslogtreecommitdiff
path: root/zephyr/program/rex/BUILD.py
blob: 89aee8b06d263b8f2cd302a069f7653cd2c8c711 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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.

"""Define zmake projects for Rex."""


def register_rex_project(
    project_name,
    kconfig_files=None,
):
    """Register a variant of Rex."""
    if kconfig_files is None:
        kconfig_files = [
            # Common to all projects.
            here / "program.conf",
            # Project-specific KConfig customization.
            here / project_name / "project.conf",
        ]

    register_npcx_project(
        project_name=project_name,
        zephyr_board="npcx9m7f",
        dts_overlays=[
            here / project_name / "project.overlay",
        ],
        kconfig_files=kconfig_files,
        inherited_from=["rex"],
    )


register_rex_project(
    project_name="rex",
)

register_rex_project(
    project_name="rex-sans-sensors",
    kconfig_files=[
        # Common to all projects.
        here / "program.conf",
        # Parent project's config
        here / "rex" / "project.conf",
        # Project-specific KConfig customization.
        here / "rex-sans-sensors" / "project.conf",
    ],
)