forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
67 lines (52 loc) · 1.58 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
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menuconfig MODULE_CORE
bool "RIOT Core"
default y
depends on TEST_KCONFIG
help
RIOT's core module. Only change this if you know what you are doing. If
unsure, say Y.
if MODULE_CORE
config MODULE_CORE_IDLE_THREAD
bool
prompt "Use Idle thread" if HAS_NO_IDLE_THREAD
default y if !HAS_NO_IDLE_THREAD
help
Select y to include the Idle thread. This is mandatory for some CPUs.
config MODULE_CORE_INIT
bool "Kernel initialization module"
default y
config MODULE_CORE_MBOX
bool "Kernel message box module"
config MODULE_CORE_MSG
bool "Kernel messaging module"
default y
config MODULE_CORE_MSG_BUS
bool "Messaging Bus module"
help
Messaging Bus API for inter process message broadcast.
config MODULE_CORE_PANIC
bool "Kernel crash handling module"
default y
config MODULE_CORE_THREAD_FLAGS
bool "Thread flags"
config MODULE_SCHED_CB
bool "Callback support on the scheduler"
endif # MODULE_CORE
menuconfig KCONFIG_USEMODULE_CORE
bool "Configure RIOT Core"
depends on USEMODULE_CORE
help
Configure RIOT Core using Kconfig.
if KCONFIG_USEMODULE_CORE
config THREAD_NAMES
bool "Store thread name strings"
help
By default, thread names are not stored if DEVELHELP is not used.
Use this parameter to store them for non-devel builds.
endif # KCONFIG_USEMODULE_CORE