[source] at91bootstrap: remove manual copy of binaries to BIN_DIR

LEDE Commits lede-commits at lists.infradead.org
Fri Oct 13 15:35:39 PDT 2017


hauke pushed a commit to source.git, branch master:
https://git.lede-project.org/0a919afae4e0056a70004484144f8ac5b0582c0b

commit 0a919afae4e0056a70004484144f8ac5b0582c0b
Author: Sandeep Sheriker Mallikarjun <sandeepsheriker.mallikarjun at microchip.com>
AuthorDate: Wed Oct 4 16:14:40 2017 -0700

    at91bootstrap: remove manual copy of binaries to BIN_DIR
    
    removed copying of binaries to BIN_DIR during install and using
    default/install to install binaries to BIN_DIR folder.
    
    Signed-off-by: Sandeep Sheriker Mallikarjun <sandeepsheriker.mallikarjun at microchip.com>
---
 package/boot/at91bootstrap/at91bootstrap.mk | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/package/boot/at91bootstrap/at91bootstrap.mk b/package/boot/at91bootstrap/at91bootstrap.mk
index 732d643..dda5fa4 100644
--- a/package/boot/at91bootstrap/at91bootstrap.mk
+++ b/package/boot/at91bootstrap/at91bootstrap.mk
@@ -1,6 +1,15 @@
 
+PKG_TARGETS := bin
+PKG_FLAGS:=nonshared
+
 export GCC_HONOUR_COPTS=s
 
+define Package/at91bootstrap/install/default
+  $(CP) $(PKG_BUILD_DIR)/binaries/*uboot* $(1)/
+endef
+
+Package/at91bootstrap/install = $(Package/at91bootstrap/install/default)
+
 define AT91Bootstrap/Init
   BUILD_TARGET:=
   BUILD_SUBTARGET:=
@@ -46,8 +55,7 @@ define Build/AT91Bootstrap/Target
   endef
 
   define Package/at91bootstrap-$(1)/install
-    $(CP) $(PKG_BUILD_DIR)/binaries/*uboot*.bin \
-      $(BIN_DIR)/at91bootstrap-$(1).bin
+    $$(Package/at91bootstrap/install)
   endef
 endef
 



More information about the lede-commits mailing list