blob: 8a7c809dcb150d60040b3e96a9199142033b3181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# SPDX-License-Identifier: GPL-2.0+
#
# B&R Industrial Automation GmbH - http://www.br-automation.com
hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE) | sed -e 's/zynq-//')
obj-y := ../common/common.o
obj-y += ../common/br_resetc.o
obj-y += common/board.o
obj-y += $(hw-platform-y)/board.o
obj-$(CONFIG_SPL_BUILD) += $(hw-platform-y)/ps7_init_gpl.o
# Suppress "warning: function declaration isn't a prototype"
CFLAGS_REMOVE_$(hw-platform-y)/ps7_init_gpl.o := -Wstrict-prototypes
|