mirror of
https://github.com/linuxboot/heads.git
synced 2025-01-18 18:57:04 +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).
28 lines
674 B
Plaintext
28 lines
674 B
Plaintext
modules += kexec
|
|
|
|
kexec_version := 2.0.12
|
|
kexec_dir := kexec-tools-$(kexec_version)
|
|
kexec_tar := kexec-tools-$(kexec_version).tar.gz
|
|
kexec_url := https://kernel.org/pub/linux/utils/kernel/kexec/$(kexec_tar)
|
|
kexec_hash := cc7b60dad0da202004048a6179d8a53606943062dd627a2edba45a8ea3a85135
|
|
|
|
kexec_configure := ./configure \
|
|
CC="$(heads_cc)" \
|
|
CFLAGS="-I$(INSTALL)/include" \
|
|
LDFLAGS="-L$(INSTALL)/lib" \
|
|
--host i386-elf-linux \
|
|
--prefix="$(INSTALL)" \
|
|
--without-zlib \
|
|
--without-lzma \
|
|
|
|
kexec_target := \
|
|
CC="$(heads_cc)" \
|
|
-j 8 \
|
|
install \
|
|
|
|
kexec_output := build/sbin/kexec
|
|
|
|
# if we don't need zlib, don't built it
|
|
#kexec_depends := zlib
|
|
kexec_depends := $(musl_dep)
|