Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/20468
Change subject: util/cbfstool: demote not-ELF error to debug
......................................................................
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(a)google.com>
---
M util/cbfstool/elfheaders.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/68/20468/1
diff --git a/util/cbfstool/elfheaders.c b/util/cbfstool/elfheaders.c
index 0462d0a..67f01d4 100644
--- a/util/cbfstool/elfheaders.c
+++ b/util/cbfstool/elfheaders.c
@@ -503,7 +503,7 @@
memset(pelf, 0, sizeof(*pelf));
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;
}
--
To view, visit https://review.coreboot.org/20468
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I76d9367b28545348f526e5f0b8216f9ff2a3d636
Gerrit-Change-Number: 20468
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>