1 # SPDX-License-Identifier: GPL-2.0+
4 # B&R Industrial Automation GmbH - http://www.br-automation.com
7 hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE) | sed -e 's/imx6dl-//')
9 payload_off :=$(shell printf "%d" $(CONFIG_SYS_SPI_U_BOOT_OFFS))
11 quiet_cmd_prodbin = PRODBIN $@ $(payload_off)
13 dd if=/dev/zero ibs=1M count=2 2>/dev/null | tr "\000" "\377" >$@ && \
14 dd conv=notrunc bs=1 if=SPL of=$@ seek=1024 2>/dev/null && \
15 dd bs=1 if=u-boot-dtb.img of=$@ seek=$(payload_off) 2>/dev/null
17 quiet_cmd_prodzip = SAPZIP $@
19 test -d misc && rm -r misc; \
22 cp u-boot-dtb.img misc/ && \
23 zip -9 -r $@ misc/* >/dev/null $<
25 ifeq ($(hw-platform-y),brppt2)
26 ifneq ($(CONFIG_SPL_BUILD),y)
27 INPUTS-y += $(hw-platform-y)_prog.bin
28 INPUTS-y += $(hw-platform-y)_prod.zip
32 $(hw-platform-y)_prog.bin: u-boot-dtb.img spl SPL
33 $(call if_changed,prodbin)
35 $(hw-platform-y)_prod.zip: $(hw-platform-y)_prog.bin
36 $(call if_changed,prodzip)