diff options
author | wdenk <wdenk> | 2005-05-16 14:19:49 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-05-16 14:19:49 +0000 |
commit | c01766307c1140955b71a9a842d742ee6478bd24 (patch) | |
tree | ba6f92430b107905cc55591c998d21ba090b2fb1 /examples/Makefile | |
parent | 343117bf12075a8d6c2fa228987cbd6a1dbce50a (diff) | |
download | u-boot-imx-c01766307c1140955b71a9a842d742ee6478bd24.zip u-boot-imx-c01766307c1140955b71a9a842d742ee6478bd24.tar.gz u-boot-imx-c01766307c1140955b71a9a842d742ee6478bd24.tar.bz2 |
Fix compile problems caused by new burst mode SDRAM test;
make port pins to trigger logic analyzer configurable
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index fe068ab..2f8c4c4 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -58,7 +58,7 @@ include $(TOPDIR)/config.mk SREC = hello_world.srec BIN = hello_world.bin hello_world -ifeq ($(ARCH),ppc) +ifeq ($(CPU),mpc8xx) SREC = test_burst.srec BIN = test_burst.bin test_burst endif @@ -101,6 +101,8 @@ LIB = libstubs.a LIBAOBJS= ifeq ($(ARCH),ppc) LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o +endif +ifeq ($(CPU),mpc8xx) LIBAOBJS+= test_burst_lib.o endif LIBCOBJS= stubs.o |