mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 13:07:58 +00:00
ab0476ad2f
The populate-lib program was buggy on some systems and could accidentally introduce unwanted libraries into the initrd. The Makefile now uses the modules' $(module_libraries) variable to select which libraries should be installed into the initrd. Kernel modules are now stripped and installed using a similar system.
22 lines
579 B
Plaintext
22 lines
579 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 \
|
|
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)
|