Kconfig revision cddb8751c80348df75149f44fc3bf38d3dd1f3e6
1menu "Android"
2
3config ANDROID
4	bool "Android Drivers"
5	default N
6	---help---
7	  Enable support for various drivers needed on the Android platform
8
9if ANDROID
10
11config ANDROID_BINDER_IPC
12	bool "Android Binder IPC Driver"
13	default n
14
15config ASHMEM
16	bool "Enable the Anonymous Shared Memory Subsystem"
17	default n
18	depends on SHMEM || TINY_SHMEM
19	help
20	  The ashmem subsystem is a new shared memory allocator, similar to
21	  POSIX SHM but with different behavior and sporting a simpler
22	  file-based API.
23
24config ANDROID_LOGGER
25	tristate "Android log driver"
26	default n
27
28config ANDROID_RAM_CONSOLE
29	bool "Android RAM buffer console"
30	depends on !S390 && !UML && HAVE_MEMBLOCK && PSTORE_RAM=y
31	default n
32
33config ANDROID_TIMED_OUTPUT
34	bool "Timed output class driver"
35	default y
36
37config ANDROID_TIMED_GPIO
38	tristate "Android timed gpio driver"
39	depends on GENERIC_GPIO && ANDROID_TIMED_OUTPUT
40	default n
41
42config ANDROID_LOW_MEMORY_KILLER
43	bool "Android Low Memory Killer"
44	default N
45	---help---
46	  Register processes to be killed when memory is low
47
48source "drivers/staging/android/switch/Kconfig"
49
50config ANDROID_INTF_ALARM_DEV
51	bool "Android alarm driver"
52	depends on RTC_CLASS
53	default n
54	help
55	  Provides non-wakeup and rtc backed wakeup alarms based on rtc or
56	  elapsed realtime, and a non-wakeup alarm on the monotonic clock.
57	  Also exports the alarm interface to user-space.
58
59endif # if ANDROID
60
61endmenu
62