diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2007-11-13 22:18:33 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-11-17 01:38:58 +0100 |
commit | 1c3dd43338a077165e7e0309cb3994e65d2bdbf8 (patch) | |
tree | 693c95dd175c7d32bfc147f47eeaae22445e896e /include | |
parent | 5c15010efad980ad5498cc565fc1ed70df2f52b4 (diff) | |
download | u-boot-imx-1c3dd43338a077165e7e0309cb3994e65d2bdbf8.zip u-boot-imx-1c3dd43338a077165e7e0309cb3994e65d2bdbf8.tar.gz u-boot-imx-1c3dd43338a077165e7e0309cb3994e65d2bdbf8.tar.bz2 |
powerpc: Backout relocation changes.
Ugh. I *hate* to back this change out, but these compiler flags don't
work for relocation on all versions of GCC. I've not been able to
reproduce the environment in my setup (and hence, not been able to
find a combination that *does* work), so I've got no choice but to go
back to the old gcc flags and linker script.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/common.h b/include/common.h index aca281b..63ac8b0 100644 --- a/include/common.h +++ b/include/common.h @@ -63,19 +63,13 @@ typedef volatile unsigned char vu_char; #endif #elif defined(CONFIG_5xx) #include <asm/5xx_immap.h> -#define CONFIG_RELOC_FIXUP_WORKS #elif defined(CONFIG_MPC5xxx) #include <mpc5xxx.h> -#define CONFIG_RELOC_FIXUP_WORKS #elif defined(CONFIG_MPC512X) #include <mpc512x.h> #include <asm/immap_512x.h> -#define CONFIG_RELOC_FIXUP_WORKS #elif defined(CONFIG_MPC8220) #include <asm/immap_8220.h> -#define CONFIG_RELOC_FIXUP_WORKS -#elif defined(CONFIG_824X) -#define CONFIG_RELOC_FIXUP_WORKS #elif defined(CONFIG_8260) #if defined(CONFIG_MPC8247) \ || defined(CONFIG_MPC8248) \ @@ -87,7 +81,6 @@ typedef volatile unsigned char vu_char; #define CONFIG_MPC8260 1 #endif #include <asm/immap_8260.h> -#define CONFIG_RELOC_FIXUP_WORKS #endif #ifdef CONFIG_MPC86xx #include <mpc86xx.h> @@ -100,7 +93,6 @@ typedef volatile unsigned char vu_char; #ifdef CONFIG_MPC83XX #include <mpc83xx.h> #include <asm/immap_83xx.h> -#define CONFIG_RELOC_FIXUP_WORKS #endif #ifdef CONFIG_4xx #include <ppc4xx.h> |