diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-31 12:28:00 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-31 12:28:00 +0200 | 
| commit | 807d5d7319330e336ab34a5623c5e0d73b87d540 (patch) | |
| tree | bbd6ce9eb6005664667482dc9fdd6202cfd6e34d /board/atc | |
| parent | bce84c4dab92062bc5ae7608c4a2508803b1225e (diff) | |
| download | olio-uboot-2014.01-807d5d7319330e336ab34a5623c5e0d73b87d540.tar.xz olio-uboot-2014.01-807d5d7319330e336ab34a5623c5e0d73b87d540.zip | |
Fix problems with ld version 2.16 (dot outside sections problem)
Pointed out by Gerhard Jaeger, 31 Aug 2005;
cf. http://sourceware.org/ml/binutils/2005-08/msg00412.html
Diffstat (limited to 'board/atc')
| -rw-r--r-- | board/atc/u-boot.lds | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/board/atc/u-boot.lds b/board/atc/u-boot.lds index 7ac29a0fb..f8b5b2578 100644 --- a/board/atc/u-boot.lds +++ b/board/atc/u-boot.lds @@ -94,10 +94,12 @@ SECTIONS    _edata  =  .;    PROVIDE (edata = .); +  . = .;    __u_boot_cmd_start = .;    .u_boot_cmd : { *(.u_boot_cmd) }    __u_boot_cmd_end = .; +  . = .;    __start___ex_table = .;    __ex_table : { *(__ex_table) }    __stop___ex_table = .; |