|
@@ -114,6 +114,15 @@ SECTIONS
|
|
|
|
|
|
RO_DATA(PAGE_SIZE)
|
|
|
|
|
|
+ . = ALIGN(4);
|
|
|
+ __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
|
|
|
+ __start___ex_table = .;
|
|
|
+#ifdef CONFIG_MMU
|
|
|
+ *(__ex_table)
|
|
|
+#endif
|
|
|
+ __stop___ex_table = .;
|
|
|
+ }
|
|
|
+
|
|
|
#ifdef CONFIG_ARM_UNWIND
|
|
|
/*
|
|
|
* Stack unwinding tables
|
|
@@ -219,16 +228,6 @@ SECTIONS
|
|
|
CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
|
|
|
READ_MOSTLY_DATA(L1_CACHE_BYTES)
|
|
|
|
|
|
- /*
|
|
|
- * The exception fixup table (might need resorting at runtime)
|
|
|
- */
|
|
|
- . = ALIGN(4);
|
|
|
- __start___ex_table = .;
|
|
|
-#ifdef CONFIG_MMU
|
|
|
- *(__ex_table)
|
|
|
-#endif
|
|
|
- __stop___ex_table = .;
|
|
|
-
|
|
|
/*
|
|
|
* and the usual data section
|
|
|
*/
|