diff options
author | Steve Sakoman | 2010-06-08 13:07:46 -0700 |
---|---|---|
committer | Sandeep Paulraj | 2010-07-05 20:00:00 -0400 |
commit | d34efc767d26d353e0257042080eec7012e5440f (patch) | |
tree | b41852c65401a0c6d484415a17c29370b21cea3c /Makefile | |
parent | f56348af5d255f6dc2a8bcd7d798ab5edf8fba25 (diff) |
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-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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) |