1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 00:32:04 +02:00

Add support for Linux-like kallsysms

The kernel stores address<->symbol names in it so things can be decoded at
runtime.  Do it in U-Boot, and we get nice symbol decoding when crashing.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2009-05-20 04:35:14 -04:00
committed by Wolfgang Denk
parent 36c9169aa6
commit ecb1dc8922
8 changed files with 75 additions and 53 deletions

8
common/system_map.c Normal file
View File

@@ -0,0 +1,8 @@
/*
* The builtin symbol table for use with kallsyms
*
* Copyright (c) 2008-2009 Analog Devices Inc.
* Licensed under the GPL-2 or later.
*/
const char const system_map[] = SYSTEM_MAP;