Blame SOURCES/kexec-tools-2.0.20-Remove-duplicated-variable-declarations.patch

bb7919
From cc087b11462af9f971a2c090d07e8d780a867b50 Mon Sep 17 00:00:00 2001
bb7919
From: Kairui Song <kasong@redhat.com>
bb7919
Date: Wed, 29 Jan 2020 13:38:19 +0800
bb7919
Subject: [PATCH] kexec-tools: Remove duplicated variable declarations
bb7919
bb7919
When building kexec-tools for Fedora 32, following error is observed:
bb7919
bb7919
/usr/bin/ld: kexec/arch/x86_64/kexec-bzImage64.o:(.bss+0x0): multiple definition of `bzImage_support_efi_boot';
bb7919
kexec/arch/i386/kexec-bzImage.o:(.bss+0x0): first defined here
bb7919
bb7919
/builddir/build/BUILD/kexec-tools-2.0.20/kexec/arch/arm/../../fs2dt.h:33: multiple definition of `my_debug';
bb7919
kexec/fs2dt.o:/builddir/build/BUILD/kexec-tools-2.0.20/kexec/fs2dt.h:33: first defined here
bb7919
bb7919
/builddir/build/BUILD/kexec-tools-2.0.20/kexec/arch/arm64/kexec-arm64.h:68: multiple definition of `arm64_mem';
bb7919
kexec/fs2dt.o:/builddir/build/BUILD/kexec-tools-2.0.20/././kexec/arch/arm64/kexec-arm64.h:68: first defined here
bb7919
bb7919
/builddir/build/BUILD/kexec-tools-2.0.20/kexec/arch/arm64/kexec-arm64.h:54: multiple definition of `initrd_size';
bb7919
kexec/fs2dt.o:/builddir/build/BUILD/kexec-tools-2.0.20/././kexec/arch/arm64/kexec-arm64.h:54: first defined here
bb7919
bb7919
/builddir/build/BUILD/kexec-tools-2.0.20/kexec/arch/arm64/kexec-arm64.h:53: multiple definition of `initrd_base';
bb7919
kexec/fs2dt.o:/builddir/build/BUILD/kexec-tools-2.0.20/././kexec/arch/arm64/kexec-arm64.h:53: first defined here
bb7919
bb7919
And apparently, these variables are wrongly declared multiple times. So
bb7919
remove duplicated declaration.
bb7919
bb7919
Signed-off-by: Kairui Song <kasong@redhat.com>
bb7919
Signed-off-by: Simon Horman <horms@verge.net.au>
bb7919
---
bb7919
 kexec/arch/arm64/kexec-arm64.h      | 6 +++---
bb7919
 kexec/arch/ppc64/kexec-elf-ppc64.c  | 2 --
bb7919
 kexec/arch/x86_64/kexec-bzImage64.c | 1 -
bb7919
 kexec/fs2dt.h                       | 2 +-
bb7919
 4 files changed, 4 insertions(+), 7 deletions(-)
bb7919
bb7919
diff --git a/kexec/arch/arm64/kexec-arm64.h b/kexec/arch/arm64/kexec-arm64.h
bb7919
index 628de79..ed447ac 100644
bb7919
--- a/kexec/arch/arm64/kexec-arm64.h
bb7919
+++ b/kexec/arch/arm64/kexec-arm64.h
bb7919
@@ -50,8 +50,8 @@ int zImage_arm64_load(int argc, char **argv, const char *kernel_buf,
bb7919
 void zImage_arm64_usage(void);
bb7919
 
bb7919
 
bb7919
-off_t initrd_base;
bb7919
-off_t initrd_size;
bb7919
+extern off_t initrd_base;
bb7919
+extern off_t initrd_size;
bb7919
 
bb7919
 /**
bb7919
  * struct arm64_mem - Memory layout info.
bb7919
@@ -65,7 +65,7 @@ struct arm64_mem {
bb7919
 };
bb7919
 
bb7919
 #define arm64_mem_ngv UINT64_MAX
bb7919
-struct arm64_mem arm64_mem;
bb7919
+extern struct arm64_mem arm64_mem;
bb7919
 
bb7919
 uint64_t get_phys_offset(void);
bb7919
 uint64_t get_vp_offset(void);
bb7919
diff --git a/kexec/arch/ppc64/kexec-elf-ppc64.c b/kexec/arch/ppc64/kexec-elf-ppc64.c
bb7919
index 3510b70..695b8b0 100644
bb7919
--- a/kexec/arch/ppc64/kexec-elf-ppc64.c
bb7919
+++ b/kexec/arch/ppc64/kexec-elf-ppc64.c
bb7919
@@ -44,8 +44,6 @@
bb7919
 uint64_t initrd_base, initrd_size;
bb7919
 unsigned char reuse_initrd = 0;
bb7919
 const char *ramdisk;
bb7919
-/* Used for enabling printing message from purgatory code */
bb7919
-int my_debug = 0;
bb7919
 
bb7919
 int elf_ppc64_probe(const char *buf, off_t len)
bb7919
 {
bb7919
diff --git a/kexec/arch/x86_64/kexec-bzImage64.c b/kexec/arch/x86_64/kexec-bzImage64.c
bb7919
index 8edb3e4..ba8dc48 100644
bb7919
--- a/kexec/arch/x86_64/kexec-bzImage64.c
bb7919
+++ b/kexec/arch/x86_64/kexec-bzImage64.c
bb7919
@@ -42,7 +42,6 @@
bb7919
 #include <arch/options.h>
bb7919
 
bb7919
 static const int probe_debug = 0;
bb7919
-int bzImage_support_efi_boot;
bb7919
 
bb7919
 int bzImage64_probe(const char *buf, off_t len)
bb7919
 {
bb7919
diff --git a/kexec/fs2dt.h b/kexec/fs2dt.h
bb7919
index 7633273..fe24931 100644
bb7919
--- a/kexec/fs2dt.h
bb7919
+++ b/kexec/fs2dt.h
bb7919
@@ -30,7 +30,7 @@ extern struct bootblock bb[1];
bb7919
 
bb7919
 /* Used for enabling printing message from purgatory code
bb7919
  * Only has implemented for PPC64 */
bb7919
-int my_debug;
bb7919
+extern int my_debug;
bb7919
 extern int dt_no_old_root;
bb7919
 
bb7919
 void reserve(unsigned long long where, unsigned long long length);
bb7919
-- 
bb7919
2.7.5
bb7919