summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/common.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2013-11-13 14:34:57 -0800
committerIsaac Christensen <isaac.christensen@se-eng.com>2014-09-12 22:07:19 +0200
commit8f50e53a4bb4c6f4b95398bb57d58f32fecdad93 (patch)
tree900e2c0b37b068fbf59c0f7a3ab269a301a2da7d /util/cbfstool/common.c
parent1b54cc919c362c63630bf134329d7f547ed586fe (diff)
downloadcoreboot-8f50e53a4bb4c6f4b95398bb57d58f32fecdad93.tar.gz
coreboot-8f50e53a4bb4c6f4b95398bb57d58f32fecdad93.tar.bz2
coreboot-8f50e53a4bb4c6f4b95398bb57d58f32fecdad93.zip
cbfstool: Fix architecture check when adding payload
In the process of rewriting cbfstool for ARM and using a new internal API a regression was introduced that would silently let you add an ARM payload into an x86 CBFS image and the other way around. This patch fixes cbfstool to produce an error in that case again. Change-Id: I37ee65a467d9658d0846c2cf43b582e285f1a8f8 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: https://chromium-review.googlesource.com/176711 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Commit-Queue: Stefan Reinauer <reinauer@chromium.org> Tested-by: Stefan Reinauer <reinauer@chromium.org> (cherry picked from commit 8f74f3f5227e440ae46b59f8fd692f679f3ada2d) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6879 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/cbfstool/common.c')
-rw-r--r--util/cbfstool/common.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/util/cbfstool/common.c b/util/cbfstool/common.c
index a28e74179de0..60819495f771 100644
--- a/util/cbfstool/common.c
+++ b/util/cbfstool/common.c
@@ -150,6 +150,21 @@ uint32_t string_to_arch(const char *arch_string)
return ret;
}
+const char *arch_to_string(uint32_t a)
+{
+ int i;
+ const char *ret = NULL;
+
+ for (i = 0; i < ARRAY_SIZE(arch_names); i++) {
+ if (a == arch_names[i].arch) {
+ ret = arch_names[i].name;
+ break;
+ }
+ }
+
+ return ret;
+}
+
static struct filetypes_t {
uint32_t type;
const char *name;