summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorGraeme Russ <graeme.russ@gmail.com>2010-10-07 20:03:32 +1100
committerGraeme Russ <graeme.russ@gmail.com>2010-10-07 20:03:32 +1100
commit221914265860a47a0ba8bfa6956097cb045d9b39 (patch)
treeeb6e77213d11bfb1ef2e182bf8e3347a474e8f31 /board
parent067f9b10710e4edee97a9220b2ea8841c646368b (diff)
downloadtalos-obmc-uboot-221914265860a47a0ba8bfa6956097cb045d9b39.tar.gz
talos-obmc-uboot-221914265860a47a0ba8bfa6956097cb045d9b39.zip
x86: Rearrange linker script
Tidy up the linker script and discard some sections to save space
Diffstat (limited to 'board')
-rw-r--r--board/eNET/u-boot.lds39
1 files changed, 18 insertions, 21 deletions
diff --git a/board/eNET/u-boot.lds b/board/eNET/u-boot.lds
index ef5d9417a2..3c52010651 100644
--- a/board/eNET/u-boot.lds
+++ b/board/eNET/u-boot.lds
@@ -29,50 +29,47 @@ SECTIONS
{
. = TEXT_BASE; /* Location of bootcode in flash */
__text_start = .;
- .text : { *(.text); }
+ .text : { *(.text*); }
. = ALIGN(4);
- .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
-
- . = ALIGN(4);
-
- .data : { *(.data) }
+ __u_boot_cmd_start = .;
+ .u_boot_cmd : { *(.u_boot_cmd) }
. = ALIGN(4);
+ __u_boot_cmd_end = .;
- .interp : { *(.interp) }
. = ALIGN(4);
+ .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
- .dynsym : { *(.dynsym) }
. = ALIGN(4);
+ .data : { *(.data*) }
- .dynstr : { *(.dynstr) }
. = ALIGN(4);
+ .dynsym : { *(.dynsym*) }
- .hash : { *(.hash) }
. = ALIGN(4);
+ .hash : { *(.hash*) }
- .got : { *(.got) }
. = ALIGN(4);
+ .got : { *(.got*) }
- .got.plt : { *(.got.plt) }
. = ALIGN(4);
+ __data_end = .;
- .dynamic (NOLOAD) : { *(.dynamic) }
. = ALIGN(4);
+ __bss_start = ABSOLUTE(.);
+ .bss (NOLOAD) : { *(.bss) }
+ __bss_size = SIZEOF(.bss);
- __u_boot_cmd_start = .;
- .u_boot_cmd : { *(.u_boot_cmd) }
. = ALIGN(4);
- __u_boot_cmd_end = .;
-
__rel_dyn_start = .;
.rel.dyn : { *(.rel.dyn) }
__rel_dyn_end = .;
- . = ALIGN(4);
- __bss_start = ABSOLUTE(.);
- .bss (NOLOAD) : { *(.bss) }
- __bss_size = SIZEOF(.bss);
+ /DISCARD/ : { *(.dynstr*) }
+ /DISCARD/ : { *(.dynamic*) }
+ /DISCARD/ : { *(.plt*) }
+ /DISCARD/ : { *(.interp*) }
+ /DISCARD/ : { *(.gnu*) }
/* 16bit realmode trampoline code */
.realmode 0x7c0 : AT ( LOADADDR(.rel.dyn) + SIZEOF(.rel.dyn) ) { KEEP(*(.realmode)) }
OpenPOWER on IntegriCloud