summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster@mvista.com>2017-03-27 14:37:22 -0700
committerArmin Kuster <akuster808@gmail.com>2017-04-06 10:39:42 -0700
commit794d8e89ac7016b1de5d5bb0e213c9d2d032e13f (patch)
treea6e209f6b9b671e8b5bbca8ef44010a4b4e837ef
parent78af65abb4edddd4f3c5de94833cf4b8b140eb5c (diff)
downloadmeta-security-794d8e89ac7016b1de5d5bb0e213c9d2d032e13f.tar.gz
tpm2.0-tss: update to latest
[v2]: include new hash LICENSE file changes do to removal of TCG minor changes do to configure and makefile updates Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--recipes-tpm/tpm2.0-tss/tpm2.0-tss_git.bb19
1 files changed, 13 insertions, 6 deletions
diff --git a/recipes-tpm/tpm2.0-tss/tpm2.0-tss_git.bb b/recipes-tpm/tpm2.0-tss/tpm2.0-tss_git.bb
index ca82562..1e57342 100644
--- a/recipes-tpm/tpm2.0-tss/tpm2.0-tss_git.bb
+++ b/recipes-tpm/tpm2.0-tss/tpm2.0-tss_git.bb
@@ -1,14 +1,15 @@
1SUMMARY = "Software stack for TPM2." 1SUMMARY = "Software stack for TPM2."
2DESCRIPTION = "tpm2.0-tss like woah." 2DESCRIPTION = "tpm2.0-tss like woah."
3LICENSE = "BSD-2-Clause" 3LICENSE = "BSD-2-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=17067aa50a585593d421b16cffd805a9" 4LIC_FILES_CHKSUM = "file://LICENSE;md5=500b2e742befc3da00684d8a1d5fd9da"
5SECTION = "tpm" 5SECTION = "tpm"
6 6
7SRCREV = "8e25d0cbb287d30c93b2b77e99bc761dc67e31a9" 7DEPENDS = "autoconf-archive pkgconfig"
8
9SRCREV = "d1bd1fe175d233c7c5adbe1b9f3d256c41721001"
8SRC_URI = " \ 10SRC_URI = " \
9 git://github.com/01org/TPM2.0-TSS.git;protocol=git;branch=master;name=TPM2.0-TSS;destsuffix=TPM2.0-TSS \ 11 git://github.com/01org/TPM2.0-TSS.git;protocol=git;branch=master;name=TPM2.0-TSS;destsuffix=TPM2.0-TSS \
10 file://ax_pthread.m4 \ 12 file://ax_pthread.m4"
11 file://fix_musl_select_include.patch "
12 13
13inherit autotools pkgconfig systemd 14inherit autotools pkgconfig systemd
14 15
@@ -20,7 +21,7 @@ do_configure_prepend () {
20 # execute the bootstrap script 21 # execute the bootstrap script
21 currentdir=$(pwd) 22 currentdir=$(pwd)
22 cd ${S} 23 cd ${S}
23 ./bootstrap --force 24 ACLOCAL="aclocal --system-acdir=${STAGING_DATADIR}/aclocal" ./bootstrap
24 cd $currentdir 25 cd $currentdir
25} 26}
26 27
@@ -59,16 +60,22 @@ PACKAGES = " \
59 resourcemgr \ 60 resourcemgr \
60" 61"
61 62
62FILES_libtss2 = "${libdir}/libsapi.so.0.0.0" 63FILES_libtss2 = " \
64 ${libdir}/libsapi.so.0.0.0 \
65 ${libdir}/libmarshal.so.0.0.0 \
66"
63FILES_libtss2-dev = " \ 67FILES_libtss2-dev = " \
64 ${includedir}/sapi \ 68 ${includedir}/sapi \
65 ${includedir}/tcti/common.h \ 69 ${includedir}/tcti/common.h \
66 ${libdir}/libsapi.so* \ 70 ${libdir}/libsapi.so* \
71 ${libdir}/libmarshal.so* \
67 ${libdir}/pkgconfig/sapi.pc \ 72 ${libdir}/pkgconfig/sapi.pc \
68" 73"
69FILES_libtss2-staticdev = " \ 74FILES_libtss2-staticdev = " \
70 ${libdir}/libsapi.a \ 75 ${libdir}/libsapi.a \
71 ${libdir}/libsapi.la \ 76 ${libdir}/libsapi.la \
77 ${libdir}/libmarshal.a \
78 ${libdir}/libmarshal.la \
72" 79"
73FILES_libtctidevice = "${libdir}/libtcti-device.so.0.0.0" 80FILES_libtctidevice = "${libdir}/libtcti-device.so.0.0.0"
74FILES_libtctidevice-dev = " \ 81FILES_libtctidevice-dev = " \