forked from open-vela/frameworks_connectivity_telephony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
54 lines (43 loc) · 953 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TELEPHONY
tristate "Enable telephony library"
default n
depends on LIBUV && LIB_DBUS
---help---
Enable telephony library
if TELEPHONY
config MODEM_ACTIVE_COUNT
int "active modem count"
default 1
range 1 2
config MODEM_PATH
string "modem path"
default "/ril_0"
---help---
The modem path
config MODEM_PATH_2
string "modem path 2"
default "/ril_1"
depends on MODEM_ACTIVE_COUNT = 2
---help---
The modem path 2
config MODEM_ABNORMAL_EVENT
bool "support modem abnormal event"
default y
---help---
enable/disable modem abnormal event feature
config TELEPHONY_TOOL
bool "Telephony tool"
default n
if TELEPHONY_TOOL
config TELEPHONY_TOOL_STACKSIZE
int "Telephony tool stack size"
default 16384
config TELEPHONY_TOOL_PRIORITY
int "Telephony tool priority"
default 100
endif
endif