diff options
Diffstat (limited to 'package/android-tools')
-rw-r--r-- | package/android-tools/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/android-tools/Config.in b/package/android-tools/Config.in index 35bb8af6ef..2503a28082 100644 --- a/package/android-tools/Config.in +++ b/package/android-tools/Config.in @@ -23,15 +23,17 @@ config BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT select BR2_PACKAGE_ZLIB depends on BR2_TOOLCHAIN_HAS_THREADS # libselinux depends on !BR2_STATIC_LIBS # libselinux + depends on BR2_TOOLCHAIN_USES_GLIBC # libselinux depends on !BR2_arc # libselinux 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. -comment "fastboot needs a toolchain w/ threads, dynamic library" +comment "fastboot needs a glibc toolchain w/ threads, dynamic library" depends on !BR2_arc - depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS + depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \ + !BR2_TOOLCHAIN_USES_GLIBC config BR2_PACKAGE_ANDROID_TOOLS_ADB bool "adb" |