diff options
author | Che-Liang Chiou <clchiou@chromium.org> | 2011-07-26 16:55:33 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2011-08-29 10:59:13 -0700 |
commit | df4a451bb25ade57adcd5895b4fbfbec01c32371 (patch) | |
tree | fde584711208ee6190c0695e4d83bee5fd39e336 /lib/chromeos | |
parent | 34b7b623417dc1ba47f9d18a2e59e05787f6839c (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 'lib/chromeos')
-rw-r--r-- | lib/chromeos/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chromeos/Makefile b/lib/chromeos/Makefile index 5ea27547406..6305673cc7e 100644 --- a/lib/chromeos/Makefile +++ b/lib/chromeos/Makefile @@ -21,7 +21,7 @@ COBJS-$(CONFIG_CHROMEOS) += memory_wipe.o # TODO(sjg): This MMC code is not needed as yet, and needs slight changes # to build now -#COBJS-$(CONFIG_CHROMEOS_TWOSTOP) += firmware_storage_twostop.o +#COBJS-$(CONFIG_CHROMEOS) += firmware_storage_twostop.o COBJS := $(COBJS-y) OBJS := $(addprefix $(obj),$(COBJS)) |