diff options
author | Frans Hendriks <fhendriks@eltan.com> | 2019-05-21 11:04:50 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-06-05 13:02:57 +0000 |
commit | d622507450464db5ee6cff7de03f9649a299018b (patch) | |
tree | 5f012fc176921ccd58d0e4f9c3909ddc42d3f8ef | |
parent | d3a73280cc8e01a28cbdb1a4d086e4dda7b35f0c (diff) | |
download | coreboot-d622507450464db5ee6cff7de03f9649a299018b.tar.xz |
lib/Makefile.inc: Add hexdump.c to postcar stage
hexdump() is not available in postcar stage.
Add hexdump() functionality to postcar stage.
BUG=NA
TEST=Booting Embedded Linux on Facebook FBG-1701
Change-Id: Ibdce911065c01b0a1aa81dc248557257d0e420b0
Signed-off-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32908
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
-rw-r--r-- | src/lib/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index 1b8ad19b67..16d5c649b2 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -166,6 +166,7 @@ postcar-y += imd.c postcar-y += romstage_handoff.c bootblock-y += hexdump.c +postcar-y += hexdump.c ramstage-y += hexdump.c romstage-y += hexdump.c verstage-y += hexdump.c |