Merge tag 'sound-4.7-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[deliverable/linux.git] / arch / alpha / kernel / vmlinux.lds.S
CommitLineData
1da177e4 1#include <asm-generic/vmlinux.lds.h>
de078ef5 2#include <asm/thread_info.h>
0f06c063 3#include <asm/cache.h>
b2b5d37d 4#include <asm/page.h>
ec221208 5#include <asm/setup.h>
1da177e4
LT
6
7OUTPUT_FORMAT("elf64-alpha")
8OUTPUT_ARCH(alpha)
9ENTRY(__start)
caf45dd9 10PHDRS { kernel PT_LOAD; note PT_NOTE; }
1da177e4
LT
11jiffies = jiffies_64;
12SECTIONS
13{
14#ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
b2b5d37d 15 . = 0xfffffc0000310000;
1da177e4 16#else
b2b5d37d 17 . = 0xfffffc0001010000;
1da177e4
LT
18#endif
19
b2b5d37d
SR
20 _text = .; /* Text and read-only data */
21 .text : {
92ca5234 22 HEAD_TEXT
b2b5d37d
SR
23 TEXT_TEXT
24 SCHED_TEXT
25 LOCK_TEXT
26 *(.fixup)
27 *(.gnu.warning)
28 } :kernel
ec221208 29 swapper_pg_dir = SWAPPER_PGD;
b2b5d37d
SR
30 _etext = .; /* End of text section */
31
51597acf
BB
32 NOTES :kernel :note
33 .dummy : {
34 *(.dummy)
35 } :kernel
36
37 RODATA
9d93f005 38 EXCEPTION_TABLE(16)
b2b5d37d 39
b2b5d37d 40 /* Will be freed after init */
9d93f005
GT
41 __init_begin = ALIGN(PAGE_SIZE);
42 INIT_TEXT_SECTION(PAGE_SIZE)
43 INIT_DATA_SECTION(16)
0415b00d 44 PERCPU_SECTION(L1_CACHE_BYTES)
9d93f005
GT
45 /* Align to THREAD_SIZE rather than PAGE_SIZE here so any padding page
46 needed for the THREAD_SIZE aligned init_task gets freed after init */
47 . = ALIGN(THREAD_SIZE);
b2b5d37d
SR
48 __init_end = .;
49 /* Freed after init ends here */
50
a2d063ac 51 _sdata = .; /* Start of rw data section */
b2b5d37d 52 _data = .;
0f06c063 53 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
b2b5d37d
SR
54
55 .got : {
56 *(.got)
57 }
58 .sdata : {
59 *(.sdata)
60 }
61 _edata = .; /* End of data section */
62
9d93f005 63 BSS_SECTION(0, 0, 0)
b2b5d37d
SR
64 _end = .;
65
b2b5d37d
SR
66 .mdebug 0 : {
67 *(.mdebug)
68 }
69 .note 0 : {
70 *(.note)
71 }
72
73 STABS_DEBUG
74 DWARF_DEBUG
023bf6f1
TH
75
76 DISCARDS
1da177e4 77}
This page took 0.717682 seconds and 5 git commands to generate.