summaryrefslogtreecommitdiffstats
path: root/package/android-tools
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2016-05-11 22:47:28 +0200
committerPeter Korsgaard <peter@korsgaard.com>2016-05-11 22:47:28 +0200
commit30706f9252021283374903c078e4380e7ee0c985 (patch)
treecb735893479dbb82bb193652923be5c9ce32834c /package/android-tools
parentcfac2c01c368a0127a6e33c5790a1a8bf3862a33 (diff)
downloadbuildroot-30706f9252021283374903c078e4380e7ee0c985.tar.gz
buildroot-30706f9252021283374903c078e4380e7ee0c985.zip
android-tools: adb/adbd sub options use fork(), need MMU
Fixes: http://autobuild.buildroot.org/results/d87/d87a4bd35cedca94ef6266a06ba05dda103d49ce/ http://autobuild.buildroot.org/results/a83/a8312469b4da6142f0ae67a5eeaf255da351a379/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/android-tools')
-rw-r--r--package/android-tools/Config.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/package/android-tools/Config.in b/package/android-tools/Config.in
index 2517370ed6..84f18e8367 100644
--- a/package/android-tools/Config.in
+++ b/package/android-tools/Config.in
@@ -1,8 +1,12 @@
config BR2_PACKAGE_ANDROID_TOOLS
bool "android-tools"
+ # adb/adbd needs mmu
select BR2_PACKAGE_ANDROID_TOOLS_ADBD if \
!BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT && \
- !BR2_PACKAGE_ANDROID_TOOLS_ADB
+ !BR2_PACKAGE_ANDROID_TOOLS_ADB && \
+ BR2_USE_MMU
+ select BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT if \
+ !BR2_USE_MMU
help
This package contains the fastboot and adb utilities, that
can be used to interact with target devices using of these
@@ -21,6 +25,7 @@ config BR2_PACKAGE_ANDROID_TOOLS_FASTBOOT
config BR2_PACKAGE_ANDROID_TOOLS_ADB
bool "adb"
+ depends on BR2_USE_MMU # uses fork()
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_ZLIB
help
@@ -30,6 +35,7 @@ config BR2_PACKAGE_ANDROID_TOOLS_ADB
config BR2_PACKAGE_ANDROID_TOOLS_ADBD
bool "adbd"
+ depends on BR2_USE_MMU # uses fork()
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_ZLIB
help
OpenPOWER on IntegriCloud