mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-21 05:53:14 +00:00
58ff95818e
Pass in the --host argument to all of the various programs that need to treat the configure scripts as cross compilation targets. This removes all dependencies on the host libc (issue #7) and adds some tools to the initrd (cryptsetup #46).
29 lines
757 B
Plaintext
29 lines
757 B
Plaintext
modules += cryptsetup
|
|
|
|
cryptsetup_depends := libuuid popt lvm2 $(musl_dep)
|
|
|
|
cryptsetup_version := 1.7.3
|
|
cryptsetup_dir := cryptsetup-$(cryptsetup_version)
|
|
cryptsetup_tar := cryptsetup-$(cryptsetup_version).tar.xz
|
|
cryptsetup_url := https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-$(cryptsetup_version).tar.xz
|
|
cryptsetup_hash := af2b04e8475cf40b8d9ffd97a1acfa73aa787c890430afd89804fb544d6adc02
|
|
|
|
cryptsetup_configure := ./configure \
|
|
CC="$(heads_cc)" \
|
|
CFLAGS="-I$(INSTALL)/include" \
|
|
LDFLAGS="-L$(INSTALL)/lib" \
|
|
--host i386-elf-linux \
|
|
--prefix "$(INSTALL)" \
|
|
--disable-gcrypt-pbkdf2 \
|
|
--with-crypto_backend=kernel \
|
|
|
|
cryptsetup_target := \
|
|
-j 8 \
|
|
install
|
|
|
|
cryptsetup_output := \
|
|
src/.libs/cryptsetup \
|
|
src/.libs/veritysetup \
|
|
|
|
|