mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
30 lines
960 B
Makefile
30 lines
960 B
Makefile
|
# TPM2 tools program
|
||
|
modules-$(CONFIG_TPM2_TOOLS) += tpm2-tools
|
||
|
|
||
|
tpm2-tools_version := 5.2
|
||
|
#tpm2-tools_version := 78a7681
|
||
|
#tpm2-tools_repo := https://github.com/tpm2-software/tpm2-tools.git
|
||
|
|
||
|
tpm2-tools_dir := tpm2-tools-$(tpm2-tools_version)
|
||
|
tpm2-tools_tar := tpm2-tools-$(tpm2-tools_version).tar.gz
|
||
|
tpm2-tools_url := https://github.com/tpm2-software/tpm2-tools/releases/download/$(tpm2-tools_version)/$(tpm2-tools_tar)
|
||
|
tpm2-tools_hash := c0b402f6a7b3456e8eb2445211e2d41c46c7e769e05fe4d8909ff64119f7a630
|
||
|
|
||
|
# we have ESYS 3.0, but it doesn't figure that out on its own
|
||
|
tpm2-tools_configure := ./bootstrap && ./configure \
|
||
|
$(CROSS_TOOLS) \
|
||
|
--host $(MUSL_ARCH)-elf-linux \
|
||
|
--prefix "/" \
|
||
|
--disable-fapi \
|
||
|
TSS2_ESYS_3_0_CFLAGS="-I$(INSTALL)/include" \
|
||
|
TSS2_ESYS_3_0_LIBS="-ltss2-esys" \
|
||
|
|
||
|
tpm2-tools_target := $(MAKE_JOBS) \
|
||
|
DESTDIR="$(INSTALL)" \
|
||
|
$(CROSS_TOOLS) \
|
||
|
install \
|
||
|
|
||
|
tpm2-tools_output := tools/tpm2
|
||
|
|
||
|
tpm2-tools_depends := tpm2-tss curl $(musl_dep)
|