forked from pool/kexec-tools
- Bump version to 2.0.21 - Drop patches from upstream git: * kexec-tools-video-capability.patch OBS-URL: https://build.opensuse.org/request/show/890015 OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/kexec-tools?expand=0&rev=139
24 lines
694 B
Diff
24 lines
694 B
Diff
From: Petr Tesarik <ptesarik@suse.com>
|
|
Subject: Remove duplicate definition of ramdisk
|
|
Upstream: merged
|
|
Git-commit: 5e7ce27626a44428c01e0e5ab3fe60ef98ca788c
|
|
|
|
The ramdisk variable is defined in kexec/arch/ppc/kexec-ppc.c. This
|
|
other definition is not needed and breaks build with -fno-common.
|
|
|
|
Signed-off-by: Petr Tesarik <ptesarik@suse.com>
|
|
---
|
|
kexec/arch/ppc/kexec-elf-ppc.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/kexec/arch/ppc/kexec-elf-ppc.c
|
|
+++ b/kexec/arch/ppc/kexec-elf-ppc.c
|
|
@@ -33,7 +33,6 @@
|
|
static const int probe_debug = 0;
|
|
|
|
unsigned char reuse_initrd;
|
|
-const char *ramdisk;
|
|
int create_flatten_tree(struct kexec_info *, unsigned char **, unsigned long *,
|
|
char *);
|
|
|