Blame SOURCES/0264-Fixup-for-newer-compiler.patch

f725e3
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f725e3
From: Peter Jones <pjones@redhat.com>
f725e3
Date: Thu, 10 May 2018 13:40:19 -0400
f725e3
Subject: [PATCH] Fixup for newer compiler
f725e3
f725e3
---
f725e3
 grub-core/fs/btrfs.c         | 2 +-
f725e3
 include/grub/gpt_partition.h | 2 +-
f725e3
 conf/Makefile.common         | 2 +-
f725e3
 3 files changed, 3 insertions(+), 3 deletions(-)
f725e3
f725e3
diff --git a/grub-core/fs/btrfs.c b/grub-core/fs/btrfs.c
f725e3
index f7b6c152037..4a6efffeb46 100644
f725e3
--- a/grub-core/fs/btrfs.c
f725e3
+++ b/grub-core/fs/btrfs.c
f725e3
@@ -183,7 +183,7 @@ struct grub_btrfs_inode
f725e3
   grub_uint64_t size;
f725e3
   grub_uint8_t dummy2[0x70];
f725e3
   struct grub_btrfs_time mtime;
f725e3
-} GRUB_PACKED;
f725e3
+} GRUB_PACKED  __attribute__ ((aligned(8)));
f725e3
 
f725e3
 struct grub_btrfs_extent_data
f725e3
 {
f725e3
diff --git a/include/grub/gpt_partition.h b/include/grub/gpt_partition.h
f725e3
index 1b32f6725a4..8cddf997efc 100644
f725e3
--- a/include/grub/gpt_partition.h
f725e3
+++ b/include/grub/gpt_partition.h
f725e3
@@ -76,7 +76,7 @@ struct grub_gpt_partentry
f725e3
   grub_uint64_t end;
f725e3
   grub_uint64_t attrib;
f725e3
   char name[72];
f725e3
-} GRUB_PACKED;
f725e3
+} GRUB_PACKED  __attribute__ ((aligned(8)));
f725e3
 
f725e3
 grub_err_t
f725e3
 grub_gpt_partition_map_iterate (grub_disk_t disk,
f725e3
diff --git a/conf/Makefile.common b/conf/Makefile.common
f725e3
index 6f836d82771..9e0e8364f38 100644
f725e3
--- a/conf/Makefile.common
f725e3
+++ b/conf/Makefile.common
f725e3
@@ -45,7 +45,7 @@ CFLAGS_KERNEL = $(CFLAGS_CPU) $(CFLAGS_PLATFORM) -ffreestanding
f725e3
 LDFLAGS_KERNEL = $(LDFLAGS_CPU) $(LDFLAGS_PLATFORM) -nostdlib $(TARGET_LDFLAGS_OLDMAGIC) $(TARGET_LDFLAGS_STATIC_LIBGCC)
f725e3
 CPPFLAGS_KERNEL = $(CPPFLAGS_CPU) $(CPPFLAGS_PLATFORM) -DGRUB_KERNEL=1
f725e3
 CCASFLAGS_KERNEL = $(CCASFLAGS_CPU) $(CCASFLAGS_PLATFORM)
f725e3
-STRIPFLAGS_KERNEL = -R .eh_frame -R .rel.dyn -R .reginfo -R .note -R .comment -R .drectve -R .note.gnu.gold-version
f725e3
+STRIPFLAGS_KERNEL = -R .eh_frame -R .rel.dyn -R .reginfo -R .note -R .comment -R .drectve -R .note.gnu.gold-version -R .MIPS.abiflags -R .ARM.exidx -R .note.gnu.property -R .gnu.build.attributes
f725e3
 
f725e3
 CFLAGS_MODULE = $(CFLAGS_CPU) $(CFLAGS_PLATFORM) -ffreestanding
f725e3
 LDFLAGS_MODULE = $(LDFLAGS_CPU) $(LDFLAGS_PLATFORM) -nostdlib $(TARGET_LDFLAGS_OLDMAGIC) -Wl,-r,-d