mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 08:09:41 +00:00
27 lines
645 B
Plaintext
27 lines
645 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)" \
|
|
STRIP="$(CROSS)strip" \
|
|
--host i386-elf-linux \
|
|
--target x86_64 \
|
|
--prefix="$(INSTALL)" \
|
|
--without-zlib \
|
|
--without-lzma \
|
|
&& $(MAKE) clean
|
|
|
|
kexec_target := \
|
|
install \
|
|
|
|
kexec_output := build/sbin/kexec
|
|
|
|
# if we don't need zlib, don't built it
|
|
#kexec_depends := zlib
|
|
kexec_depends := $(musl_dep)
|