Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 1 | # |
2 | # (C) Copyright 2000-2003 | ||||
3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. | ||||
4 | # | ||||
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 6 | # |
7 | |||||
Masahiro Yamada | 4e1aa84 | 2013-10-17 17:34:48 +0900 | [diff] [blame] | 8 | obj-y := reset.o |
9 | obj-y += timer.o | ||||
10 | obj-y += utils.o | ||||
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 11 | |
Sricharan | 2e5ba48 | 2011-11-15 09:49:58 -0500 | [diff] [blame] | 12 | ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) |
Masahiro Yamada | 4e1aa84 | 2013-10-17 17:34:48 +0900 | [diff] [blame] | 13 | obj-y += hwinit-common.o |
14 | obj-y += clocks-common.o | ||||
15 | obj-y += emif-common.o | ||||
16 | obj-y += vc.o | ||||
17 | obj-y += abb.o | ||||
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 18 | endif |
19 | |||||
Lokesh Vutla | 806d279 | 2013-07-30 11:36:30 +0530 | [diff] [blame] | 20 | ifeq ($(CONFIG_OMAP34XX),) |
Masahiro Yamada | 4e1aa84 | 2013-10-17 17:34:48 +0900 | [diff] [blame] | 21 | obj-y += boot-common.o |
22 | obj-y += lowlevel_init.o | ||||
Sricharan | ce170be | 2011-11-15 09:49:50 -0500 | [diff] [blame] | 23 | endif |
24 | |||||
Sricharan | ce170be | 2011-11-15 09:49:50 -0500 | [diff] [blame] | 25 | ifndef CONFIG_SPL_BUILD |
Sricharan | 2e5ba48 | 2011-11-15 09:49:58 -0500 | [diff] [blame] | 26 | ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) |
Masahiro Yamada | 4e1aa84 | 2013-10-17 17:34:48 +0900 | [diff] [blame] | 27 | obj-y += mem-common.o |
Sricharan | ce170be | 2011-11-15 09:49:50 -0500 | [diff] [blame] | 28 | endif |
29 | endif |