1 #include <asm-generic/vmlinux.lds.h>
2 #include <asm/thread_info.h>
5 OUTPUT_FORMAT("elf64-alpha")
8 PHDRS { kernel PT_LOAD; note PT_NOTE; }
12 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
13 . = 0xfffffc0000310000;
15 . = 0xfffffc0001010000;
18 _text = .; /* Text and read-only data */
27 _etext = .; /* End of text section */
37 /* Will be freed after init */
38 __init_begin = ALIGN(PAGE_SIZE);
39 INIT_TEXT_SECTION(PAGE_SIZE)
42 /* Align to THREAD_SIZE rather than PAGE_SIZE here so any padding page
43 needed for the THREAD_SIZE aligned init_task gets freed after init */
44 . = ALIGN(THREAD_SIZE);
46 /* Freed after init ends here */
49 RW_DATA_SECTION(64, PAGE_SIZE, THREAD_SIZE)
57 _edata = .; /* End of data section */