avr32: clean up linker script using standard macros.

As a side effect, this patch changes the .init.ramfs data to be
PAGE_SIZE-aligned, instead of 32-byte aligned.  Also, the init data is
moved into its own output sections rather than the .init output
section.

There should be no other changes to the resulting vmlinux as a result
of this patch.

Signed-off-by: Nelson Elhage <nelhage@ksplice.com>
Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Cc: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
This commit is contained in:
Nelson Elhage 2009-09-16 12:40:47 -04:00 committed by Haavard Skinnemoen
parent d94e5fcbf1
commit 209205801c

View file

@ -39,30 +39,10 @@ SECTIONS
__tagtable_begin = .; __tagtable_begin = .;
*(.taglist.init) *(.taglist.init)
__tagtable_end = .; __tagtable_end = .;
INIT_DATA
. = ALIGN(16);
__setup_start = .;
*(.init.setup)
__setup_end = .;
. = ALIGN(4);
__initcall_start = .;
INITCALLS
__initcall_end = .;
__con_initcall_start = .;
*(.con_initcall.init)
__con_initcall_end = .;
__security_initcall_start = .;
*(.security_initcall.init)
__security_initcall_end = .;
#ifdef CONFIG_BLK_DEV_INITRD
. = ALIGN(32);
__initramfs_start = .;
*(.init.ramfs)
__initramfs_end = .;
#endif
. = ALIGN(PAGE_SIZE);
__init_end = .;
} }
INIT_DATA_SECTION(16)
. = ALIGN(PAGE_SIZE);
__init_end = .;
.text : AT(ADDR(.text) - LOAD_OFFSET) { .text : AT(ADDR(.text) - LOAD_OFFSET) {
_evba = .; _evba = .;
@ -78,34 +58,16 @@ SECTIONS
_etext = .; _etext = .;
} = 0xd703d703 } = 0xd703d703
. = ALIGN(4); EXCEPTION_TABLE(4)
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
__start___ex_table = .;
*(__ex_table)
__stop___ex_table = .;
}
RODATA RODATA
. = ALIGN(THREAD_SIZE);
.data : AT(ADDR(.data) - LOAD_OFFSET) { .data : AT(ADDR(.data) - LOAD_OFFSET) {
_data = .; _data = .;
_sdata = .; _sdata = .;
/*
* First, the init task union, aligned to an 8K boundary.
*/
*(.data.init_task)
/* Then, the page-aligned data */ INIT_TASK_DATA(THREAD_SIZE)
. = ALIGN(PAGE_SIZE); PAGE_ALIGNED_DATA(PAGE_SIZE);
*(.data.page_aligned) CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
/* Then, the cacheline aligned data */
. = ALIGN(L1_CACHE_BYTES);
*(.data.cacheline_aligned)
/* And the rest... */
*(.data.rel*) *(.data.rel*)
DATA_DATA DATA_DATA
CONSTRUCTORS CONSTRUCTORS
@ -113,16 +75,8 @@ SECTIONS
_edata = .; _edata = .;
} }
BSS_SECTION(0, 8, 8)
. = ALIGN(8); _end = .;
.bss : AT(ADDR(.bss) - LOAD_OFFSET) {
__bss_start = .;
*(.bss)
*(COMMON)
. = ALIGN(8);
__bss_stop = .;
_end = .;
}
DWARF_DEBUG DWARF_DEBUG