-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathKconfig
More file actions
58 lines (44 loc) · 1.4 KB
/
Kconfig
File metadata and controls
58 lines (44 loc) · 1.4 KB
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
#
# Copyright (c) [2020] Huawei Technologies Co.,Ltd.All rights reserved.
#
# LiteOS NOVA is licensed under the Mulan PSL v1.
# You can use this software according to the terms and conditions of the Mulan PSL v1.
# You may obtain a copy of Mulan PSL v1 at:
#
# http://license.coscl.org.cn/MulanPSL
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR
# FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v1 for more details.
#
menu "IoT link SDK configuration"
comment "you should choose a os kernel first!"
rsource "./os/Kconfig"
rsource "./at/Kconfig"
config CJSON_ENABLE
bool "Enable cJson library."
default y
config DRIVER_ENABLE
bool "Enable IoT Link driver management."
default y
depends on LITEOS_ENABLE || NOVAOS_ENABLE || NEW_OS
rsource "./link_log/Kconfig"
config LINKQUEUE_ENABLE
bool "Enable IoT Link Queue"
default y
config LINKDEMO_ENABLE
bool "Enable IoT Link Demo"
default y
config SECUREC_ENABLE
bool "Enable the secure_c lib"
default n
rsource "./stimer/Kconfig"
rsource "./link_ota/Kconfig"
rsource "./network/Kconfig"
rsource "./oc/Kconfig"
rsource "./shell/Kconfig"
config IOT_LINK_CONFIGFILE
string "The specified Configuration Header"
default "iot_config.h"
endmenu