projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9cdbefd24b1a2a008188158c463e4bd5369474dd
[platform/kernel/u-boot.git]
/
arch
/
arm
/
mach-mvebu
/
Makefile
1
#
2
# Copyright (C) 2014-2015 Stefan Roese <sr@denx.de>
3
#
4
# SPDX-License-Identifier: GPL-2.0+
5
#
6
7
ifdef CONFIG_KIRKWOOD
8
9
obj-y = dram.o
10
obj-y += gpio.o
11
obj-y += timer.o
12
13
else
14
15
obj-y = cpu.o
16
obj-y += dram.o
17
obj-y += gpio.o
18
obj-y += mbus.o
19
obj-y += timer.o
20
obj-$(CONFIG_SPL_BUILD) += spl.o
21
obj-$(CONFIG_SPL_BUILD) += lowlevel_spl.o
22
23
obj-$(CONFIG_SYS_MVEBU_DDR_AXP) += serdes/axp/
24
25
endif