util/cbfstool: demote not-ELF error to debug

It's irritating when adding tianocore payloads - those are not
ELF, but that's deliberate.

Change-Id: I76d9367b28545348f526e5f0b8216f9ff2a3d636
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/20468
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Patrick Georgi 2017-07-05 13:28:24 +02:00
parent b9bc2571be
commit 8320b9a997
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ int parse_elf(const struct buffer *pinput, struct parsed_elf *pelf, int flags)
memset(pelf, 0, sizeof(*pelf)); memset(pelf, 0, sizeof(*pelf));
if (!iself(buffer_get(pinput))) { if (!iself(buffer_get(pinput))) {
ERROR("The stage file is not in ELF format!\n"); DEBUG("The stage file is not in ELF format!\n");
return -1; return -1;
} }