mirror of https://github.com/hak5/openwrt.git
kernel: ensure that the arm exception handlers get preserved
SVN-Revision: 35937lede-17.01
parent
f0d7ba33ef
commit
2b83c9bd8a
|
@ -409,6 +409,15 @@
|
||||||
VMLINUX_SYMBOL(__idmap_text_end) = .;
|
VMLINUX_SYMBOL(__idmap_text_end) = .;
|
||||||
|
|
||||||
#ifdef CONFIG_HOTPLUG_CPU
|
#ifdef CONFIG_HOTPLUG_CPU
|
||||||
|
@@ -93,7 +93,7 @@ SECTIONS
|
||||||
|
.text : { /* Real text segment */
|
||||||
|
_stext = .; /* Text and read-only data */
|
||||||
|
__exception_text_start = .;
|
||||||
|
- *(.exception.text)
|
||||||
|
+ KEEP(*(.exception.text))
|
||||||
|
__exception_text_end = .;
|
||||||
|
IRQENTRY_TEXT
|
||||||
|
TEXT_TEXT
|
||||||
@@ -118,7 +118,7 @@ SECTIONS
|
@@ -118,7 +118,7 @@ SECTIONS
|
||||||
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
|
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
|
||||||
__start___ex_table = .;
|
__start___ex_table = .;
|
||||||
|
|
Loading…
Reference in New Issue