All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text
@ 2019-03-08 13:27 Romain Naour
  2019-03-08 13:27 ` [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys " Romain Naour
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Romain Naour @ 2019-03-08 13:27 UTC (permalink / raw)
  To: buildroot

Since tpm2-tss version 2.0.0, tpm2 libraries have been renamed.

libsapi renamed to libtss2-sys
https://github.com/tpm2-software/tpm2-tss/commit/5f0ab55d4e46077cb8f0c53a76c5ebd15a088d26

libtcti-device renamed to libtss2-tcti-device
libtcti-socket renamed to libtss2-tcti-mssim
https://github.com/tpm2-software/tpm2-tss/commit/b8584accbd96e38eaea250e31ed3ea580d2bca27

Signed-off-by: Romain Naour <romain.naour@smile.fr>
Cc: Carlos Santos <casantos@datacom.com.br>
---
 package/tpm2-tss/Config.in | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/package/tpm2-tss/Config.in b/package/tpm2-tss/Config.in
index 2fb5b0f213..2d619750f8 100644
--- a/package/tpm2-tss/Config.in
+++ b/package/tpm2-tss/Config.in
@@ -17,7 +17,7 @@ config BR2_PACKAGE_TPM2_TSS
 	    variants may be useful for integration into event-driven
 	    programming environments. Both the synchronous and
 	    asynchronous API are exposed through a single library:
-	    libsapi.
+	    libtss2-sys.
 
 	  * TPM Command Transmission Interface (TCTI) that is described
 	    in the same specification. This API provides a standard
@@ -26,10 +26,10 @@ config BR2_PACKAGE_TPM2_TSS
 	    implementing the TCTI API will be implemented as a way to
 	    abstract various platform specific IPC mechanisms. Currently
 	    this repository provides two TCTI implementations:
-	    libtcti-device and libtcti-socket.  The prior should be used
-	    for direct access to the TPM through the Linux kernel
-	    driver. The later implements the protocol exposed by the
-	    Microsoft software TPM2 simulator.
+	    libtss2-tcti-device and libtss2-tcti-mssim. The prior should
+	    be used for direct access to the TPM through the Linux
+	    kernel driver. The later implements the protocol exposed by
+	    the Microsoft software TPM2 simulator.
 
 	  https://github.com/tpm2-software/tpm2-tss
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys in the help text
  2019-03-08 13:27 [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text Romain Naour
@ 2019-03-08 13:27 ` Romain Naour
  2019-03-25 16:31   ` Peter Korsgaard
  2019-03-09 20:44 ` [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries " Thomas Petazzoni
  2019-03-25 16:31 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Romain Naour @ 2019-03-08 13:27 UTC (permalink / raw)
  To: buildroot

libsapi was renamed to libtss2-sys in tpm2-tss library:
https://github.com/tpm2-software/tpm2-tss/commit/5f0ab55d4e46077cb8f0c53a76c5ebd15a088d26

Signed-off-by: Romain Naour <romain.naour@smile.fr>
Cc: Carlos Santos <casantos@datacom.com.br>
---
 package/tpm2-abrmd/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/tpm2-abrmd/Config.in b/package/tpm2-abrmd/Config.in
index d18f736182..db0ea66112 100644
--- a/package/tpm2-abrmd/Config.in
+++ b/package/tpm2-abrmd/Config.in
@@ -16,8 +16,8 @@ config BR2_PACKAGE_TPM2_ABRMD
 
 	  The package also provides a client library for interacting
 	  with the daemon via TPM Command Transmission Interface (TCTI).
-	  It is intended for use with the SAPI library (libsapi) like
-	  any other TCTI.
+	  It is intended for use with the SAPI library (libtss2-sys)
+	  like any other TCTI.
 
 	  https://github.com/tpm2-software/tpm2-abrmd
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text
  2019-03-08 13:27 [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text Romain Naour
  2019-03-08 13:27 ` [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys " Romain Naour
@ 2019-03-09 20:44 ` Thomas Petazzoni
  2019-03-25 16:31 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2019-03-09 20:44 UTC (permalink / raw)
  To: buildroot

On Fri,  8 Mar 2019 14:27:09 +0100
Romain Naour <romain.naour@smile.fr> wrote:

> Since tpm2-tss version 2.0.0, tpm2 libraries have been renamed.
> 
> libsapi renamed to libtss2-sys
> https://github.com/tpm2-software/tpm2-tss/commit/5f0ab55d4e46077cb8f0c53a76c5ebd15a088d26
> 
> libtcti-device renamed to libtss2-tcti-device
> libtcti-socket renamed to libtss2-tcti-mssim
> https://github.com/tpm2-software/tpm2-tss/commit/b8584accbd96e38eaea250e31ed3ea580d2bca27
> 
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
> Cc: Carlos Santos <casantos@datacom.com.br>
> ---
>  package/tpm2-tss/Config.in | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

Both applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text
  2019-03-08 13:27 [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text Romain Naour
  2019-03-08 13:27 ` [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys " Romain Naour
  2019-03-09 20:44 ` [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries " Thomas Petazzoni
@ 2019-03-25 16:31 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2019-03-25 16:31 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:

 > Since tpm2-tss version 2.0.0, tpm2 libraries have been renamed.
 > libsapi renamed to libtss2-sys
 > https://github.com/tpm2-software/tpm2-tss/commit/5f0ab55d4e46077cb8f0c53a76c5ebd15a088d26

 > libtcti-device renamed to libtss2-tcti-device
 > libtcti-socket renamed to libtss2-tcti-mssim
 > https://github.com/tpm2-software/tpm2-tss/commit/b8584accbd96e38eaea250e31ed3ea580d2bca27

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>
 > Cc: Carlos Santos <casantos@datacom.com.br>

Committed to 2019.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys in the help text
  2019-03-08 13:27 ` [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys " Romain Naour
@ 2019-03-25 16:31   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2019-03-25 16:31 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:

 > libsapi was renamed to libtss2-sys in tpm2-tss library:
 > https://github.com/tpm2-software/tpm2-tss/commit/5f0ab55d4e46077cb8f0c53a76c5ebd15a088d26

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>
 > Cc: Carlos Santos <casantos@datacom.com.br>

Committed to 2019.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-25 16:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-08 13:27 [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries in the help text Romain Naour
2019-03-08 13:27 ` [Buildroot] [PATCH 2/2] package/tpm2-abrmd: rename libsapi to libtss2-sys " Romain Naour
2019-03-25 16:31   ` Peter Korsgaard
2019-03-09 20:44 ` [Buildroot] [PATCH 1/2] package/tpm2-tss: rename tpm2-tss libraries " Thomas Petazzoni
2019-03-25 16:31 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.