-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathKconfig
75 lines (58 loc) · 1.29 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# 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
config TELEPHONY_TEST
bool "enbale telephony test"
default n
depends on TELEPHONY && TESTING_CMOCKA
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
if TELEPHONY_TEST
config TELEPHONY_TEST_PRIORITY
int "cmocka_telephony_test priority"
default 99
config TELEPHONY_TEST_STACKSIZE
int "cmocka_telephony_test stack size"
default 16384
config TEST_PHONE_NUMBER
string "test phone number"
default "10086"
endif
endif