diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2019-10-14 11:33:44 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-11-26 11:33:38 -0800 |
commit | f5fae6790fd3199e45ead10f7004311abdf539e5 (patch) | |
tree | 362718da4e33d41186857626eb667d43e62058f6 | |
parent | 7af710d988775aadf440222ecbe0c10eecf3eb54 (diff) | |
download | talos-op-linux-f5fae6790fd3199e45ead10f7004311abdf539e5.tar.gz talos-op-linux-f5fae6790fd3199e45ead10f7004311abdf539e5.zip |
xtensa: merge .fixup with .text
Section .fixup contains pieces of code, merge it with the rest of the
.text section.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
-rw-r--r-- | arch/xtensa/kernel/vmlinux.lds.S | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/xtensa/kernel/vmlinux.lds.S b/arch/xtensa/kernel/vmlinux.lds.S index 01e3112cdb27..c64abc15d38f 100644 --- a/arch/xtensa/kernel/vmlinux.lds.S +++ b/arch/xtensa/kernel/vmlinux.lds.S @@ -117,7 +117,7 @@ SECTIONS SCHED_TEXT CPUIDLE_TEXT LOCK_TEXT - + *(.fixup) } _etext = .; PROVIDE (etext = .); @@ -126,10 +126,6 @@ SECTIONS RODATA - /* Relocation table */ - - .fixup : { *(.fixup) } - EXCEPTION_TABLE(16) NOTES /* Data section */ |