From d96b25d0c0a739d351b8f09b128782ca12b7b0e1 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 19 Sep 2013 14:24:29 -0700 Subject: fwlib: Map architecture armv7 to arm In coreboot the architecture for our ARM platforms is armv7. In order to have vboot_reference pick up the right build parameters, map armv7 to arm. BUG=none BRANCH=none TEST=lots more changes on coreboot needed for a reasonable test. Right now coreboot compiles fine with ramstage verification and this patch. Change-Id: I64dad9be663b7bd7d80d138b3c49ae8f4699f01d Reviewed-on: https://chromium-review.googlesource.com/170071 Reviewed-by: Randall Spangler Commit-Queue: Stefan Reinauer Tested-by: Stefan Reinauer --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b810a5f5..d4b6245f 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,8 @@ ifeq (${FIRMWARE_ARCH},i386) override FIRMWARE_ARCH := x86 else ifeq (${FIRMWARE_ARCH},amd64) override FIRMWARE_ARCH := x86_64 +else ifeq (${FIRMWARE_ARCH},armv7) + override FIRMWARE_ARCH := arm endif # Provide default CC and CFLAGS for firmware builds; if you have any -D flags, -- cgit v1.2.1