vmlinux.lds.S (8b3f6af86378d0a10ca2f1ded1da124aef13b62c) vmlinux.lds.S (d71789b6fa37c21ce5eb588d279f57904a62e7e2)
1#include <asm/asm-offsets.h>
2#include <asm/page.h>
3#include <asm-generic/vmlinux.lds.h>
4
5#undef mips
6#define mips mips
7OUTPUT_ARCH(mips)
8ENTRY(kernel_entry)
9PHDRS {
10 text PT_LOAD FLAGS(7); /* RWX */
11 note PT_NOTE FLAGS(4); /* R__ */
12}
13
1#include <asm/asm-offsets.h>
2#include <asm/page.h>
3#include <asm-generic/vmlinux.lds.h>
4
5#undef mips
6#define mips mips
7OUTPUT_ARCH(mips)
8ENTRY(kernel_entry)
9PHDRS {
10 text PT_LOAD FLAGS(7); /* RWX */
11 note PT_NOTE FLAGS(4); /* R__ */
12}
13
14ifdef CONFIG_32BIT
15 ifdef CONFIG_CPU_LITTLE_ENDIAN
14#ifdef CONFIG_32BIT
15 #ifdef CONFIG_CPU_LITTLE_ENDIAN
16 jiffies = jiffies_64;
16 jiffies = jiffies_64;
17 else
17 #else
18 jiffies = jiffies_64 + 4;
18 jiffies = jiffies_64 + 4;
19 endif
20else
19 #endif
20#else
21 jiffies = jiffies_64;
21 jiffies = jiffies_64;
22endif
22#endif
23
24SECTIONS
25{
26#ifdef CONFIG_BOOT_ELF64
27 /* Read-only sections, merged into text segment: */
28 /* . = 0xc000000000000000; */
29
30 /* This is the value for an Origin kernel, taken from an IRIX kernel. */

--- 124 unchanged lines hidden ---
23
24SECTIONS
25{
26#ifdef CONFIG_BOOT_ELF64
27 /* Read-only sections, merged into text segment: */
28 /* . = 0xc000000000000000; */
29
30 /* This is the value for an Origin kernel, taken from an IRIX kernel. */

--- 124 unchanged lines hidden ---