Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "Android"
  3. config ANDROID_BINDER_IPC
  4. bool "Android Binder IPC Driver"
  5. depends on MMU
  6. default n
  7. help
  8. Binder is used in Android for both communication between processes,
  9. and remote method invocation.
  10. This means one Android process can call a method/routine in another
  11. Android process, using Binder to identify, invoke and pass arguments
  12. between said processes.
  13. config ANDROID_BINDERFS
  14. bool "Android Binderfs filesystem"
  15. depends on ANDROID_BINDER_IPC
  16. default n
  17. help
  18. Binderfs is a pseudo-filesystem for the Android Binder IPC driver
  19. which can be mounted per-ipc namespace allowing to run multiple
  20. instances of Android.
  21. Each binderfs mount initially only contains a binder-control device.
  22. It can be used to dynamically allocate new binder IPC devices via
  23. ioctls.
  24. config ANDROID_BINDER_DEVICES
  25. string "Android Binder devices"
  26. depends on ANDROID_BINDER_IPC
  27. default "binder,hwbinder,vndbinder"
  28. help
  29. Default value for the binder.devices parameter.
  30. The binder.devices parameter is a comma-separated list of strings
  31. that specifies the names of the binder device nodes that will be
  32. created. Each binder device has its own context manager, and is
  33. therefore logically separated from the other devices.
  34. config ANDROID_BINDER_IPC_SELFTEST
  35. bool "Android Binder IPC Driver Selftest"
  36. depends on ANDROID_BINDER_IPC
  37. help
  38. This feature allows binder selftest to run.
  39. Binder selftest checks the allocation and free of binder buffers
  40. exhaustively with combinations of various buffer sizes and
  41. alignments.
  42. endmenu