diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-01-27 13:14:12 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-01-27 16:53:31 +0100 |
commit | 237bd361352446669d4058e423f5e1b27c930004 (patch) | |
tree | 959e0cda93d5a9f2f6038e41bd07c0a74848073b /package | |
parent | 7d57db4d9be2e8c8e72108c0b8702029ba8c70de (diff) | |
download | upstream-237bd361352446669d4058e423f5e1b27c930004.tar.gz upstream-237bd361352446669d4058e423f5e1b27c930004.tar.bz2 upstream-237bd361352446669d4058e423f5e1b27c930004.zip |
mvebu: put u-boot images into image staging directory
Do not put the u-boot 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 u-boot 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 <jo@mein.io>
Diffstat (limited to 'package')
-rw-r--r-- | package/boot/uboot-mvebu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/boot/uboot-mvebu/Makefile b/package/boot/uboot-mvebu/Makefile index e0cd944be9..bd95f769e9 100644 --- a/package/boot/uboot-mvebu/Makefile +++ b/package/boot/uboot-mvebu/Makefile @@ -31,8 +31,8 @@ UBOOT_TARGETS:= \ clearfog define Build/InstallDev - $(INSTALL_DIR) $(KERNEL_BUILD_DIR)/ - $(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(KERNEL_BUILD_DIR)/$(BUILD_VARIANT)-u-boot-spl.kwb + $(INSTALL_DIR) $(STAGING_DIR_IMAGE) + $(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-u-boot-spl.kwb endef $(eval $(call BuildPackage/U-Boot)) |