mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
7f13418a9a
Update version, download hash, patch filename. Fixes some IOMMU-related issues on Librem Mini v1/v2, L14 Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
26 lines
607 B
Plaintext
26 lines
607 B
Plaintext
modules-$(CONFIG_KEXEC) += kexec
|
|
|
|
kexec_version := 2.0.22
|
|
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 := 40623d4321be2865ef9ea2cd6ec998d31dcf93d0f74353cbd3aa06d8821e3e41
|
|
|
|
kexec_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host i386-elf-linux \
|
|
--target x86_64 \
|
|
--prefix="/" \
|
|
--without-lzma \
|
|
&& $(MAKE) clean
|
|
|
|
kexec_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
install \
|
|
|
|
kexec_output := build/sbin/kexec
|
|
|
|
kexec_depends := zlib $(musl_dep)
|