armv4: Add verstage to armv4

BUG=None
BRANCH=None
TEST=Compiles successfully

Change-Id: I7735a2148da5330f220bd9a87b09e9fe3e37ffd1
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://chromium-review.googlesource.com/221322
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Commit-Queue: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
Furquan Shaikh 2014-10-02 16:31:18 -07:00 committed by chrome-internal-fetch
commit 5e43dfe1aa
2 changed files with 15 additions and 0 deletions

View file

@ -1,6 +1,9 @@
config ARCH_BOOTBLOCK_ARM_V4
def_bool n
select ARCH_BOOTBLOCK_ARM
config ARCH_VERSTAGE_ARM_V4
def_bool n
select ARCH_VERSTAGE_ARM
config ARCH_ROMSTAGE_ARM_V4
def_bool n
select ARCH_ROMSTAGE_ARM

View file

@ -37,6 +37,18 @@ bootblock-c-ccopts += $(armv4_flags)
bootblock-S-ccopts += $(armv4_flags)
endif
################################################################################
## Verstage
################################################################################
ifeq ($(CONFIG_ARCH_VERSTAGE_ARM_V4),y)
verstage-c-ccopts += $(armv4_flags)
verstage-S-ccopts += $(armv4_flags)
verstage-y += cache.c
endif
################################################################################
## ROM stage
################################################################################