From b8ae02c5ff75edb638ab67e487227973bc34fb2f Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 8 Mar 2015 18:11:49 +0100 Subject: add support for gdbserver on AVR32 devices Happily I got the old gdb tarball from buildroot source repository. (thx Yann) Mirror the package and make it compile for native gdbserver. Patches need to be shuffled to version directories. --- package/gdb/patches/7.8.2/patch-gdb_common_signals_c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 package/gdb/patches/7.8.2/patch-gdb_common_signals_c (limited to 'package/gdb/patches/7.8.2/patch-gdb_common_signals_c') diff --git a/package/gdb/patches/7.8.2/patch-gdb_common_signals_c b/package/gdb/patches/7.8.2/patch-gdb_common_signals_c new file mode 100644 index 000000000..114f5b867 --- /dev/null +++ b/package/gdb/patches/7.8.2/patch-gdb_common_signals_c @@ -0,0 +1,13 @@ +* added from https://github.com/rofl0r/sabotage + +--- gdb-7.5.orig/gdb/common/signals.c 2012-05-24 18:51:37.000000000 +0200 ++++ gdb-7.5/gdb/common/signals.c 2012-10-01 14:44:23.000000000 +0200 +@@ -346,6 +346,8 @@ gdb_signal_from_host (int hostsig) + else if (64 <= hostsig && hostsig <= 127) + return (enum gdb_signal) + (hostsig - 64 + (int) GDB_SIGNAL_REALTIME_64); ++ else if (hostsig == 128) ++ return GDB_SIGNAL_UNKNOWN; + else + error (_("GDB bug: target.c (gdb_signal_from_host): " + "unrecognized real-time signal")); -- cgit v1.2.3