mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +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).
15 lines
421 B
Plaintext
15 lines
421 B
Plaintext
modules += libuuid
|
|
|
|
libuuid_version := 1.0.3
|
|
libuuid_dir := libuuid-$(libuuid_version)
|
|
libuuid_tar := libuuid-$(libuuid_version).tar.gz
|
|
libuuid_url := http://downloads.sourceforge.net/project/libuuid/$(libuuid_tar)
|
|
libuuid_hash := 46af3275291091009ad7f1b899de3d0cea0252737550e7919d17237997db5644
|
|
|
|
libuuid_configure := ./configure \
|
|
--prefix $(INSTALL) \
|
|
|
|
libuuid_target := install
|
|
|
|
libuuid_libraries := .libs/libuuid.so
|