fc54b30a87
- Update to 1.7.1: * support for kernel up to 5.17 * sadump: remove variable length array * print error when reading with unsupported compression - Drop upstreamed makedumpfile-sadump-kaslr-fix-kaslr_offset-calculation.patch OBS-URL: https://build.opensuse.org/request/show/971036 OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/makedumpfile?expand=0&rev=164
27 lines
671 B
Diff
27 lines
671 B
Diff
From: Petr Tesarik <ptesarik@suse.com>
|
|
Subject: Define PN_XNUM if missing
|
|
Upstream: never, build fix for old distros
|
|
|
|
Older elfutils did not define this constant.
|
|
|
|
Signed-off-by: Petr Tesarik <ptesarik@suse.com>
|
|
---
|
|
elf_info.h | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
Index: makedumpfile-1.7.1/elf_info.h
|
|
===================================================================
|
|
--- makedumpfile-1.7.1.orig/elf_info.h
|
|
+++ makedumpfile-1.7.1/elf_info.h
|
|
@@ -19,6 +19,10 @@
|
|
#include <elf.h>
|
|
#include <sys/types.h>
|
|
|
|
+#ifndef PN_XNUM
|
|
+#define PN_XNUM 0xffff
|
|
+#endif
|
|
+
|
|
#define KEXEC_CORE_NOTE_NAME "CORE"
|
|
#define KEXEC_CORE_NOTE_NAME_BYTES sizeof(KEXEC_CORE_NOTE_NAME)
|
|
|