diff options
author | Jisheng Zhang <[email protected]> | 2021-11-18 19:27:21 +0800 |
---|---|---|
committer | Palmer Dabbelt <[email protected]> | 2022-01-05 17:53:37 -0800 |
commit | a2ceb8c4efce97a9392084f45c072b0ec8e36701 (patch) | |
tree | 917e298ce3f3d0c8d03e3cb988356421a96504d0 | |
parent | 20802d8d477d5771368fdac8d476285adc713af0 (diff) |
riscv: vmlinux.lds.S|vmlinux-xip.lds.S: remove `.fixup` section
These are no longer necessary now that we have a more standard extable
mechanism.
Signed-off-by: Jisheng Zhang <[email protected]>
Signed-off-by: Palmer Dabbelt <[email protected]>
-rw-r--r-- | arch/riscv/kernel/vmlinux-xip.lds.S | 1 | ||||
-rw-r--r-- | arch/riscv/kernel/vmlinux.lds.S | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/arch/riscv/kernel/vmlinux-xip.lds.S b/arch/riscv/kernel/vmlinux-xip.lds.S index f5ed08262139..75e0fa8a700a 100644 --- a/arch/riscv/kernel/vmlinux-xip.lds.S +++ b/arch/riscv/kernel/vmlinux-xip.lds.S @@ -45,7 +45,6 @@ SECTIONS ENTRY_TEXT IRQENTRY_TEXT SOFTIRQENTRY_TEXT - *(.fixup) _etext = .; } RO_DATA(L1_CACHE_BYTES) diff --git a/arch/riscv/kernel/vmlinux.lds.S b/arch/riscv/kernel/vmlinux.lds.S index 0e5ae851929e..4e6c88aa4d87 100644 --- a/arch/riscv/kernel/vmlinux.lds.S +++ b/arch/riscv/kernel/vmlinux.lds.S @@ -48,7 +48,6 @@ SECTIONS ENTRY_TEXT IRQENTRY_TEXT SOFTIRQENTRY_TEXT - *(.fixup) _etext = .; } |