From c6502ce3bb87b6a6a85209d3e67736bd2db21bc7 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 27 Jan 2017 16:06:31 +0100 Subject: layerscape: put u-boot and ucode images into image staging directory Do not put the u-boot and ucode images into the kernel build directory as this directory might get removed after kernel updates while the u-boot packages InstallDev recipe is not getting re-executed because it is still considered current, leading to image build failures later on due to missing images. To ensure that built bootloader images persist over kernel version updates in the buildroot, put them into the new STAGING_DIR_IMAGE directory. Signed-off-by: Jo-Philipp Wich --- package/firmware/fman-ucode/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'package/firmware/fman-ucode/Makefile') diff --git a/package/firmware/fman-ucode/Makefile b/package/firmware/fman-ucode/Makefile index 5a0238dee2..396750f804 100644 --- a/package/firmware/fman-ucode/Makefile +++ b/package/firmware/fman-ucode/Makefile @@ -72,7 +72,8 @@ define Build/Compile endef define Package/fman/install/default - $(CP) $(PKG_BUILD_DIR)/$(FMAN_CONFIG) $(KDIR)/$(1)-fman.bin + $(INSTALL_DIR) $(STAGING_DIR_IMAGE) + $(CP) $(PKG_BUILD_DIR)/$(FMAN_CONFIG) $(STAGING_DIR_IMAGE)/$(1)-fman.bin endef define Package/fman/install/template -- cgit v1.2.3