mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: "Thorsten K. Scherer" <t.scherer@eckelmann.de>
To: ptxdist@pengutronix.de
Cc: "Thorsten K. Scherer" <t.scherer@eckelmann.de>
Subject: [ptxdist] [PATCH v2 4/5] ptxdist: add tpm2-tools 3.1.3
Date: Mon, 17 Dec 2018 11:50:00 +0100	[thread overview]
Message-ID: <227dd8e9e082bf14ad124be7d740fd6154eea4b0.1545042465.git.t.scherer@eckelmann.de> (raw)
In-Reply-To: <cover.1545042465.git.t.scherer@eckelmann.de>

Signed-off-by: Thorsten K. Scherer <t.scherer@eckelmann.de>
---
 rules/tpm2-tools.in   |  92 ++++++++++++++++++++++++++++
 rules/tpm2-tools.make | 137 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 229 insertions(+)
 create mode 100644 rules/tpm2-tools.in
 create mode 100644 rules/tpm2-tools.make

diff --git a/rules/tpm2-tools.in b/rules/tpm2-tools.in
new file mode 100644
index 000000000..41cd9fce1
--- /dev/null
+++ b/rules/tpm2-tools.in
@@ -0,0 +1,92 @@
+## SECTION=tpm
+menuconfig TPM2_TOOLS
+	tristate
+	prompt "tpm2-tools                    "
+	select TPM2_TSS
+	select OPENSSL
+	select LIBCURL
+	help
+	  This package contains a set of tools to use with TPM 2.0
+	  chips, for common tasks and features provided by the
+	  hardware; such as for doing basic key management,
+	  attestation, encryption and signing.
+
+	  See https://github.com/tpm2-software/tpm2-tools for details
+
+if TPM2_TOOLS
+
+config TPM2_TOOLS_START_UP
+	bool "Start-up"
+	help
+	  tpm2_startup
+
+config TPM2_TOOLS_OBJECT
+	bool "Object"
+	help
+	  tpm2_create, tpm2_createprimary, tpm2_load, tpm2_loadexternal,
+	  tpm2_readpublic, tpm2_activatecredential, tpm2_makecredential,
+	  tpm2_unseal
+
+config TPM2_TOOLS_ASYMMETRIC_PRIMITIVES
+	bool "Asymmetric primitives"
+	help
+	  tpm2_rsaencrypt, tpm2_rsadecrypt
+
+config TPM2_TOOLS_SYMMETRIC_PRIMITIVES
+	bool "Symmetric primitives"
+	help
+	  tpm2_encryptdecrypt, tpm2_hash, tpm2_hmac
+
+config TPM2_TOOLS_RANDOM_NUMBER_GENERATOR
+	bool "Random number generator"
+	help
+	  tpm2_getrandom
+
+config TPM2_TOOLS_ATTESTATION
+	bool "Attestation"
+	help
+	  tpm2_certify, tpm2_quote
+
+config TPM2_TOOLS_SIGNING_AND_SIGNATURE_VERIFICATION
+	bool "Signing and signature verification"
+	help
+	  tpm2_sign, tpm2_verifysignature
+
+config TPM2_TOOLS_INTEGRITY
+	bool "Integrity"
+	help
+	  tpm2_pcrextend, tpm2_pcrevent, tpm2_pcrlist
+
+config TPM2_TOOLS_ENHANCED_AUTHORISATION
+	bool "Enhanced authorisation (EA)"
+	help
+	  tpm2_createpolicy
+
+config TPM2_TOOLS_DICTIONARY_ATTACK
+	bool "Dictionary attack"
+	help
+	  tpm2_dictionarylockout
+
+config TPM2_TOOLS_CONTEXT_MANAGEMENT
+	bool "Context management"
+	help
+	  tpm2_evictcontrol
+
+config TPM2_TOOLS_CAPABILITY_COMMANDS
+	bool "Capability commands"
+	help
+	  tpm2_getcap
+
+config TPM2_TOOLS_NON_VOLATILE_STORAGE
+	bool "Non-volatile storage"
+	help
+	  tpm2_nvdefine, tpm2_nvlist, tpm2_nvread, tpm2_nvreadlock,
+	  tpm2_nvrelease, tpm2_nvwrite
+
+config TPM2_TOOLS_MISC
+	bool "Miscellaneous"
+	help
+	  tpm2_send, tpm2_getmanufec, tpm2_getpubak, tpm2_getpubek,
+	  tpm2_listpersistent, tpm2_rc_decode, tpm2_takeownership
+
+endif
diff --git a/rules/tpm2-tools.make b/rules/tpm2-tools.make
new file mode 100644
index 000000000..fc6acaec3
--- /dev/null
+++ b/rules/tpm2-tools.make
@@ -0,0 +1,137 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Marc Kleine-Budde <m...@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_TPM2_TOOLS) += tpm2-tools
+
+#
+# Paths and names
+#
+TPM2_TOOLS_VERSION     := 3.1.3
+TPM2_TOOLS_MD5         := 4a43a4716aec660120f377187a653a5f
+TPM2_TOOLS             := tpm2-tools-$(TPM2_TOOLS_VERSION)
+TPM2_TOOLS_SUFFIX      := tar.gz
+TPM2_TOOLS_URL         := https://github.com/01org/tpm2-tools.git;tag=$(TPM2_TOOLS_VERSION)
+TPM2_TOOLS_SOURCE      := $(SRCDIR)/$(TPM2_TOOLS).$(TPM2_TOOLS_SUFFIX)
+TPM2_TOOLS_DIR         := $(BUILDDIR)/$(TPM2_TOOLS)
+TPM2_TOOLS_LICENSE     := BSD-3-Clause
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+TPM2_TOOLS_CONF_TOOL   := autoconf
+TPM2_TOOLS_CONF_OPT    := $(CROSS_AUTOCONF_USR)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/tpm2-tools.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, tpm2-tools)
+	@$(call install_fixup, tpm2-tools,PRIORITY,optional)
+	@$(call install_fixup, tpm2-tools,SECTION,base)
+	@$(call install_fixup, tpm2-tools,AUTHOR,"Marc Kleine-Budde <m...@pengutronix.de>")
+	@$(call install_fixup, tpm2-tools,DESCRIPTION,missing)
+
+
+ifdef PTXCONF_TPM2_TOOLS_START_UP
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_startup)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_OBJECT
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_create)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_createprimary)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_load)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_loadexternal)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_readpublic)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_activatecredential)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_makecredential)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_unseal)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_ASYMMETRIC_PRIMITIVES
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_rsaencrypt)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_rsadecrypt)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_SYMMETRIC_PRIMITIVES
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_encryptdecrypt)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_hash)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_hmac)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_RANDOM_NUMBER_GENERATOR
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_getrandom)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_ATTESTATION
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_certify)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_quote)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_SIGNING_AND_SIGNATURE_VERIFICATION
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_sign)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_verifysignature)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_INTEGRITY
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_pcrextend)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_pcrevent)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_pcrlist)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_ENHANCED_AUTHORISATION
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_createpolicy)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_DICTIONARY_ATTACK
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_dictionarylockout)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_CONTEXT_MANAGEMENT
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_evictcontrol)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_CAPABILITY_COMMANDS
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_getcap)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_NON_VOLATILE_STORAGE
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_nvdefine)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_nvlist)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_nvread)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_nvreadlock)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_nvrelease)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_nvwrite)
+endif
+
+ifdef PTXCONF_TPM2_TOOLS_MISC
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_send)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_getmanufec)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_getpubak)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_getpubek)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_listpersistent)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_rc_decode)
+	$(call install_copy, tpm2-tools, tss, tss, 0755, -, /usr/bin/tpm2_takeownership)
+endif
+
+	@$(call install_finish, tpm2-tools)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.19.1


-- 
Eckelmann AG
Vorstand: Dipl.-Ing. Peter Frankenbach (Sprecher) Dipl.-Wi.-Ing. Philipp Eckelmann
Dr.-Ing. Marco Münchhof Dr.-Ing. Frank Uhlemann
Vorsitzender des Aufsichtsrats: Hubertus G. Krossa
Stv. Vorsitzender des Aufsichtsrats: Dr.-Ing. Gerd Eckelmann
Sitz der Gesellschaft: Berliner Str. 161, 65205 Wiesbaden, Amtsgericht Wiesbaden HRB 12636
http://www.eckelmann.de

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

  parent reply	other threads:[~2018-12-17 10:51 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-17 10:49 [ptxdist] [PATCH v2 0/5] add packages for tpm Thorsten K. Scherer
2018-12-17 10:49 ` [ptxdist] [PATCH v2 1/5] ptxdist: add host autotools macro archive for tpm2 Thorsten K. Scherer
     [not found]   ` <20181230033939.3mawbfpfgv5ab5vb@pengutronix.de>
     [not found]     ` <20190315150902.GA6173@ws067.eckelmann.group>
2019-03-18  8:51       ` Roland Hieber
2018-12-17 10:49 ` [ptxdist] [PATCH v2 2/5] ptxdist: add tpm2-abrmd 2.0.3 Thorsten K. Scherer
2018-12-17 10:49 ` [ptxdist] [PATCH v2 3/5] ptxdist: add tpm2-tss version 2.1.0 Thorsten K. Scherer
2018-12-17 10:50 ` Thorsten K. Scherer [this message]
2018-12-17 10:50 ` [ptxdist] [PATCH v2 5/5] ptxdist: add tpm2-tss-engine c9061a7 Thorsten K. Scherer
2018-12-20 14:56 ` [ptxdist] [PATCH v2 0/5] add packages for tpm Scherer, Thorsten

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=227dd8e9e082bf14ad124be7d740fd6154eea4b0.1545042465.git.t.scherer@eckelmann.de \
    --to=t.scherer@eckelmann.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox