1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/Kconfig

155 lines
3.6 KiB
Plaintext
Raw Normal View History

2019-12-06 14:20:31 +01:00
# Copyright (c) 2019 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.
#
menu "System"
2021-02-16 15:58:39 +01:00
rsource "analog_util/Kconfig"
rsource "app_metadata/Kconfig"
2020-09-24 14:13:34 +02:00
rsource "arduino/Kconfig"
2020-07-27 15:21:51 +02:00
rsource "auto_init/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "base64/Kconfig"
2020-07-23 15:52:25 +02:00
rsource "benchmark/Kconfig"
rsource "bhp/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "bitfield/Kconfig"
rsource "bloom/Kconfig"
2022-03-09 09:12:04 +01:00
rsource "bus/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "cb_mux/Kconfig"
2020-11-26 16:02:10 +01:00
rsource "checksum/Kconfig"
rsource "chunked_ringbuffer/Kconfig"
2023-05-19 15:03:42 +02:00
rsource "clif/Kconfig"
2020-11-11 10:38:22 +01:00
rsource "color/Kconfig"
2021-01-20 12:03:36 +01:00
rsource "crypto/Kconfig"
rsource "congure/Kconfig"
rsource "cpp11-compat/Kconfig"
rsource "cpp_new_delete/Kconfig"
2021-09-30 13:38:30 +02:00
rsource "cxx_ctor_guards/Kconfig"
rsource "debug_irq_disable/Kconfig"
2020-04-20 14:44:01 +02:00
rsource "div/Kconfig"
2020-11-11 17:43:53 +01:00
rsource "embunit/Kconfig"
rsource "entropy_source/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "eepreg/Kconfig"
2020-11-11 17:43:53 +01:00
rsource "event/Kconfig"
2021-02-19 00:17:40 +01:00
rsource "fido2/Kconfig"
2020-09-24 15:53:49 +02:00
rsource "fmt/Kconfig"
2021-01-06 17:41:27 +01:00
rsource "frac/Kconfig"
2021-11-19 09:40:06 +01:00
rsource "fs/Kconfig"
2021-01-20 13:17:59 +01:00
rsource "hashes/Kconfig"
2021-01-06 11:10:15 +01:00
rsource "iolist/Kconfig"
2020-04-08 08:56:20 +02:00
rsource "isrpipe/Kconfig"
2022-09-21 16:26:32 +02:00
rsource "libc/Kconfig"
2021-09-22 10:39:37 +02:00
menu "Libc"
choice LIBC_IMPLEMENTATION
bool "Libc implementation"
depends on TEST_KCONFIG
config MODULE_NEWLIB
bool "NewLib"
depends on HAS_NEWLIB
config MODULE_PICOLIBC
bool "Picolibc"
depends on HAS_PICOLIBC
endchoice
config MODULE_LIBC_GETTIMEOFDAY
bool "Support for gettimeofday()"
select ZTIMER64_USEC
2021-09-22 10:39:37 +02:00
rsource "Kconfig.newlib"
rsource "Kconfig.picolibc"
endmenu # Libc
rsource "Kconfig.stdio"
choice LOG
bool "Logging system override"
optional
#modules log_color and log_printfnoformat describe their options
endchoice
2023-04-21 10:34:36 +02:00
rsource "coding/Kconfig"
2023-05-20 15:51:36 +02:00
rsource "ecc/Kconfig"
2023-05-20 16:22:28 +02:00
rsource "evtimer/Kconfig"
rsource "log_color/Kconfig"
rsource "log_printfnoformat/Kconfig"
2021-01-20 14:05:05 +01:00
rsource "luid/Kconfig"
rsource "malloc_thread_safe/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "matstat/Kconfig"
rsource "memarray/Kconfig"
rsource "mineplex/Kconfig"
rsource "net/Kconfig"
2020-11-10 12:53:06 +01:00
rsource "od/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "oneway-malloc/Kconfig"
2020-11-13 16:49:29 +01:00
rsource "phydat/Kconfig"
2023-05-20 16:42:06 +02:00
rsource "pipe/Kconfig"
2020-07-27 17:46:32 +02:00
rsource "pm_layered/Kconfig"
rsource "posix/Kconfig"
2022-10-16 14:05:16 +02:00
rsource "preprocessor/Kconfig"
rsource "progress_bar/Kconfig"
2021-01-06 11:10:15 +01:00
rsource "ps/Kconfig"
2023-08-29 18:43:32 +02:00
rsource "psa_crypto/Kconfig"
2021-01-20 14:15:25 +01:00
rsource "random/Kconfig"
rsource "rtc_utils/Kconfig"
2021-04-03 17:33:14 +02:00
rsource "rust_riotmodules/Kconfig"
2020-11-13 16:49:54 +01:00
rsource "saul_reg/Kconfig"
rsource "schedstatistics/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "sema/Kconfig"
2023-04-21 10:38:24 +02:00
rsource "sema_inv/Kconfig"
rsource "senml/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "seq/Kconfig"
2020-04-29 12:39:33 +02:00
rsource "shell/Kconfig"
2023-05-20 18:34:04 +02:00
rsource "shell_lock/Kconfig"
2023-04-21 10:40:19 +02:00
rsource "ssp/Kconfig"
2020-09-24 15:45:03 +02:00
rsource "test_utils/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "timex/Kconfig"
rsource "tiny_strerror/Kconfig"
2021-12-04 12:00:09 +01:00
rsource "trace/Kconfig"
2023-03-17 12:09:01 +01:00
rsource "trickle/Kconfig"
2020-04-08 09:04:22 +02:00
rsource "tsrb/Kconfig"
2021-02-16 15:58:39 +01:00
rsource "uri_parser/Kconfig"
2020-04-29 12:39:33 +02:00
rsource "usb/Kconfig"
2021-12-06 09:04:53 +01:00
rsource "usb_board_reset/Kconfig"
2023-04-21 12:31:13 +02:00
rsource "ut_process/Kconfig"
2023-04-21 10:42:12 +02:00
rsource "uuid/Kconfig"
2021-11-17 15:50:21 +01:00
rsource "vfs/Kconfig"
2020-04-20 14:45:40 +02:00
rsource "xtimer/Kconfig"
2021-01-07 13:21:25 +01:00
rsource "ztimer/Kconfig"
rsource "ztimer64/Kconfig"
config MODULE_CPP
bool "Use CPP compiler"
depends on TEST_KCONFIG
depends on HAS_CPP
config MODULE_LIBSTDCPP
bool "Use the CPP standard library"
depends on TEST_KCONFIG
depends on HAS_LIBSTDCPP
depends on HAS_CPP
select MODULE_CPP
config MODULE_ATOMIC_UTILS
bool "Atomic access utility functions"
depends on TEST_KCONFIG
config MODULE_SYS
2020-07-27 15:21:51 +02:00
bool
default y
depends on TEST_KCONFIG
help
System module, it serves to pull in all the rest of system modules.
config MODULE_LOG
bool
help
Modules that override the default log implementation should select this.
For more information see core/include/log.h.
2019-12-06 14:20:31 +01:00
endmenu # System