summaryrefslogtreecommitdiff
path: root/board/trondo/build.mk
blob: f16b1520c0f1a0b3fffbe9b9a853abef5ddbd904 (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
# -*- makefile -*-
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# Board specific files build
#

CHIP:=npcx
CHIP_FAMILY:=npcx7
CHIP_VARIANT:=npcx7m6fc
BASEBOARD:=volteer

# TODO: b/143375057 - Remove this code after power on.
#
# Temporary for board power on.  Provide a Volteer specific make option
# to enable the power signal GPIOs that are not stuffed by default.  This
# is a backup if board logic power sequencing needs to be adjusted.
#
# Set the following variable to 'y' to enable the Volteer optional power signals
VOLTEER_POWER_SEQUENCE=
ifneq (,$(VOLTEER_POWER_SEQUENCE))
CFLAGS_BASEBOARD+=-DVOLTEER_POWER_SEQUENCE
endif

# Force changes to VOLTEER_POWER_SEQUENCE variable to trigger a full build.
ENV_VARS := VOLTEER_POWER_SEQUENCE


board-y=board.o
board-y+=battery.o
board-y+=led.o
board-$(VOLTEER_POWER_SEQUENCE)+=power_sequence.o
board-y+=sensors.o