ef97e3f730
- update to 2.0.28: * LoongArch: Load vmlinux.efi to the link address * LoongArch: Fix an issue with relocatable vmlinux * m68k: fix getrandom() use with uclibc * lzma: Relax memory limit for lzma decompressor * kexec: ppc64: print help to stdout instead of stderr * kexec/loongarch64: fix 'make dist' file loss issue * crashdump/x86: set the elfcorehdr segment size for hotplug * crashdump/x86: identify elfcorehdr segment for hotplug * crashdump: exclude elfcorehdr segment from digest for hotplug * crashdump: setup general hotplug support * crashdump: introduce the hotplug command line options * kexec: define KEXEC_UPDATE_ELFCOREHDR * kexec: update manpage with explicit mention of clean kexec * zboot: add loongarch kexec_load support * zboot: enable arm64 kexec_load for zboot image - drop 6419b008fde783fd0cc2cc266bd1c9cf35e99a0e.patch, upstream - add fix-building-on-x86_64-with-binutils-2.41.patch: * fix assembling on binutils >= 2.42 - refresh kexec-tools-disable-test.patch OBS-URL: https://build.opensuse.org/request/show/1155728 OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/kexec-tools?expand=0&rev=167
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
|