diff options
author | Aneesh V <aneesh@ti.com> | 2011-07-13 05:11:06 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-07-26 14:44:25 +0200 |
commit | 05bad4aa567ccffaac128d9090abde245f8463d1 (patch) | |
tree | a962bdba0ed6f1079b82150abbc722242c1c7f28 /arch/arm | |
parent | 5253418a77bb389d9fb272323adb9b7e5e7e99cf (diff) | |
download | u-boot-imx-05bad4aa567ccffaac128d9090abde245f8463d1.zip u-boot-imx-05bad4aa567ccffaac128d9090abde245f8463d1.tar.gz u-boot-imx-05bad4aa567ccffaac128d9090abde245f8463d1.tar.bz2 |
scaled down version of generic libraries for SPL
Signed-off-by: Aneesh V <aneesh@ti.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index d31321a..300c8fa 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -26,6 +26,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(ARCH).o LIBGCC = $(obj)libgcc.o +ifndef CONFIG_SPL_BUILD GLSOBJS += _ashldi3.o GLSOBJS += _ashrdi3.o GLSOBJS += _divsi3.o @@ -45,6 +46,7 @@ COBJS-y += interrupts.o COBJS-y += reset.o SOBJS-$(CONFIG_USE_ARCH_MEMSET) += memset.o SOBJS-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o +endif SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \ $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |