1 #include <asm-generic/vmlinux.lds.h>
2 #include <asm/thread_info.h>
6 OUTPUT_FORMAT("elf64-alpha")
9 PHDRS { kernel PT_LOAD; note PT_NOTE; }
13 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
14 . = 0xfffffc0000310000;
16 . = 0xfffffc0001010000;
19 _text = .; /* Text and read-only data */
28 _etext = .; /* End of text section */
38 /* Will be freed after init */
39 __init_begin = ALIGN(PAGE_SIZE);
40 INIT_TEXT_SECTION(PAGE_SIZE)
42 PERCPU_SECTION(L1_CACHE_BYTES)
43 /* Align to THREAD_SIZE rather than PAGE_SIZE here so any padding page
44 needed for the THREAD_SIZE aligned init_task gets freed after init */
45 . = ALIGN(THREAD_SIZE);
47 /* Freed after init ends here */
49 _sdata = .; /* Start of rw data section */
51 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
59 _edata = .; /* End of data section */