mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Due to a bug in the Config.in comment dependencies, the comment "***
picotool needs a toolchain w/ C++, threads, gcc >= 4.9 ***" is always
shown even if all features are enabled.
Fixes: d30c1e3c58 ("package/picotool: fix libusb dependencies")
Signed-off-by: Cherniaev Andrei <dungeonlords789@naver.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
646 B
Plaintext
20 lines
646 B
Plaintext
comment "picotool needs a toolchain w/ C++, threads, gcc >= 4.9"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
|
|
config BR2_PACKAGE_PICOTOOL
|
|
bool "picotool"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
|
|
select BR2_PACKAGE_LIBUSB
|
|
select BR2_PACKAGE_PICO_SDK
|
|
help
|
|
picotool is a tool for inspecting rp2040 binaries and
|
|
interacting with rp2040 devices when they are in bootsel
|
|
mode or devices USBstdio support from the Raspberry Pi Pico
|
|
SDK.
|
|
|
|
https://github.com/raspberrypi/picotool
|