-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
67 lines (48 loc) · 1005 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
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright (c) 2022-2023 Golioth, Inc.
# SPDX-License-Identifier: Apache-2.0
mainmenu "Golioth application options"
if DNS_RESOLVER
config DNS_SERVER_IP_ADDRESSES
default y
config DNS_SERVER1
default "1.1.1.1"
endif # DNS_RESOLVER
configdefault MCUBOOT_SHELL
bool
default y
# Workaround for not being able to have commas in macro arguments
DT_CHOSEN_ZEPHYR_DISPLAY := zephyr,display
configdefault LVGL
bool
default y if $(dt_chosen_enabled,$(DT_CHOSEN_ZEPHYR_DISPLAY))
configdefault LV_MEM_CUSTOM
bool
default y
configdefault LV_USE_LOG
bool
default y
configdefault LV_USE_LABEL
bool
default y
configdefault LV_USE_BTN
bool
default y
configdefault LV_USE_ARC
bool
default y
configdefault LV_USE_IMG
bool
default y
configdefault LV_USE_MONKEY
bool
default y
configdefault LV_FONT_MONTSERRAT_14
bool
default y
configdefault LV_Z_SHELL
bool
default y
configdefault LV_Z_MEM_POOL_SIZE
int
default 16384
source "Kconfig.zephyr"