diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-02-07 00:49:12 -0500 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-07 14:29:38 +0100 |
commit | c574441c2a79d2bf29560ff146112cf85d6f36b1 (patch) | |
tree | 971924ef160cd5546a6244257f835fb654bc2a5d /toolchain/gdb/Config.in | |
parent | 871db074b133908cb59480da37626199a00704fd (diff) | |
download | buildroot-novena-c574441c2a79d2bf29560ff146112cf85d6f36b1.tar.gz buildroot-novena-c574441c2a79d2bf29560ff146112cf85d6f36b1.zip |
gdb: add support for Blackfin gdbserver
This requires removing "deprecated" markings from gdb-6.6, but this isn't
that big of a deal. That is the last version with Blackfin support at the
moment and we're in the process of getting mainlined.
[Peter: only mark as undeprecated on bfin]
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/gdb/Config.in')
-rw-r--r-- | toolchain/gdb/Config.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in index b45de9a70..8295f798b 100644 --- a/toolchain/gdb/Config.in +++ b/toolchain/gdb/Config.in @@ -35,10 +35,10 @@ choice config BR2_GDB_VERSION_6_6 bool "gdb 6.6" depends on !BR2_avr32 - depends on BR2_DEPRECATED + depends on BR2_DEPRECATED || BR2_bfin config BR2_GDB_VERSION_6_7_1 - depends on !BR2_avr32 + depends on !(BR2_avr32 || BR2_bfin) bool "gdb 6.7.1" config BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 @@ -47,14 +47,16 @@ choice config BR2_GDB_VERSION_6_8 bool "gdb 6.8" - depends on !BR2_avr32 + depends on !(BR2_avr32 || BR2_bfin) config BR2_GDB_VERSION_7_0_1 bool "gdb 7.0.1" + depends on !BR2_bfin select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE config BR2_GDB_VERSION_7_1 bool "gdb 7.1" + depends on !BR2_bfin select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE endchoice |