Kconfig 907 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Android"
  2. config ANDROID
  3. bool "Android Drivers"
  4. ---help---
  5. Enable support for various drivers needed on the Android platform
  6. if ANDROID
  7. config ANDROID_BINDER_IPC
  8. bool "Android Binder IPC Driver"
  9. depends on MMU
  10. default n
  11. ---help---
  12. Binder is used in Android for both communication between processes,
  13. and remote method invocation.
  14. This means one Android process can call a method/routine in another
  15. Android process, using Binder to identify, invoke and pass arguments
  16. between said processes.
  17. config ANDROID_BINDER_IPC_32BIT
  18. bool
  19. depends on !64BIT && ANDROID_BINDER_IPC
  20. default y
  21. ---help---
  22. The Binder API has been changed to support both 32 and 64bit
  23. applications in a mixed environment.
  24. Enable this to support an old 32-bit Android user-space (v4.4 and
  25. earlier).
  26. Note that enabling this will break newer Android user-space.
  27. endif # if ANDROID
  28. endmenu