diff options
author | Wolfgang Denk <wd@denx.de> | 2009-05-16 10:47:38 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-06-12 20:47:16 +0200 |
commit | de26ef99bddbce4ed225f93afcf0bee99c3b6f87 (patch) | |
tree | ce7263c310a633126968f14668b4ca757daa7d01 /cpu/mpc512x/config.mk | |
parent | 03e069dc0a765d506f78a68319acf33d432e035b (diff) | |
download | u-boot-imx-de26ef99bddbce4ed225f93afcf0bee99c3b6f87.zip u-boot-imx-de26ef99bddbce4ed225f93afcf0bee99c3b6f87.tar.gz u-boot-imx-de26ef99bddbce4ed225f93afcf0bee99c3b6f87.tar.bz2 |
mpc512x: Move common files to share them by several boards
We will soon see several new MPC521x based boards added. This patch
moves files that are not board specific to a common directory so they
can be shared by all such ports. It also splits off common IDE code
into a new file, cpu/mpc512x/ide.c .
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: John Rigby <jcrigby@gmail.com>
Diffstat (limited to 'cpu/mpc512x/config.mk')
-rw-r--r-- | cpu/mpc512x/config.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpu/mpc512x/config.mk b/cpu/mpc512x/config.mk index 5b7e1f2..6ab34b1 100644 --- a/cpu/mpc512x/config.mk +++ b/cpu/mpc512x/config.mk @@ -1,5 +1,5 @@ # -# (C) Copyright 2007 DENX Software Engineering +# (C) Copyright 2007-2009 DENX Software Engineering # # See file CREDITS for list of people who contributed to this # project. @@ -23,3 +23,7 @@ PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi PLATFORM_CPPFLAGS += -DCONFIG_MPC512X -DCONFIG_E300 \ -ffixed-r2 -msoft-float -mcpu=603e + +# Use default linker script. +# A board port can override this setting in board/*/config.mk +LDSCRIPT := $(SRCTREE)/cpu/mpc512x/u-boot.lds |