mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
f9b5d9170f
mxt-app is a utility for managing Atmel maXTouch touch controllers and other devices that support Atmel Object Based Protocol. Signed-off-by: Saeed Kazemi <kazemi.ms@gmail.com> [Arnout: - drop BR2_PACKAGE_MXT_APP_DEBUG option, instead use BR2_ENABLE_RUNTIME_DEBUG; - also explicitly disable debug; - add comment to explain AUTORECONF. ] Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
16 lines
496 B
Plaintext
16 lines
496 B
Plaintext
config BR2_PACKAGE_MXT_APP
|
|
bool "mxt-app"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
|
|
select BR2_PACKAGE_LIBUSB
|
|
help
|
|
mxt-app is a utility for managing Atmel maXTouch touch
|
|
controllers and other devices that support Atmel Object Based
|
|
Protocol.
|
|
|
|
https://github.com/atmel-maxtouch/mxt-app/
|
|
|
|
comment "mxt-app needs a toolchain w/ threads, gcc >= 4.9"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|