0f9c0bf3d5
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
709 B
Makefile
23 lines
709 B
Makefile
################################################################################
|
|
#
|
|
# zynq-boot-bin
|
|
#
|
|
################################################################################
|
|
|
|
ZYNQ_BOOT_BIN_VERSION = xilinx-v2015.1
|
|
ZYNQ_BOOT_BIN_SOURCE = zynq-boot-bin.py
|
|
ZYNQ_BOOT_BIN_SITE = https://raw.githubusercontent.com/Xilinx/u-boot-xlnx/$(ZYNQ_BOOT_BIN_VERSION)/tools
|
|
ZYNQ_BOOT_BIN_LICENSE = GPL-3.0+
|
|
|
|
HOST_ZYNQ_BOOT_BIN_DEPENDENCIES = host-python
|
|
|
|
define HOST_ZYNQ_BOOT_BIN_EXTRACT_CMDS
|
|
cp $(DL_DIR)/$(ZYNQ_BOOT_BIN_SOURCE) $(@D)
|
|
endef
|
|
|
|
define HOST_ZYNQ_BOOT_BIN_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/$(ZYNQ_BOOT_BIN_SOURCE) $(HOST_DIR)/bin/$(ZYNQ_BOOT_BIN_SOURCE)
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|