mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH v2] tpm2-tss: Version bump. 3.1.0 -> 3.2.0
@ 2022-03-12 19:39 Christian Melki
  2022-03-14 10:14 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2022-03-12 19:39 UTC (permalink / raw)
  To: ptxdist

Mostly bugfixes.
Notable changes: openssl < 1.1.0 dropped, openssl 3.0.0 added.
https://github.com/tpm2-software/tpm2-tss/blob/master/CHANGELOG.md

* Add group/user variants as pre-cached autoconf variables.
This way configure configure won't get stuck on missing binaries but
rather warn on install failure and continue.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/tpm2-tss.make | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/rules/tpm2-tss.make b/rules/tpm2-tss.make
index 6e68441f8..7e0b4ff52 100644
--- a/rules/tpm2-tss.make
+++ b/rules/tpm2-tss.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_TPM2_TSS) += tpm2-tss
 #
 # Paths and names
 #
-TPM2_TSS_VERSION	:= 3.1.0
-TPM2_TSS_MD5		:= 4d04cf52fff4ee061bb3f7b4f4ea03b7
+TPM2_TSS_VERSION	:= 3.2.0
+TPM2_TSS_MD5		:= 0d60d0df3fd0daae66881a3022281323
 TPM2_TSS		:= tpm2-tss-$(TPM2_TSS_VERSION)
 TPM2_TSS_SUFFIX		:= tar.gz
 TPM2_TSS_URL		:= https://github.com/tpm2-software/tpm2-tss/releases/download/$(TPM2_TSS_VERSION)/$(TPM2_TSS).$(TPM2_TSS_SUFFIX)
@@ -34,8 +34,10 @@ TPM2_TSS_LICENSE_FILES	:= file://LICENSE;md5=500b2e742befc3da00684d8a1d5fd9da
 TPM2_TSS_CONF_TOOL	:= autoconf
 TPM2_TSS_CONF_ENV := \
 	$(CROSS_ENV) \
-	ac_cv_prog_result_groupadd=yes \
-	ac_cv_prog_result_useradd=yes
+	ac_cv_prog_groupadd=yes \
+	ac_cv_prog_useradd=yes \
+	ac_cv_prog_addgroup=yes \
+	ac_cv_prog_adduser=yes
 
 TPM2_TSS_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
-- 
2.32.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


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

* Re: [ptxdist] [APPLIED] tpm2-tss: Version bump. 3.1.0 -> 3.2.0
  2022-03-12 19:39 [ptxdist] [PATCH v2] tpm2-tss: Version bump. 3.1.0 -> 3.2.0 Christian Melki
@ 2022-03-14 10:14 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-03-14 10:14 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 7af0ef3ad923627495583e7a4ef60c9f1be01035.

Michael

[sent from post-receive hook]

On Mon, 14 Mar 2022 11:14:43 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Mostly bugfixes.
> Notable changes: openssl < 1.1.0 dropped, openssl 3.0.0 added.
> https://github.com/tpm2-software/tpm2-tss/blob/master/CHANGELOG.md
> 
> * Add group/user variants as pre-cached autoconf variables.
> This way configure configure won't get stuck on missing binaries but
> rather warn on install failure and continue.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20220312193935.719037-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/tpm2-tss.make b/rules/tpm2-tss.make
> index 6e68441f855c..7e0b4ff52609 100644
> --- a/rules/tpm2-tss.make
> +++ b/rules/tpm2-tss.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_TPM2_TSS) += tpm2-tss
>  #
>  # Paths and names
>  #
> -TPM2_TSS_VERSION	:= 3.1.0
> -TPM2_TSS_MD5		:= 4d04cf52fff4ee061bb3f7b4f4ea03b7
> +TPM2_TSS_VERSION	:= 3.2.0
> +TPM2_TSS_MD5		:= 0d60d0df3fd0daae66881a3022281323
>  TPM2_TSS		:= tpm2-tss-$(TPM2_TSS_VERSION)
>  TPM2_TSS_SUFFIX		:= tar.gz
>  TPM2_TSS_URL		:= https://github.com/tpm2-software/tpm2-tss/releases/download/$(TPM2_TSS_VERSION)/$(TPM2_TSS).$(TPM2_TSS_SUFFIX)
> @@ -34,8 +34,10 @@ TPM2_TSS_LICENSE_FILES	:= file://LICENSE;md5=500b2e742befc3da00684d8a1d5fd9da
>  TPM2_TSS_CONF_TOOL	:= autoconf
>  TPM2_TSS_CONF_ENV := \
>  	$(CROSS_ENV) \
> -	ac_cv_prog_result_groupadd=yes \
> -	ac_cv_prog_result_useradd=yes
> +	ac_cv_prog_groupadd=yes \
> +	ac_cv_prog_useradd=yes \
> +	ac_cv_prog_addgroup=yes \
> +	ac_cv_prog_adduser=yes
>  
>  TPM2_TSS_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


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

end of thread, other threads:[~2022-03-14 10:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-12 19:39 [ptxdist] [PATCH v2] tpm2-tss: Version bump. 3.1.0 -> 3.2.0 Christian Melki
2022-03-14 10:14 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox