diff options
Diffstat (limited to 'board/cogent/u-boot.lds')
-rw-r--r-- | board/cogent/u-boot.lds | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/cogent/u-boot.lds b/board/cogent/u-boot.lds index b4c7a0ed6e..42ed142ea2 100644 --- a/board/cogent/u-boot.lds +++ b/board/cogent/u-boot.lds @@ -21,6 +21,7 @@ * MA 02111-1307 USA */ +#include <config.h> OUTPUT_ARCH(powerpc) SECTIONS @@ -29,9 +30,12 @@ SECTIONS . = + SIZEOF_HEADERS; .text : { +#ifdef CONFIG_MPC8260 + arch/powerpc/cpu/mpc8260/start.o (.text*) +#else arch/powerpc/cpu/mpc8xx/start.o (.text*) arch/powerpc/cpu/mpc8xx/traps.o (.text*) - +#endif *(.text*) } _etext = .; |