From 6a6a87b65fcab5a7e8163258c7e8d704fa8d97c3 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Wed, 25 Jun 2014 17:50:28 -0700 Subject: [PATCH] cbfstool: Remove arch check for different stages Remove the arch check for each stage as the arch for different stages can be different based on the SoC. e.g.: Rush has arm32-based romstage whereas arm64-based ramstage BUG=None BRANCH=None TEST=Compiles succesfully for nyan, link and rush Change-Id: I561dab5a5d87c6b93b8d667857d5e181ff72e35d Signed-off-by: Furquan Shaikh Reviewed-on: https://chromium-review.googlesource.com/205761 Tested-by: Furquan Shaikh Reviewed-by: Aaron Durbin Commit-Queue: Aaron Durbin Reviewed-by: Ronald Minnich --- util/cbfstool/elfheaders.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/util/cbfstool/elfheaders.c b/util/cbfstool/elfheaders.c index eca89eeb27..2fedf42637 100644 --- a/util/cbfstool/elfheaders.c +++ b/util/cbfstool/elfheaders.c @@ -604,15 +604,6 @@ elf_headers(const struct buffer *pinput, /* Copy out the parsed elf header. */ memcpy(ehdr, &pelf.ehdr, sizeof(*ehdr)); - // The tool may work in architecture-independent way. - if (arch != CBFS_ARCHITECTURE_UNKNOWN && - !((ehdr->e_machine == EM_AARCH64) && (arch == CBFS_ARCHITECTURE_AARCH64)) && - !((ehdr->e_machine == EM_ARM) && (arch == CBFS_ARCHITECTURE_ARM)) && - !((ehdr->e_machine == EM_386) && (arch == CBFS_ARCHITECTURE_X86))) { - ERROR("The stage file has the wrong architecture\n"); - return -1; - } - *pphdr = calloc(ehdr->e_phnum, sizeof(Elf64_Phdr)); memcpy(*pphdr, pelf.phdr, ehdr->e_phnum * sizeof(Elf64_Phdr));