소스 검색

swupdate: add prefix to tools binaries

Add the "swupdate-" prefix to tools binaries to avoid conficts.

Signed-off-by: Diego Rondini <diego.rondini@kynetics.com>
Diego Rondini 8 년 전
부모
커밋
79c16c1e43
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      recipes-support/swupdate/swupdate_git.bb

+ 4 - 4
recipes-support/swupdate/swupdate_git.bb

@@ -13,9 +13,9 @@ do_compile() {
 
 do_install_append () {
 
-  install -m 0755 tools/client_unstripped ${D}${bindir}/client
-  install -m 0755 tools/progress_unstripped ${D}${bindir}/progress
-  install -m 0755 tools/hawkbitcfg_unstripped ${D}${bindir}/hawkbitcfg
-  install -m 0755 tools/sendtohawkbit_unstripped ${D}${bindir}/sendtohawkbit
+  install -m 0755 tools/client_unstripped ${D}${bindir}/swupdate-client
+  install -m 0755 tools/progress_unstripped ${D}${bindir}/swupdate-progress
+  install -m 0755 tools/hawkbitcfg_unstripped ${D}${bindir}/swupdate-hawkbitcfg
+  install -m 0755 tools/sendtohawkbit_unstripped ${D}${bindir}/swupdate-sendtohawkbit
 
 }