66bb10b7b0
This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
829 B
Plaintext
34 lines
829 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.berlios.de/web/
|
|
|
|
if BR2_PACKAGE_OPENOCD
|
|
|
|
comment "Adapters"
|
|
|
|
config BR2_PACKAGE_OPENOCD_FT2XXX
|
|
bool "FT2xxx/FT4xxx Based JTAG Programmer"
|
|
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
|