vmlinux.lds.S (405d967dc70002991f8fc35c20e0d3cbc7614f63) | vmlinux.lds.S (023bf6f1b8bf58dc4da7f0dc1cf4787b0d5297c1) |
---|---|
1/* ld script to make s390 Linux kernel 2 * Written by Martin Schwidefsky (schwidefsky@de.ibm.com) 3 */ 4 5#include <asm/thread_info.h> 6#include <asm/page.h> 7#include <asm-generic/vmlinux.lds.h> 8 --- 143 unchanged lines hidden (view full) --- 152 __bss_start = .; 153 *(.bss) 154 . = ALIGN(2); 155 __bss_stop = .; 156 } 157 158 _end = . ; 159 | 1/* ld script to make s390 Linux kernel 2 * Written by Martin Schwidefsky (schwidefsky@de.ibm.com) 3 */ 4 5#include <asm/thread_info.h> 6#include <asm/page.h> 7#include <asm-generic/vmlinux.lds.h> 8 --- 143 unchanged lines hidden (view full) --- 152 __bss_start = .; 153 *(.bss) 154 . = ALIGN(2); 155 __bss_stop = .; 156 } 157 158 _end = . ; 159 |
160 /* Sections to be discarded */ 161 /DISCARD/ : { 162 EXIT_DATA 163 *(.exitcall.exit) 164 *(.discard) 165 } 166 | |
167 /* Debugging sections. */ 168 STABS_DEBUG 169 DWARF_DEBUG | 160 /* Debugging sections. */ 161 STABS_DEBUG 162 DWARF_DEBUG |
163 164 /* Sections to be discarded */ 165 DISCARDS |
|
170} | 166} |