vmlinux.lds.S (405d967dc70002991f8fc35c20e0d3cbc7614f63) | vmlinux.lds.S (023bf6f1b8bf58dc4da7f0dc1cf4787b0d5297c1) |
---|---|
1#include <asm/asm-offsets.h> 2#include <asm-generic/vmlinux.lds.h> 3 4#undef mips 5#define mips mips 6OUTPUT_ARCH(mips) 7ENTRY(kernel_entry) 8PHDRS { --- 162 unchanged lines hidden (view full) --- 171 .bss : { 172 *(.bss) 173 *(COMMON) 174 } 175 __bss_stop = .; 176 177 _end = . ; 178 | 1#include <asm/asm-offsets.h> 2#include <asm-generic/vmlinux.lds.h> 3 4#undef mips 5#define mips mips 6OUTPUT_ARCH(mips) 7ENTRY(kernel_entry) 8PHDRS { --- 162 unchanged lines hidden (view full) --- 171 .bss : { 172 *(.bss) 173 *(COMMON) 174 } 175 __bss_stop = .; 176 177 _end = . ; 178 |
179 /* Sections to be discarded */ 180 /DISCARD/ : { 181 *(.exitcall.exit) 182 *(.discard) 183 184 /* ABI crap starts here */ 185 *(.MIPS.options) 186 *(.options) 187 *(.pdr) 188 *(.reginfo) 189 } 190 | |
191 /* These mark the ABI of the kernel for debuggers. */ 192 .mdebug.abi32 : { 193 KEEP(*(.mdebug.abi32)) 194 } 195 .mdebug.abi64 : { 196 KEEP(*(.mdebug.abi64)) 197 } 198 --- 9 unchanged lines hidden (view full) --- 208 .gptab.sdata : { 209 *(.gptab.data) 210 *(.gptab.sdata) 211 } 212 .gptab.sbss : { 213 *(.gptab.bss) 214 *(.gptab.sbss) 215 } | 179 /* These mark the ABI of the kernel for debuggers. */ 180 .mdebug.abi32 : { 181 KEEP(*(.mdebug.abi32)) 182 } 183 .mdebug.abi64 : { 184 KEEP(*(.mdebug.abi64)) 185 } 186 --- 9 unchanged lines hidden (view full) --- 196 .gptab.sdata : { 197 *(.gptab.data) 198 *(.gptab.sdata) 199 } 200 .gptab.sbss : { 201 *(.gptab.bss) 202 *(.gptab.sbss) 203 } |
204 205 /* Sections to be discarded */ 206 DISCARDS 207 /DISCARD/ : { 208 /* ABI crap starts here */ 209 *(.MIPS.options) 210 *(.options) 211 *(.pdr) 212 *(.reginfo) 213 } |
|
216} | 214} |