diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-11-18 14:42:27 +1100 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-11-18 14:42:27 +1100 |
commit | efa6bbc48ff549cd70352106b8d93f6e156295f5 (patch) | |
tree | 479897d503b4740467ee41f0dbb2f4fe5c44652b /skiboot.lds.S | |
parent | 71664fd8d2d2550a56cc6a9c2b81797bfe90d613 (diff) | |
download | skiboot-efa6bbc48ff549cd70352106b8d93f6e156295f5.zip skiboot-efa6bbc48ff549cd70352106b8d93f6e156295f5.tar.gz skiboot-efa6bbc48ff549cd70352106b8d93f6e156295f5.tar.bz2 |
Add functions to backtrace into a non-text buffer
Separate text translation from capture of the backtrace
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'skiboot.lds.S')
-rw-r--r-- | skiboot.lds.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/skiboot.lds.S b/skiboot.lds.S index 82cbdb2..4e905f8 100644 --- a/skiboot.lds.S +++ b/skiboot.lds.S @@ -47,11 +47,13 @@ SECTIONS } . = ALIGN(0x10); + _stext = .; .text : { *(.text*) *(.sfpr) } - + _etext = .; + .rodata : { __rodata_start = .; *(.rodata .rodata.*) |