From 0af413d211d99a9854d71905cd8406364d256f29 Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Wed, 29 Sep 2021 11:06:17 +0800 Subject: [PATCH] rockchip: update binary name of idbloader (#7957) In rockchip's proprietary ddrloader, the idbloader can be general and no longer limited to the specific device. This matches the behavior in arm-trusted-firmware-rockchip-vendor. Fixes: dd71a38acb78ef ("uboot-rockchip: update package") Signed-off-by: Tianling Shen --- target/linux/rockchip/image/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/rockchip/image/Makefile b/target/linux/rockchip/image/Makefile index 5791f5c06..79e628ca5 100644 --- a/target/linux/rockchip/image/Makefile +++ b/target/linux/rockchip/image/Makefile @@ -60,9 +60,9 @@ define Build/pine64-bin 32768 # Copy the idbloader, uboot and trust image to the image at sector 0x40, 0x4000 and 0x6000 - dd if="$(STAGING_DIR_IMAGE)"/$(UBOOT_DEVICE_NAME)-idbloader.bin of="$@" seek=64 conv=notrunc + dd if="$(STAGING_DIR_IMAGE)"/$(SOC)-idbloader.bin of="$@" seek=64 conv=notrunc dd if="$(STAGING_DIR_IMAGE)"/$(UBOOT_DEVICE_NAME)-uboot.img of="$@" seek=16384 conv=notrunc - dd if="$(STAGING_DIR_IMAGE)"/$(UBOOT_DEVICE_NAME)-trust.bin of="$@" seek=24576 conv=notrunc + dd if="$(STAGING_DIR_IMAGE)"/$(SOC)-trust.bin of="$@" seek=24576 conv=notrunc endef ### Devices ###