diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-01-27 16:06:31 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-01-27 16:53:31 +0100 |
commit | c6502ce3bb87b6a6a85209d3e67736bd2db21bc7 (patch) | |
tree | 7af829172459e805158e43caf9f2f30a51559852 /package/firmware/rcw | |
parent | 237bd361352446669d4058e423f5e1b27c930004 (diff) | |
download | upstream-c6502ce3bb87b6a6a85209d3e67736bd2db21bc7.tar.gz upstream-c6502ce3bb87b6a6a85209d3e67736bd2db21bc7.tar.bz2 upstream-c6502ce3bb87b6a6a85209d3e67736bd2db21bc7.zip |
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 <jo@mein.io>
Diffstat (limited to 'package/firmware/rcw')
-rw-r--r-- | package/firmware/rcw/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/firmware/rcw/Makefile b/package/firmware/rcw/Makefile index d832e6e5d7..bae9c95b6c 100644 --- a/package/firmware/rcw/Makefile +++ b/package/firmware/rcw/Makefile @@ -81,7 +81,8 @@ define Build/Compile endef define Package/rcw/install/default - $(CP) $(PKG_BUILD_DIR)/$(RCW_CONFIG) $(KDIR)/$(1)-rcw.bin + $(INSTALL_DIR) $(STAGING_DIR_IMAGE) + $(CP) $(PKG_BUILD_DIR)/$(RCW_CONFIG) $(STAGING_DIR_IMAGE)/$(1)-rcw.bin endef define Package/rcw/install/template |