589e8020db
This commit results in no change to actual code. It cleans up the following issues in the meta patches: - some patches generated fuzz and offset warnings - patch file names do not match that generated by git format-patch - some patches were not in git format, did not have a proper git header - some patches were not signed off by anybody - file names contained grub2 which is redundant - one patch added a blank line to the end of a file generating a warning, and a subsequent patch removed it. This has now been squashed out. There are 13 patches in total, they were numbered 1-14 with 4 being absent. They are now numbered 1-13. Verification: Built and captured the output, verified that there are no more fuzz and offset warnings. Closes-Bug: 1959037 Change-Id: I8056adf3ee96dc036262aa8c2d9eecfc353cc5ba Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From 579956c74511eeb40761df7908210492768f883d Mon Sep 17 00:00:00 2001
|
|
Message-Id: <579956c74511eeb40761df7908210492768f883d.1643237526.git.Jim.Somerville@windriver.com>
|
|
In-Reply-To: <8b5576704440696a7c8f1b00735217bf1745b6a1.1643237526.git.Jim.Somerville@windriver.com>
|
|
References: <8b5576704440696a7c8f1b00735217bf1745b6a1.1643237526.git.Jim.Somerville@windriver.com>
|
|
From: Jim Somerville <Jim.Somerville@windriver.com>
|
|
Date: Wed, 26 Jan 2022 17:24:50 -0500
|
|
Subject: [PATCH 02/13] fix cflags
|
|
|
|
Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
|
|
---
|
|
SOURCES/grub.macros | 11 +----------
|
|
1 file changed, 1 insertion(+), 10 deletions(-)
|
|
|
|
diff --git a/SOURCES/grub.macros b/SOURCES/grub.macros
|
|
index a78bda9..487ee27 100644
|
|
--- a/SOURCES/grub.macros
|
|
+++ b/SOURCES/grub.macros
|
|
@@ -15,16 +15,7 @@
|
|
%global cc_equals %{nil}
|
|
%endif
|
|
|
|
-%global efi_cflags %(echo %{optflags} | \\\
|
|
- sed \\\
|
|
- -e 's/-O./-g3/g' \\\
|
|
- -e 's/-fstack-protector[[:alpha:]-]\\+//g' \\\
|
|
- -e 's/-Wp,-D_FORTIFY_SOURCE=[[:digit:]]\\+//g' \\\
|
|
- -e 's/--param=ssp-buffer-size=4//g' \\\
|
|
- -e 's/-mregparm=3/-mregparm=4/g' \\\
|
|
- -e 's/-fexceptions//g' \\\
|
|
- -e 's/-fasynchronous-unwind-tables//g' \\\
|
|
- -e 's/^/ -fno-strict-aliasing /' ) %{nil}
|
|
+%global efi_cflags ''
|
|
%global legacy_cflags %(echo %{efi_cflags} | \\\
|
|
sed \\\
|
|
-e 's/-m64//g' \\\
|
|
--
|
|
2.29.2
|
|
|