summaryrefslogtreecommitdiff
path: root/zephyr/projects/brya/BUILD.py
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/projects/brya/BUILD.py')
-rw-r--r--zephyr/projects/brya/BUILD.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/zephyr/projects/brya/BUILD.py b/zephyr/projects/brya/BUILD.py
index d044a11ae7..9991335ca7 100644
--- a/zephyr/projects/brya/BUILD.py
+++ b/zephyr/projects/brya/BUILD.py
@@ -1,11 +1,13 @@
-# Copyright 2021 The Chromium OS Authors. All rights reserved.
+# Copyright 2021 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 brya."""
-def register_npcx9_variant(project_name, extra_dts_overlays=(), extra_kconfig_files=()):
+def register_npcx9_variant(
+ project_name, extra_dts_overlays=(), extra_kconfig_files=()
+):
"""Register a variant of a brya, even though this is not named as such."""
return register_npcx_project(
project_name=project_name,
@@ -13,7 +15,6 @@ def register_npcx9_variant(project_name, extra_dts_overlays=(), extra_kconfig_fi
dts_overlays=[
"adc.dts",
"battery.dts",
- "cbi_eeprom.dts",
"fan.dts",
"gpio.dts",
"i2c.dts",
@@ -40,8 +41,3 @@ brya = register_npcx9_variant(
extra_dts_overlays=[here / "brya.dts"],
extra_kconfig_files=[here / "prj_brya.conf"],
)
-
-ghost = brya.variant(
- project_name="ghost",
- kconfig_files=[here / "prj_ghost.conf"],
-)