trustfence-tool: modify source name to include target CPU architecture

We now have different tarballs for each CPU architecture we compile for. Also,
add support for the aarch64 tarball.

https://jira.digi.com/browse/DEL-6046

Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2018-07-03 17:54:39 +02:00
parent 13d9d941cc
commit f321da6a2c
1 changed files with 9 additions and 4 deletions

View File

@ -1,12 +1,17 @@
# Copyright (C) 2016, 2017 Digi International. # Copyright (C) 2016-2018 Digi International.
SUMMARY = "Trustfence command line tool" SUMMARY = "Trustfence command line tool"
SECTION = "console/tools" SECTION = "console/tools"
LICENSE = "CLOSED" LICENSE = "CLOSED"
SRC_URI = "${DIGI_PKG_SRC}/${BP}.tar.gz" SRC_URI_arm = "${DIGI_PKG_SRC}/${BP}-${TUNE_ARCH}.tar.gz;name=arm"
SRC_URI[md5sum] = "31385122bed83d420f92efddd8975e99" SRC_URI[arm.md5sum] = "31385122bed83d420f92efddd8975e99"
SRC_URI[sha256sum] = "e5e9157837be8e26141708e06a881ef872dd94aa06451668959845c4d4d19efc" SRC_URI[arm.sha256sum] = "e5e9157837be8e26141708e06a881ef872dd94aa06451668959845c4d4d19efc"
SRC_URI_aarch64 = "${DIGI_PKG_SRC}/${BP}-${TUNE_ARCH}.tar.gz;name=aarch64"
SRC_URI[aarch64.md5sum] = "41116c3d1f5a71f7f6d97571ad52b872"
SRC_URI[aarch64.sha256sum] = "3fe7d39140b1b73d001afd220bf83965116175022f3a9f42695a752c23637e04"
inherit bin_package inherit bin_package