summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2010-06-08 13:07:46 -0700
committerSandeep Paulraj <s-paulraj@ti.com>2010-07-05 20:00:00 -0400
commitd34efc767d26d353e0257042080eec7012e5440f (patch)
treeb41852c65401a0c6d484415a17c29370b21cea3c /Makefile
parentf56348af5d255f6dc2a8bcd7d798ab5edf8fba25 (diff)
downloadtalos-obmc-uboot-d34efc767d26d353e0257042080eec7012e5440f.tar.gz
talos-obmc-uboot-d34efc767d26d353e0257042080eec7012e5440f.zip
ARMV7: Add basic support for TI OMAP4
This patch adds minimum support for OMAP4. Code which can be shared between OMAP3 and OMAP4 is placed in arch/arm/cpu/armv7/omap-common Signed-off-by: Aneesh V <aneesh@ti.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1d87f37074..5780ee1c54 100644
--- a/Makefile
+++ b/Makefile
@@ -245,6 +245,13 @@ LIBS += lib/libfdt/libfdt.a
LIBS += api/libapi.a
LIBS += post/libpost.a
+ifeq ($(SOC),omap3)
+LIBS += $(CPUDIR)/omap-common/libomap-common.a
+endif
+ifeq ($(SOC),omap4)
+LIBS += $(CPUDIR)/omap-common/libomap-common.a
+endif
+
LIBS := $(addprefix $(obj),$(LIBS))
.PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE)
OpenPOWER on IntegriCloud