summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/grub/files/0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/grub/files/0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch')
-rw-r--r--meta/recipes-bsp/grub/files/0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/files/0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch b/meta/recipes-bsp/grub/files/0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch
new file mode 100644
index 0000000000..fcfbf5cdf6
--- /dev/null
+++ b/meta/recipes-bsp/grub/files/0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch
@@ -0,0 +1,38 @@
1From 007f0b407f72314ec832d77e15b83ea40b160037 Mon Sep 17 00:00:00 2001
2From: Andrei Borzenkov <arvidjaar@gmail.com>
3Date: Tue, 4 Apr 2017 19:37:47 +0300
4Subject: [PATCH 3/4] Add gnulib-fix-gcc7-fallthrough.diff
5
6As long as the code is not upstream, add it as explicit patch for the
7case of gnulib refresh.
8---
9Upstream-Status: Backport
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11
12 grub-core/gnulib-fix-gcc7-fallthrough.diff | 14 ++++++++++++++
13 1 file changed, 14 insertions(+)
14 create mode 100644 grub-core/gnulib-fix-gcc7-fallthrough.diff
15
16diff --git a/grub-core/gnulib-fix-gcc7-fallthrough.diff b/grub-core/gnulib-fix-gcc7-fallthrough.diff
17new file mode 100644
18index 0000000..9802e2d
19--- /dev/null
20+++ b/grub-core/gnulib-fix-gcc7-fallthrough.diff
21@@ -0,0 +1,14 @@
22+diff --git grub-core/gnulib/regexec.c grub-core/gnulib/regexec.c
23+index f632cd4..a7776f0 100644
24+--- grub-core/gnulib/regexec.c
25++++ grub-core/gnulib/regexec.c
26+@@ -4099,6 +4099,9 @@ check_node_accept (const re_match_context_t *mctx, const re_token_t *node,
27+ case OP_UTF8_PERIOD:
28+ if (ch >= ASCII_CHARS)
29+ return false;
30++#if defined __GNUC__ && __GNUC__ >= 7
31++ __attribute__ ((fallthrough));
32++#endif
33+ /* FALLTHROUGH */
34+ #endif
35+ case OP_PERIOD:
36--
371.9.1
38