]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/staging/android/Kconfig
Merge 3.4-rc5 into driver-core-next
[mirror_ubuntu-artful-kernel.git] / drivers / staging / android / Kconfig
1 menu "Android"
2
3 config ANDROID
4 bool "Android Drivers"
5 default N
6 ---help---
7 Enable support for various drivers needed on the Android platform
8
9 if ANDROID
10
11 config ANDROID_BINDER_IPC
12 bool "Android Binder IPC Driver"
13 default n
14
15 config 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
24 config ANDROID_LOGGER
25 tristate "Android log driver"
26 default n
27
28 config ANDROID_PERSISTENT_RAM
29 bool
30 depends on HAVE_MEMBLOCK
31 select REED_SOLOMON
32 select REED_SOLOMON_ENC8
33 select REED_SOLOMON_DEC8
34
35 config ANDROID_RAM_CONSOLE
36 bool "Android RAM buffer console"
37 depends on !S390 && !UML && HAVE_MEMBLOCK
38 select ANDROID_PERSISTENT_RAM
39 default n
40
41 config ANDROID_TIMED_OUTPUT
42 bool "Timed output class driver"
43 default y
44
45 config ANDROID_TIMED_GPIO
46 tristate "Android timed gpio driver"
47 depends on GENERIC_GPIO && ANDROID_TIMED_OUTPUT
48 default n
49
50 config ANDROID_LOW_MEMORY_KILLER
51 bool "Android Low Memory Killer"
52 default N
53 ---help---
54 Register processes to be killed when memory is low
55
56 config ANDROID_INTF_ALARM
57 bool "Android alarm driver"
58 depends on RTC_CLASS
59 default n
60 help
61 Provides non-wakeup and rtc backed wakeup alarms based on rtc or
62 elapsed realtime, and a non-wakeup alarm on the monotonic clock.
63 Also provides an interface to set the wall time which must be used
64 for elapsed realtime to work.
65
66 config ANDROID_INTF_ALARM_DEV
67 bool "Android alarm device"
68 depends on ANDROID_INTF_ALARM
69 default y
70 help
71 Exports the alarm interface to user-space.
72
73 config ANDROID_ALARM_OLDDRV_COMPAT
74 bool "Android Alarm compatability with old drivers"
75 depends on ANDROID_INTF_ALARM
76 default n
77 help
78 Provides preprocessor alias to aid compatability with
79 older out-of-tree drivers that use the Android Alarm
80 in-kernel API. This will be removed eventually.
81 endif # if ANDROID
82
83 endmenu