blob: 0ce50d12c30f9618c003bc20087cf7dfaff3eda6 [file] [log] [blame]
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001menu "Android"
2
3config ANDROID
4 bool "Android Drivers"
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005 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
Robert Love11980c22011-12-20 16:49:48 -080015config 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
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090024config ANDROID_LOGGER
25 tristate "Android log driver"
26 default n
27
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090028config ANDROID_TIMED_OUTPUT
29 bool "Timed output class driver"
30 default y
31
32config ANDROID_TIMED_GPIO
33 tristate "Android timed gpio driver"
34 depends on GENERIC_GPIO && ANDROID_TIMED_OUTPUT
35 default n
36
37config ANDROID_LOW_MEMORY_KILLER
38 bool "Android Low Memory Killer"
39 default N
40 ---help---
41 Register processes to be killed when memory is low
42
John Stultzef2353d2012-04-20 12:31:47 -070043config ANDROID_INTF_ALARM_DEV
John Stultzfe8d2722012-02-09 14:24:36 -080044 bool "Android alarm driver"
45 depends on RTC_CLASS
Praneeth Kumar Bajjuri58a38ff2012-02-09 14:24:37 -080046 default n
John Stultzfe8d2722012-02-09 14:24:36 -080047 help
48 Provides non-wakeup and rtc backed wakeup alarms based on rtc or
49 elapsed realtime, and a non-wakeup alarm on the monotonic clock.
John Stultzef2353d2012-04-20 12:31:47 -070050 Also exports the alarm interface to user-space.
John Stultzfe8d2722012-02-09 14:24:36 -080051
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090052endif # if ANDROID
53
54endmenu