mirror of
https://github.com/linuxboot/heads.git
synced 2025-01-18 02:39:59 +00:00
5fd9878d28
As part of issue #1, we should build all libraries and programs that we deploy into the Heads initrd. This modifies the module configurations for all of them to install into heads/install so that we can build against them. Add dmsetup, cryptsetup and veritysetup (issue #46). Build gpgv 1.4 as a standalone tool (issue #23). Modify populate-lib to use the install directory by setting LD_LIBRARY_PATH (issue #35).
14 lines
413 B
Plaintext
14 lines
413 B
Plaintext
modules += mbedtls
|
|
|
|
mbedtls_version := 2.3.0
|
|
mbedtls_dir := mbedtls-$(mbedtls_version)
|
|
mbedtls_tar := mbedtls-$(mbedtls_version)-gpl.tgz
|
|
mbedtls_url := https://tls.mbed.org/download/$(mbedtls_tar)
|
|
mbedtls_hash := 21237014f779bde70b2d71399cc1ea53365eb7f10cdd74a13ee6329a1910cb49
|
|
|
|
mbedtls_libraries := \
|
|
library/libmbedcrypto.so.0 \
|
|
|
|
mbedtls_configure :=
|
|
mbedtls_target := SHARED=1 DESTDIR=$(INSTALL) -j 8 install
|