arm-trusted-firmware-mvebu: install to own subdir

Lift the dependency on the build order, where flash-image.bin may be missing
from the u-boot dir.

While at it, also install the uart images for rescue purposes.

Signed-off-by: Andre Heider <a.heider@gmail.com>
This commit is contained in:
Andre Heider 2020-08-20 07:53:41 +02:00 committed by Hauke Mehrtens
parent 53065b2dee
commit 75e9d8e6e7
1 changed files with 3 additions and 1 deletions

View File

@ -107,7 +107,9 @@ MAKE_FLAGS = \
fip
define Build/InstallDev
$(CP) $(PKG_BUILD_DIR)/build/$(PLAT)/release/flash-image.bin $(BIN_DIR)/u-boot-$(BOARDNAME)/
$(INSTALL_DIR) $(BIN_DIR)/flash-image-$(BOARDNAME)
$(CP) $(PKG_BUILD_DIR)/build/$(PLAT)/release/flash-image.bin $(BIN_DIR)/flash-image-$(BOARDNAME)/
$(CP) $(PKG_BUILD_DIR)/build/$(PLAT)/release/uart-images.tgz $(BIN_DIR)/flash-image-$(BOARDNAME)/
endef
$(eval $(call BuildPackage,arm-trusted-firmware-mvebu/uDPU))