2015-11-23 17:27:12 +01:00
|
|
|
config BR2_PACKAGE_ANDROID_TOOLS
|
2016-05-11 22:45:25 +02:00
|
|
|
bool "android-tools"
|
2016-05-11 22:47:28 +02:00
|
|
|
# adb/adbd needs mmu
|
2016-05-11 22:45:25 +02:00
|
|
|
select BR2_PACKAGE_ANDROID_TOOLS_ADBD if \
|
|
|
|
!BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT && \
|
2016-05-11 22:47:28 +02:00
|
|
|
!BR2_PACKAGE_ANDROID_TOOLS_ADB && \
|
|
|
|
BR2_USE_MMU
|
|
|
|
select BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT if \
|
|
|
|
!BR2_USE_MMU
|
2016-05-11 22:45:25 +02:00
|
|
|
help
|
|
|
|
This package contains the fastboot and adb utilities, that
|
|
|
|
can be used to interact with target devices using of these
|
|
|
|
protocols.
|
2015-11-23 17:27:12 +01:00
|
|
|
|
|
|
|
if BR2_PACKAGE_ANDROID_TOOLS
|
|
|
|
|
|
|
|
config BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT
|
2016-05-11 22:45:25 +02:00
|
|
|
bool "fastboot"
|
|
|
|
select BR2_PACKAGE_LIBSELINUX
|
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
help
|
|
|
|
This option will build and install the fastboot utility for
|
|
|
|
the target, which can be used to reflash other target devices
|
|
|
|
implementing the fastboot protocol.
|
2015-11-23 17:27:12 +01:00
|
|
|
|
|
|
|
config BR2_PACKAGE_ANDROID_TOOLS_ADB
|
2016-05-11 22:45:25 +02:00
|
|
|
bool "adb"
|
2016-05-11 22:47:28 +02:00
|
|
|
depends on BR2_USE_MMU # uses fork()
|
2016-05-11 22:45:25 +02:00
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
help
|
|
|
|
This option will build and install the adb utility for the
|
|
|
|
target, which can be used to interact with other target
|
|
|
|
devices implementing the ADB protocol.
|
2015-11-23 17:27:12 +01:00
|
|
|
|
|
|
|
config BR2_PACKAGE_ANDROID_TOOLS_ADBD
|
2016-05-11 22:45:25 +02:00
|
|
|
bool "adbd"
|
2016-05-11 22:47:28 +02:00
|
|
|
depends on BR2_USE_MMU # uses fork()
|
2016-05-11 22:45:25 +02:00
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
help
|
|
|
|
This option will build and install the adbd utility for the
|
|
|
|
target, which can be used to interact with a host machine
|
|
|
|
implementing the ADB protocol.
|
2015-11-23 17:27:12 +01:00
|
|
|
|
|
|
|
endif
|