From: Danomi Manchego Date: Wed, 24 Oct 2018 02:43:11 +0000 (-0400) Subject: arm-trusted-firmware: replace mkimage invocation with MKIMAGE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=22ea9d5a87254555f985c10a7702dd752f3dc8b4;p=buildroot.git arm-trusted-firmware: replace mkimage invocation with MKIMAGE We already use $(MKIMAGE) instead of $(HOST_DIR)/bin/mkimage in xvisor, linux, and cpio; use it here too. Signed-off-by: Danomi Manchego Signed-off-by: Thomas Petazzoni --- diff --git a/boot/arm-trusted-firmware/arm-trusted-firmware.mk b/boot/arm-trusted-firmware/arm-trusted-firmware.mk index 19f7c4c80a..f353d56448 100644 --- a/boot/arm-trusted-firmware/arm-trusted-firmware.mk +++ b/boot/arm-trusted-firmware/arm-trusted-firmware.mk @@ -80,7 +80,7 @@ define ARM_TRUSTED_FIRMWARE_BL31_UBOOT_BUILD # Get the entry point address from the elf. BASE_ADDR=$$($(TARGET_READELF) -h $(ARM_TRUSTED_FIRMWARE_IMG_DIR)/bl31/bl31.elf | \ sed -r '/^ Entry point address:\s*(.*)/!d; s//\1/') && \ - $(HOST_DIR)/bin/mkimage \ + $(MKIMAGE) \ -A arm64 -O arm-trusted-firmware -C none \ -a $${BASE_ADDR} -e $${BASE_ADDR} \ -d $(ARM_TRUSTED_FIRMWARE_IMG_DIR)/bl31.bin \