diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2007-11-15 08:20:43 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2007-11-15 08:31:17 -0700 |
commit | 928fe33b24cdf382a8dc8687fed24b1961cdb5d6 (patch) | |
tree | 2f07531a8c25f49626fb84b1cf0dbf418bd5c778 /cpu | |
parent | c93945e8f9e300860d2bf73a2549ce5794f8bd00 (diff) | |
download | u-boot-imx-928fe33b24cdf382a8dc8687fed24b1961cdb5d6.zip u-boot-imx-928fe33b24cdf382a8dc8687fed24b1961cdb5d6.tar.gz u-boot-imx-928fe33b24cdf382a8dc8687fed24b1961cdb5d6.tar.bz2 |
Revert "Correct fixup relocation for mpc83xx"
This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc83xx/config.mk | 2 | ||||
-rw-r--r-- | cpu/mpc83xx/u-boot.lds | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/cpu/mpc83xx/config.mk b/cpu/mpc83xx/config.mk index 2ec395d..ecf8a60 100644 --- a/cpu/mpc83xx/config.mk +++ b/cpu/mpc83xx/config.mk @@ -20,7 +20,7 @@ # MA 02111-1307 USA # -PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable +PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi PLATFORM_CPPFLAGS += -DCONFIG_MPC83XX -DCONFIG_E300 \ -ffixed-r2 -ffixed-r29 -msoft-float diff --git a/cpu/mpc83xx/u-boot.lds b/cpu/mpc83xx/u-boot.lds index ca663bc..937c87a 100644 --- a/cpu/mpc83xx/u-boot.lds +++ b/cpu/mpc83xx/u-boot.lds @@ -52,6 +52,7 @@ SECTIONS { cpu/mpc83xx/start.o (.text) *(.text) + *(.fixup) *(.got1) . = ALIGN(16); *(.rodata) |