diff options
author | wdenk <wdenk> | 2005-05-07 19:06:32 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-05-07 19:06:32 +0000 |
commit | 931da93e0fced277c058c0c989d30bd1f6d10742 (patch) | |
tree | 0455e3e0f8130af779a1f2c550f32f759c3e5ebf /examples/Makefile | |
parent | 412babe304b948e1e3a909f8d2eb091b83f700d5 (diff) | |
download | u-boot-imx-931da93e0fced277c058c0c989d30bd1f6d10742.zip u-boot-imx-931da93e0fced277c058c0c989d30bd1f6d10742.tar.gz u-boot-imx-931da93e0fced277c058c0c989d30bd1f6d10742.tar.bz2 |
Add test tool to exercise SDRAM accesses in burst mode
(as standalone program, MPC8xx/PowerPC only)
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile index 300ac53..fe068ab 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -58,6 +58,11 @@ include $(TOPDIR)/config.mk SREC = hello_world.srec BIN = hello_world.bin hello_world +ifeq ($(ARCH),ppc) +SREC = test_burst.srec +BIN = test_burst.bin test_burst +endif + ifeq ($(ARCH),i386) SREC += 82559_eeprom.srec BIN += 82559_eeprom.bin 82559_eeprom @@ -96,6 +101,7 @@ LIB = libstubs.a LIBAOBJS= ifeq ($(ARCH),ppc) LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o +LIBAOBJS+= test_burst_lib.o endif LIBCOBJS= stubs.o LIBOBJS = $(LIBAOBJS) $(LIBCOBJS) |