diff options
Diffstat (limited to 'board/matrix_vision/mvsmr/u-boot.lds')
| -rw-r--r-- | board/matrix_vision/mvsmr/u-boot.lds | 58 | 
1 files changed, 11 insertions, 47 deletions
| diff --git a/board/matrix_vision/mvsmr/u-boot.lds b/board/matrix_vision/mvsmr/u-boot.lds index f9b103e61..074a4827e 100644 --- a/board/matrix_vision/mvsmr/u-boot.lds +++ b/board/matrix_vision/mvsmr/u-boot.lds @@ -28,38 +28,13 @@ OUTPUT_ARCH(powerpc)  SECTIONS  {    /* Read-only sections, merged into text segment: */ -  . = + SIZEOF_HEADERS; -  .interp : { *(.interp) } -  .hash          : { *(.hash)		} -  .dynsym        : { *(.dynsym)		} -  .dynstr        : { *(.dynstr)		} -  .rel.text      : { *(.rel.text)		} -  .rela.text     : { *(.rela.text)	} -  .rel.data      : { *(.rel.data)		} -  .rela.data     : { *(.rela.data)	} -  .rel.rodata    : { *(.rel.rodata)	} -  .rela.rodata   : { *(.rela.rodata)	} -  .rel.got       : { *(.rel.got)		} -  .rela.got      : { *(.rela.got)		} -  .rel.ctors     : { *(.rel.ctors)	} -  .rela.ctors    : { *(.rela.ctors)	} -  .rel.dtors     : { *(.rel.dtors)	} -  .rela.dtors    : { *(.rela.dtors)	} -  .rel.bss       : { *(.rel.bss)		} -  .rela.bss      : { *(.rela.bss)		} -  .rel.plt       : { *(.rel.plt)		} -  .rela.plt      : { *(.rela.plt)		} -  .init          : { *(.init)	} -  .plt : { *(.plt) }    .text      :    {      /* WARNING - the following is hand-optimized to fit within  */      /* the first two sectors (=8KB) of our S29GL flash chip */ -    arch/powerpc/cpu/mpc5xxx/start.o	(.text) -    arch/powerpc/cpu/mpc5xxx/traps.o	(.text) -    lib/crc32.o				(.text) -    arch/powerpc/lib/cache.o		(.text) -    arch/powerpc/lib/time.o		(.text) +    arch/powerpc/cpu/mpc5xxx/start.o	(.text*) +    arch/powerpc/cpu/mpc5xxx/traps.o	(.text*) +    board/matrix_vision/common/libmatrix_vision.o (.text*)      /* This is only needed to force failure if size of above code will ever */      /* increase and grow into reserved space. */ @@ -69,15 +44,10 @@ SECTIONS      . = env_offset;	/* ld error as soon as above ALIGN misplaces lc */      common/env_embedded.o        (.ppcenv) -    *(.text) -    *(.got1) +    *(.text*)      . = ALIGN(16); -    *(.eh_frame)      *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))    } -  .fini      : { *(.fini)    } =0 -  .ctors     : { *(.ctors)   } -  .dtors     : { *(.dtors)   }    /* Read-write section, merged into data segment: */    . = (. + 0x0FFF) & 0xFFFFF000; @@ -85,23 +55,19 @@ SECTIONS    PROVIDE (erotext = .);    .reloc   :    { -    *(.got) +    KEEP(*(.got))      _GOT2_TABLE_ = .; -    *(.got2) +    KEEP(*(.got2))      _FIXUP_TABLE_ = .; -    *(.fixup) +    KEEP(*(.fixup))    }    __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;    __fixup_entries = (. - _FIXUP_TABLE_) >> 2;    .data    :    { -    *(.data) -    *(.data1) -    *(.sdata) -    *(.sdata2) -    *(.dynamic) -    CONSTRUCTORS +    *(.data*) +    *(.sdata*)    }    _edata  =  .;    PROVIDE (edata = .); @@ -127,10 +93,8 @@ SECTIONS    __bss_start = .;    .bss (NOLOAD)       :    { -   *(.sbss) *(.scommon) -   *(.dynbss) -   *(.bss) -   *(COMMON) +   *(.bss*) +   *(.sbss*)     . = ALIGN(4);    }    _end = . ; |