aboutsummaryrefslogtreecommitdiff
path: root/drivers/android/Kconfig
diff options
context:
space:
mode:
authorMister Oyster <oysterized@gmail.com>2017-06-18 12:21:43 +0200
committerMister Oyster <oysterized@gmail.com>2017-06-18 12:21:43 +0200
commit03b866d1daeb6c8e46e1d2f9cf624afe5729d93a (patch)
treebcaeee673f0b7ab6102bfe0f87155328db4e2f6d /drivers/android/Kconfig
parent8a81839d2fde7204122847b361f525460d0a2945 (diff)
binder: merge aosp-common/3.10 binder drivers (uptodate)
Diffstat (limited to 'drivers/android/Kconfig')
-rw-r--r--drivers/android/Kconfig25
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/android/Kconfig b/drivers/android/Kconfig
index 4f6629d33..a82fc022d 100644
--- a/drivers/android/Kconfig
+++ b/drivers/android/Kconfig
@@ -19,6 +19,31 @@ config ANDROID_BINDER_IPC
Android process, using Binder to identify, invoke and pass arguments
between said processes.
+config ANDROID_BINDER_DEVICES
+ string "Android Binder devices"
+ depends on ANDROID_BINDER_IPC
+ default "binder"
+ ---help---
+ Default value for the binder.devices parameter.
+
+ The binder.devices parameter is a comma-separated list of strings
+ that specifies the names of the binder device nodes that will be
+ created. Each binder device has its own context manager, and is
+ therefore logically separated from the other devices.
+
+config ANDROID_BINDER_IPC_32BIT
+ bool
+ depends on !64BIT && ANDROID_BINDER_IPC
+ default y
+ ---help---
+ The Binder API has been changed to support both 32 and 64bit
+ applications in a mixed environment.
+
+ Enable this to support an old 32-bit Android user-space (v4.4 and
+ earlier).
+
+ Note that enabling this will break newer Android user-space.
+
endif # if ANDROID
endmenu