mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 05:28:08 +00:00
c40748aa25
This addresses multiple issues: * Issue #63: initrd is build fresh each time, so tracked files do not matter. * Issue #144: build time configuration * Issue #123: allows us to customize the startup experience * Issue #122: manual start-xen will go away * Issue #25: tpmtotp PCRs are updated after reading the secret * Issue #16: insmod now meaures modules
21 lines
499 B
Plaintext
21 lines
499 B
Plaintext
modules-$(CONFIG_MBEDTLS) += mbedtls
|
|
|
|
mbedtls_version := 2.4.2
|
|
mbedtls_dir := mbedtls-$(mbedtls_version)
|
|
mbedtls_tar := mbedtls-$(mbedtls_version)-gpl.tgz
|
|
mbedtls_url := https://tls.mbed.org/download/$(mbedtls_tar)
|
|
mbedtls_hash := d01f2d5586a52055329d194d909103f445bd2d0b6b2b5f1c830fbf828ac6299f
|
|
|
|
mbedtls_libraries := library/libmbedcrypto.so.0
|
|
|
|
mbedtls_configure :=
|
|
|
|
mbedtls_target := \
|
|
SHARED=1 \
|
|
DESTDIR=$(INSTALL) \
|
|
CC="$(heads_cc)" \
|
|
$(MAKE_JOBS) \
|
|
install
|
|
|
|
mbedtls_depends := $(musl_dep)
|