1SUMMARY = "IBM's Software TPM 2.0" 2DESCRIPTION = "The software TPM 2.0 is targeted toward application development, \ 3education, and virtualization. \ 4\ 5The intent is that an application can be developed using the software TPM. \ 6The application should then run using a hardware TPM without changes. \ 7Advantages of this approach: \ 8* In contrast to a hardware TPM, it runs on many platforms and it's generally faster. \ 9* Application software errors are easily reversed by simply removing the TPM state and starting over. \ 10* Difficult crypto errors are quickly debugged by looking inside the TPM." 11HOMEPAGE = "http://ibmswtpm.sourceforge.net/ibmswtpm2.html" 12LICENSE = "BSD-2-Clause" 13SECTION = "securty/tpm" 14LIC_FILES_CHKSUM = "file://../LICENSE;md5=1e023f61454ac828b4aa1bc4293f7d5f" 15LIC_FILES_CHKSUM += "file://LICENSE;md5=c75e465155c42c14154bf6a2acb7347b" 16 17DEPENDS = "openssl" 18 19SRC_URI = "git://git.code.sf.net/p/ibmswtpm2/tpm2;protocol=https;branch=master \ 20 file://tune-makefile.patch \ 21 " 22SRCREV = "c37c74438429e1d5fe465232e7bf894b239a2cd4" 23 24UPSTREAM_CHECK_GITTAGREGEX = "rev(?P<pver>\d+(\-\d+)+)" 25 26S = "${WORKDIR}/git/src" 27 28CFLAGS += "-Wno-error=maybe-uninitialized" 29 30do_compile () { 31 make CC='${CC}' 32} 33 34do_install () { 35 install -d ${D}/${bindir} 36 install -m 0755 tpm_server ${D}/${bindir} 37} 38