vmlinux.lds.S (405d967dc70002991f8fc35c20e0d3cbc7614f63) vmlinux.lds.S (023bf6f1b8bf58dc4da7f0dc1cf4787b0d5297c1)
1#ifdef CONFIG_PPC64
2#define PROVIDE32(x) PROVIDE(__unused__##x)
3#else
4#define PROVIDE32(x) PROVIDE(x)
5#endif
6#include <asm/page.h>
7#include <asm-generic/vmlinux.lds.h>
8#include <asm/cache.h>

--- 23 unchanged lines hidden (view full) ---

32OUTPUT_ARCH(powerpc:common64)
33jiffies = jiffies_64;
34#else
35OUTPUT_ARCH(powerpc:common)
36jiffies = jiffies_64 + 4;
37#endif
38SECTIONS
39{
1#ifdef CONFIG_PPC64
2#define PROVIDE32(x) PROVIDE(__unused__##x)
3#else
4#define PROVIDE32(x) PROVIDE(x)
5#endif
6#include <asm/page.h>
7#include <asm-generic/vmlinux.lds.h>
8#include <asm/cache.h>

--- 23 unchanged lines hidden (view full) ---

32OUTPUT_ARCH(powerpc:common64)
33jiffies = jiffies_64;
34#else
35OUTPUT_ARCH(powerpc:common)
36jiffies = jiffies_64 + 4;
37#endif
38SECTIONS
39{
40 /* Sections to be discarded. */
41 /DISCARD/ : {
42 *(.exitcall.exit)
43 *(.discard)
44 EXIT_DATA
45 }
46
47 . = KERNELBASE;
48
49/*
50 * Text, read only data and other permanent read-only sections
51 */
52
53 /* Text and gots */
54 .text : AT(ADDR(.text) - LOAD_OFFSET) {

--- 239 unchanged lines hidden (view full) ---

294 *(.bss)
295 *(COMMON)
296 __bss_stop = .;
297 }
298
299 . = ALIGN(PAGE_SIZE);
300 _end = . ;
301 PROVIDE32 (end = .);
40 . = KERNELBASE;
41
42/*
43 * Text, read only data and other permanent read-only sections
44 */
45
46 /* Text and gots */
47 .text : AT(ADDR(.text) - LOAD_OFFSET) {

--- 239 unchanged lines hidden (view full) ---

287 *(.bss)
288 *(COMMON)
289 __bss_stop = .;
290 }
291
292 . = ALIGN(PAGE_SIZE);
293 _end = . ;
294 PROVIDE32 (end = .);
295
296 /* Sections to be discarded. */
297 DISCARDS
302}
298}