forked from pool/kexec-tools
d7aaf5659b
* update man and --help * powerpc/kexec_load: add hotplug support * kexec_load: Use new kexec flag for hotplug support * x86-linux-setup.c: Use POSIX basename API * LoongArch: fix load command line segment error * LoongArch: add multi crash kernel segment support * LoongArch: fix kernel image size error * Arm: Fix add_buffer_phys_virt() align issue * Fix incorrect Free Software Foundation address in the license * util_lib/elf_info.c: fix a warning * kexec_file: add kexec_file flag to support debug printing * workflow: update to use checkout@v4 - drop kexec-dont-use-kexec_file_load-on-xen.patch, upstream - drop fix-building-on-x86_64-with-binutils-2.41.patch, upstream - kexec-tools-riscv-hotplug.patch: Fix build for riscv64. OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/kexec-tools?expand=0&rev=169
29 lines
845 B
Diff
29 lines
845 B
Diff
From: Tony Jones <tonyj@suse.de>
|
|
Subject: Disable kexec_test
|
|
|
|
Disable kexec_test. It is not required in released product (matching latest
|
|
Fedora). Also one less file for usr_merge
|
|
|
|
---
|
|
Makefile.in | 7 +++++--
|
|
1 file changed, 5 insertions(+), 2 deletions(-)
|
|
|
|
Index: kexec-tools-2.0.28/Makefile.in
|
|
===================================================================
|
|
--- kexec-tools-2.0.28.orig/Makefile.in
|
|
+++ kexec-tools-2.0.28/Makefile.in
|
|
@@ -181,8 +181,11 @@ TARBALL.gz=$(TARBALL).gz
|
|
SRCS:= $(dist)
|
|
|
|
MAN_PAGES:=$(KEXEC_MANPAGE) $(VMCORE_DMESG_MANPAGE)
|
|
-BINARIES_i386:=$(KEXEC_TEST)
|
|
-BINARIES_x86_64:=$(KEXEC_TEST)
|
|
+# Dont' build kexec_test
|
|
+#BINARIES_i386:=$(KEXEC_TEST)
|
|
+#BINARIES_x86_64:=$(KEXEC_TEST)
|
|
+BINARIES_i386:=
|
|
+BINARIES_x86_64:=
|
|
BINARIES:=$(KEXEC) $(VMCORE_DMESG) $(BINARIES_$(ARCH))
|
|
|
|
UNINSTALL_KDUMP = $(sbindir)/kdump
|