mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
4e375ad7ca
The actual use of curl was already removed, update tpm2-tools patch to also remove the check for curl. Remove the curl module and CONFIG_CURL. Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
diff --git a/Makefile.am b/Makefile.am
|
|
index 7132215..32e2193 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -93,7 +93,7 @@ tss2_tools = \
|
|
|
|
# Bundle all the tools into a single program similar to busybox
|
|
bin_PROGRAMS += tools/tpm2
|
|
-tools_tpm2_LDADD = $(LDADD) $(CURL_LIBS)
|
|
+tools_tpm2_LDADD = $(LDADD)
|
|
tools_tpm2_CFLAGS = $(AM_CFLAGS) -DTPM2_TOOLS_MAX="$(words $(tpm2_tools))"
|
|
tools_tpm2_SOURCES = \
|
|
tools/tpm2_tool.c \
|
|
@@ -127,7 +127,6 @@ tpm2_tools = \
|
|
tools/tpm2_encryptdecrypt.c \
|
|
tools/tpm2_evictcontrol.c \
|
|
tools/tpm2_flushcontext.c \
|
|
- tools/tpm2_getekcertificate.c \
|
|
tools/tpm2_getrandom.c \
|
|
tools/tpm2_gettime.c \
|
|
tools/tpm2_hash.c \
|
|
diff --git a/configure.ac b/configure.ac
|
|
index f1c1711..7279baa 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -59,7 +59,6 @@ PKG_CHECK_MODULES([TSS2_MU], [tss2-mu])
|
|
PKG_CHECK_MODULES([TSS2_RC], [tss2-rc])
|
|
PKG_CHECK_MODULES([TSS2_SYS], [tss2-sys])
|
|
PKG_CHECK_MODULES([CRYPTO], [libcrypto >= 1.1.0])
|
|
-PKG_CHECK_MODULES([CURL], [libcurl])
|
|
|
|
# pretty print of devicepath if efivar library is present
|
|
PKG_CHECK_MODULES([EFIVAR], [efivar],,[true])
|