diff options
author | Tanya Jiang <tanya.jiang@freescale.com> | 2006-08-03 18:39:49 +0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2006-11-03 19:42:17 -0600 |
commit | 09a81ff740b29deea1e2ab08a3c2ac136c2e6219 (patch) | |
tree | b067f8d3c1c4896ad7cd49ebc52c5357a77c3527 | |
parent | 04f899fc465c3e44f2b55ecc70618f5696fc0ddf (diff) | |
download | u-boot-imx-09a81ff740b29deea1e2ab08a3c2ac136c2e6219.zip u-boot-imx-09a81ff740b29deea1e2ab08a3c2ac136c2e6219.tar.gz u-boot-imx-09a81ff740b29deea1e2ab08a3c2ac136c2e6219.tar.bz2 |
mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
Removed unused file resetvec.S for mpc83xx cpu
Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | cpu/mpc83xx/Makefile | 2 | ||||
-rw-r--r-- | cpu/mpc83xx/resetvec.S | 6 |
3 files changed, 1 insertions, 10 deletions
@@ -174,9 +174,6 @@ endif ifeq ($(CPU),ppc4xx) OBJS += cpu/$(CPU)/resetvec.o endif -ifeq ($(CPU),mpc83xx) -OBJS += cpu/$(CPU)/resetvec.o -endif ifeq ($(CPU),mpc85xx) OBJS += cpu/$(CPU)/resetvec.o endif diff --git a/cpu/mpc83xx/Makefile b/cpu/mpc83xx/Makefile index b2a6b3e..1aa0005 100644 --- a/cpu/mpc83xx/Makefile +++ b/cpu/mpc83xx/Makefile @@ -27,7 +27,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a -START = start.o resetvec.o +START = start.o COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o \ i2c.o spd_sdram.o diff --git a/cpu/mpc83xx/resetvec.S b/cpu/mpc83xx/resetvec.S deleted file mode 100644 index 3dfcd0d..0000000 --- a/cpu/mpc83xx/resetvec.S +++ /dev/null @@ -1,6 +0,0 @@ - .section .resetvec,"ax" -#ifndef FIXME -#if 0 - b _start_e500 -#endif -#endif |