diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2007-07-03 00:34:29 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-04 01:07:40 +0200 |
commit | 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90 (patch) | |
tree | 18d2ee2d277dbe8e1dba39d1a15e955830e9153b /cpu | |
parent | 3649cd99ba815b6601868735765602f00ef3692b (diff) | |
download | u-boot-imx-6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.zip u-boot-imx-6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.tar.gz u-boot-imx-6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.tar.bz2 |
Correct fixup relocation for MPC5xxx
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc5xxx/config.mk | 2 | ||||
-rw-r--r-- | cpu/mpc5xxx/u-boot-customlayout.lds | 1 | ||||
-rw-r--r-- | cpu/mpc5xxx/u-boot.lds | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/cpu/mpc5xxx/config.mk b/cpu/mpc5xxx/config.mk index 0df51ba..0e861c4 100644 --- a/cpu/mpc5xxx/config.mk +++ b/cpu/mpc5xxx/config.mk @@ -21,7 +21,7 @@ # MA 02111-1307 USA # -PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi +PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable PLATFORM_CPPFLAGS += -DCONFIG_MPC5xxx -ffixed-r2 -ffixed-r29 \ -mstring -mcpu=603e -mmultiple diff --git a/cpu/mpc5xxx/u-boot-customlayout.lds b/cpu/mpc5xxx/u-boot-customlayout.lds index 123a14c..1107943 100644 --- a/cpu/mpc5xxx/u-boot-customlayout.lds +++ b/cpu/mpc5xxx/u-boot-customlayout.lds @@ -66,7 +66,6 @@ SECTIONS common/environment.o (.ppcenv) *(.text) - *(.fixup) *(.got1) . = ALIGN(16); *(.rodata) diff --git a/cpu/mpc5xxx/u-boot.lds b/cpu/mpc5xxx/u-boot.lds index 78818a4..a28a3af 100644 --- a/cpu/mpc5xxx/u-boot.lds +++ b/cpu/mpc5xxx/u-boot.lds @@ -55,7 +55,6 @@ SECTIONS { cpu/mpc5xxx/start.o (.text) *(.text) - *(.fixup) *(.got1) . = ALIGN(16); *(.rodata) |