Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_DEVICES
  18. string "Android Binder devices"
  19. depends on ANDROID_BINDER_IPC
  20. default "binder,hwbinder,vndbinder"
  21. ---help---
  22. Default value for the binder.devices parameter.
  23. The binder.devices parameter is a comma-separated list of strings
  24. that specifies the names of the binder device nodes that will be
  25. created. Each binder device has its own context manager, and is
  26. therefore logically separated from the other devices.
  27. config ANDROID_BINDER_IPC_SELFTEST
  28. bool "Android Binder IPC Driver Selftest"
  29. depends on ANDROID_BINDER_IPC
  30. ---help---
  31. This feature allows binder selftest to run.
  32. Binder selftest checks the allocation and free of binder buffers
  33. exhaustively with combinations of various buffer sizes and
  34. alignments.
  35. endif # if ANDROID
  36. endmenu