summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2011-07-26 16:55:33 +0800
committerSimon Glass <sjg@chromium.org>2011-08-29 10:59:13 -0700
commitdf4a451bb25ade57adcd5895b4fbfbec01c32371 (patch)
treefde584711208ee6190c0695e4d83bee5fd39e336 /board
parent34b7b623417dc1ba47f9d18a2e59e05787f6839c (diff)
CHROMIUM: reorganize config headers
The headers are merged and split into the board-independent header chromeos.h and a board-dependent header, e.g., chromeos_tegra2_twostop.h. The board-independent header defines/enables all features that a verified boot firmware must have, and is included by a board-dependent header. Moreover, the CONFIG_CHROMEOS_* flags are reduced into a single flag CONFIG_CHROMEOS. BUG=none TEST=make chromeos_tegra2_twostop_config && make Change-Id: I2ec9092ed898c640175095e86cfcb100efbefb3a Reviewed-on: http://gerrit.chromium.org/gerrit/4731 Reviewed-by: Che-Liang Chiou <clchiou@chromium.org> Tested-by: Che-Liang Chiou <clchiou@chromium.org>
Diffstat (limited to 'board')
-rw-r--r--board/nvidia/vbexport/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/nvidia/vbexport/Makefile b/board/nvidia/vbexport/Makefile
index 327f0b2e41..d4ae0d4fe9 100644
--- a/board/nvidia/vbexport/Makefile
+++ b/board/nvidia/vbexport/Makefile
@@ -12,7 +12,7 @@ include $(TOPDIR)/config.mk
LIB = $(obj)libvbexport_board.a
-COBJS-$(CONFIG_CHROMEOS_VBEXPORT) += nvstorage.o
+COBJS-$(CONFIG_CHROMEOS) += nvstorage.o
COBJS := $(COBJS-y)
OBJS := $(addprefix $(obj),$(COBJS))