669ce8c75e
This fixes: http://autobuild.buildroot.net/results/6cb25ed954840109c9d0e582e922b0ba9d07e174/ Signed-off-by: Anton Kolesov <Anton.Kolesov@synopsys.com> [yann.morin.1998@free.fr: use the new symbol; remove comment strings] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
873 B
Plaintext
35 lines
873 B
Plaintext
config BR2_PACKAGE_OPENOCD
|
|
bool "openocd"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
|
select BR2_PACKAGE_LIBUSB
|
|
select BR2_PACKAGE_LIBUSB_COMPAT
|
|
help
|
|
OpenOCD - Open On-Chip Debugger
|
|
|
|
http://openocd.sourceforge.net/
|
|
|
|
if BR2_PACKAGE_OPENOCD
|
|
|
|
comment "Adapters"
|
|
|
|
config BR2_PACKAGE_OPENOCD_FT2XXX
|
|
bool "FT2xxx/FT4xxx Based JTAG Programmer"
|
|
depends on BR2_ARCH_HAS_ATOMICS # libftdi
|
|
select BR2_PACKAGE_LIBFTDI
|
|
help
|
|
Enable building support for FT2232 based devices
|
|
using the libftdi driver, opensource alternate of FTD2XX
|
|
|
|
config BR2_PACKAGE_OPENOCD_JLINK
|
|
bool "Segger J-Link JTAG Programmer"
|
|
help
|
|
Segger J-Link JTAG Programmer and clone such as Atmel SAM-ICE
|
|
|
|
config BR2_PACKAGE_OPENOCD_VSLLINK
|
|
bool "Versaloon-Link JTAG Programmr"
|
|
|
|
endif # BR2_PACKAGE_OPENOCD
|
|
|
|
comment "openocd needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|