aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwdenk2003-10-15 18:53:47 -0500
committerwdenk2003-10-15 18:53:47 -0500
commit42d1f0394bef0624fc9664714d54bb137931d6a6 (patch)
tree892a4130507484d25faf9a72e019cf88cfb3e3d9 /Makefile
parent2d5b561e2bfdee8552a99b2cf93016cce2a74895 (diff)
downloadu-boot-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.gz
u-boot-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.xz
u-boot-42d1f0394bef0624fc9664714d54bb137931d6a6.zip
* Patches by Xianghua Xiao, 15 Oct 2003:LABEL_2003_10_16_0200
- Added Motorola CPU 8540/8560 support (cpu/85xx) - Added Motorola MPC8540ADS board support (board/mpc8540ads) - Added Motorola MPC8560ADS board support (board/mpc8560ads) * Minor code cleanup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b75d22d68d..67ec5fb1a4 100644
--- a/Makefile
+++ b/Makefile
@@ -106,6 +106,9 @@ endif
106ifeq ($(CPU),ppc4xx) 106ifeq ($(CPU),ppc4xx)
107OBJS += cpu/$(CPU)/resetvec.o 107OBJS += cpu/$(CPU)/resetvec.o
108endif 108endif
109ifeq ($(CPU),mpc85xx)
110OBJS += cpu/$(CPU)/resetvec.o
111endif
109 112
110LIBS = board/$(BOARDDIR)/lib$(BOARD).a 113LIBS = board/$(BOARDDIR)/lib$(BOARD).a
111LIBS += cpu/$(CPU)/lib$(CPU).a 114LIBS += cpu/$(CPU)/lib$(CPU).a
@@ -775,6 +778,16 @@ ZPC1900_config: unconfig
775 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900 778 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
776 779
777######################################################################### 780#########################################################################
781## MPC85xx Systems
782#########################################################################
783
784MPC8540ADS_config: unconfig
785 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
786
787MPC8560ADS_config: unconfig
788 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
789
790#########################################################################
778## 74xx/7xx Systems 791## 74xx/7xx Systems
779######################################################################### 792#########################################################################
780 793