summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens2017-04-15 16:49:57 +0000
committerAlexander Couzens2017-04-21 16:19:37 +0000
commitf432114bba1f5ebc6fb05f2a0925280f640e05ec (patch)
treeb747c77b3f703fc202a3f7275c0221098a116b25
parentdd280ffc60e58bc413323f1c2d3a4a7f965042ad (diff)
downloadomap-f432114bba1f5ebc6fb05f2a0925280f640e05ec.tar.gz
package/uboot-omap: install image to STAGING_DIR_IMAGE
to use them later by image/Makefile to create full working sdcard images Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
-rw-r--r--package/boot/uboot-omap/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/boot/uboot-omap/Makefile b/package/boot/uboot-omap/Makefile
index 876d9f0574..17a4af42f2 100644
--- a/package/boot/uboot-omap/Makefile
+++ b/package/boot/uboot-omap/Makefile
@@ -42,4 +42,9 @@ endef
UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle
+define Build/InstallDev
+ $(INSTALL_DIR) $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)
+ $(CP) $(patsubst %,$(PKG_BUILD_DIR)/%,$(UBOOT_IMAGE)) $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)/
+endef
+
$(eval $(call BuildPackage/U-Boot))