Leroy P Leahy (leroy.p.leahy@intel.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10207
-gerrit
commit d28f103f7d9483f9554ac05e8798ee1bdb1db05a Author: Lee Leahy leroy.p.leahy@intel.com Date: Thu May 14 14:50:42 2015 -0700
lib/hexdump: Add xxd hint
For people new to Linux, add the xxd hint to compare output with output from Linux. for people new to Linux.Support formatting the output to match the Ubuntu
BRANCH=none BUG=None TEST=Build and run on cyan
Change-Id: Ia46aeed056b12abbadf8205b044944385d9410e1 Signed-off-by: Lee Leahy leroy.p.leahy@intel.com --- src/include/lib.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/include/lib.h b/src/include/lib.h index b81b1b1..7d20fa8 100644 --- a/src/include/lib.h +++ b/src/include/lib.h @@ -39,7 +39,10 @@ int primitive_memtest(uintptr_t base, uintptr_t size); /* Defined in src/lib/stack.c */ int checkstack(void *top_of_stack, int core);
-/* Defined in src/lib/hexdump.c */ +/* + * Defined in src/lib/hexdump.c + * Use the Linux command "xxd" for matching output + */ void hexdump(const void *memory, size_t length); void hexdump32(char LEVEL, const void *d, size_t len);