mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
ARM:AM33XX: Added timer support
This patch adds timer support for AM33xx platform. Signed-off-by: Chandan Nath <chandan.nath@ti.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
This commit is contained in:
parent
62d7fe7c91
commit
f0f4b5ff50
2 changed files with 5 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -289,6 +289,9 @@ LIBS += lib/libfdt/libfdt.o
|
|||
LIBS += api/libapi.o
|
||||
LIBS += post/libpost.o
|
||||
|
||||
ifeq ($(SOC),am33xx)
|
||||
LIBS += $(CPUDIR)/omap-common/libomap-common.o
|
||||
endif
|
||||
ifeq ($(SOC),omap3)
|
||||
LIBS += $(CPUDIR)/omap-common/libomap-common.o
|
||||
endif
|
||||
|
|
|
@ -29,7 +29,9 @@ SOBJS := reset.o
|
|||
|
||||
COBJS := timer.o
|
||||
COBJS += utils.o
|
||||
ifdef CONFIG_OMAP
|
||||
COBJS += gpio.o
|
||||
endif
|
||||
|
||||
ifdef CONFIG_SPL_BUILD
|
||||
COBJS += spl.o
|
||||
|
|
Loading…
Add table
Reference in a new issue