vmlinux.lds.S (1e6b48116a95046ec51f3d40f83aff8b006674d7) | vmlinux.lds.S (80d6b0c2eed2a504f6740cd1f5ea76dc50abfc4d) |
---|---|
1/* ld script to make ARM Linux kernel 2 * taken from the i386 version by Russell King 3 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> 4 */ 5 6#include <asm-generic/vmlinux.lds.h> 7#include <asm/cache.h> 8#include <asm/thread_info.h> --- 106 unchanged lines hidden (view full) --- 115 *(.gnu.warning) 116 *(.glue_7) 117 *(.glue_7t) 118 . = ALIGN(4); 119 *(.got) /* Global offset table */ 120 ARM_CPU_KEEP(PROC_INFO) 121 } 122 | 1/* ld script to make ARM Linux kernel 2 * taken from the i386 version by Russell King 3 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> 4 */ 5 6#include <asm-generic/vmlinux.lds.h> 7#include <asm/cache.h> 8#include <asm/thread_info.h> --- 106 unchanged lines hidden (view full) --- 115 *(.gnu.warning) 116 *(.glue_7) 117 *(.glue_7t) 118 . = ALIGN(4); 119 *(.got) /* Global offset table */ 120 ARM_CPU_KEEP(PROC_INFO) 121 } 122 |
123#ifdef CONFIG_DEBUG_RODATA 124 . = ALIGN(1<<SECTION_SHIFT); 125#endif |
|
123 RO_DATA(PAGE_SIZE) 124 125 . = ALIGN(4); 126 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { 127 __start___ex_table = .; 128#ifdef CONFIG_MMU 129 *(__ex_table) 130#endif --- 220 unchanged lines hidden --- | 126 RO_DATA(PAGE_SIZE) 127 128 . = ALIGN(4); 129 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { 130 __start___ex_table = .; 131#ifdef CONFIG_MMU 132 *(__ex_table) 133#endif --- 220 unchanged lines hidden --- |