mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +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
22 lines
597 B
Plaintext
22 lines
597 B
Plaintext
modules-$(CONFIG_LIBUUID) += 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 \
|
|
CC="$(heads_cc)" \
|
|
--prefix "" \
|
|
--host i386-elf-linux \
|
|
|
|
libuuid_target := $(MAKE_JOBS) && \
|
|
$(MAKE) \
|
|
-C "$(build)/$(libuuid_dir)" \
|
|
prefix="$(INSTALL)" \
|
|
install
|
|
|
|
libuuid_libraries := .libs/libuuid.so.1
|
|
libuuid_depends := $(musl_dep)
|