diff options
author | Alexey Brodkin <alexey.brodkin@synopsys.com> | 2018-12-04 14:56:53 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-05 12:37:02 +0000 |
commit | 84986d45b7befc616e88aaeb35af2de539d3a866 (patch) | |
tree | 75a2c3b4293a93afcaca9eb2022287a95dd0ded6 /meta/recipes-devtools | |
parent | 006f665af17daab06bb96401c5d74bc92cb7af75 (diff) | |
download | poky-84986d45b7befc616e88aaeb35af2de539d3a866.tar.gz |
gdb: Remove long ago upstreamed patch
This fix was upstreamed a long ago, see [1].
[1] https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=37ce4055fe907b9edd25498dcda7a133dbd19784
(From OE-Core rev: 873507c0cbbf1f7ef22d1cb9dcb0e2b167460490)
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-8.2.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch | 29 |
2 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-8.2.inc b/meta/recipes-devtools/gdb/gdb-8.2.inc index dfb0059123..7e0809de72 100644 --- a/meta/recipes-devtools/gdb/gdb-8.2.inc +++ b/meta/recipes-devtools/gdb/gdb-8.2.inc | |||
@@ -5,7 +5,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | |||
5 | file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674" | 5 | file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674" |
6 | 6 | ||
7 | SRC_URI = "http://ftp.gnu.org/gnu/gdb/gdb-${PV}.tar.xz \ | 7 | SRC_URI = "http://ftp.gnu.org/gnu/gdb/gdb-${PV}.tar.xz \ |
8 | file://0001-include-sys-types.h-for-mode_t.patch \ | ||
9 | file://0002-make-man-install-relative-to-DESTDIR.patch \ | 8 | file://0002-make-man-install-relative-to-DESTDIR.patch \ |
10 | file://0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch \ | 9 | file://0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch \ |
11 | file://0004-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch \ | 10 | file://0004-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch \ |
diff --git a/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch b/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch deleted file mode 100644 index 2c8783e192..0000000000 --- a/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From 6ae0fb9b49047cef338262e30273f63139fd1261 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 19 Jan 2016 18:18:52 -0800 | ||
4 | Subject: [PATCH 01/11] include sys/types.h for mode_t | ||
5 | |||
6 | mode_t is used in target.h, so we need to include sys/types.h to get the | ||
7 | defintion | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | gdb/gdbserver/target.h | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h | ||
16 | index fce54e05ad..278cee78a8 100644 | ||
17 | --- a/gdb/gdbserver/target.h | ||
18 | +++ b/gdb/gdbserver/target.h | ||
19 | @@ -29,6 +29,7 @@ | ||
20 | #include "mem-break.h" | ||
21 | #include "btrace-common.h" | ||
22 | #include <vector> | ||
23 | +#include <sys/types.h> | ||
24 | |||
25 | struct emit_ops; | ||
26 | struct buffer; | ||
27 | -- | ||
28 | 2.18.0 | ||
29 | |||