diff options
author | Vasily Gorbik <gor@linux.ibm.com> | 2018-06-27 14:46:57 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-07-02 11:24:56 +0200 |
commit | 4778dc08ef99825d2931d44888fda8d49319d93a (patch) | |
tree | 89a0493fb57b92de3c979ca72b655b23c6594a01 /arch/s390/boot/compressed/vmlinux.lds.S | |
parent | 1fee96264a718fc5a2a94a09d5c7e2915a1c76b2 (diff) | |
download | blackbird-obmc-linux-4778dc08ef99825d2931d44888fda8d49319d93a.tar.gz blackbird-obmc-linux-4778dc08ef99825d2931d44888fda8d49319d93a.zip |
s390/decompressor: discard ___kcrctab section
___kcrctab section is not used during the decompressor phase and could be
discarded to save the memory. It is currently generated due to lib/mem.S
usage, which exports few symbols.
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/boot/compressed/vmlinux.lds.S')
-rw-r--r-- | arch/s390/boot/compressed/vmlinux.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/boot/compressed/vmlinux.lds.S b/arch/s390/boot/compressed/vmlinux.lds.S index b8572a81be5f..93ab95cf16fb 100644 --- a/arch/s390/boot/compressed/vmlinux.lds.S +++ b/arch/s390/boot/compressed/vmlinux.lds.S @@ -58,5 +58,6 @@ SECTIONS *(.eh_frame) *(__ex_table) *(*__ksymtab*) + *(___kcrctab*) } } |