1# Subsystem configuration options
2
3# Copyright (c) 2016-2017 Intel Corporation
4# Copyright (c) 2021 Nordic Semiconductor
5# SPDX-License-Identifier: Apache-2.0
6
7menu "Subsystems and OS Services"
8
9# zephyr-keep-sorted-start
10source "subsys/bindesc/Kconfig"
11source "subsys/bluetooth/Kconfig"
12source "subsys/canbus/Kconfig"
13source "subsys/console/Kconfig"
14source "subsys/dap/Kconfig"
15source "subsys/debug/Kconfig"
16source "subsys/demand_paging/Kconfig"
17source "subsys/dfu/Kconfig"
18source "subsys/disk/Kconfig"
19source "subsys/dsp/Kconfig"
20source "subsys/emul/Kconfig"
21source "subsys/fb/Kconfig"
22source "subsys/fs/Kconfig"
23source "subsys/input/Kconfig"
24source "subsys/ipc/Kconfig"
25source "subsys/jwt/Kconfig"
26source "subsys/llext/Kconfig"
27source "subsys/logging/Kconfig"
28source "subsys/lorawan/Kconfig"
29source "subsys/mem_mgmt/Kconfig"
30source "subsys/mgmt/Kconfig"
31source "subsys/modbus/Kconfig"
32source "subsys/modem/Kconfig"
33source "subsys/net/Kconfig"
34source "subsys/pm/Kconfig"
35source "subsys/portability/Kconfig"
36source "subsys/random/Kconfig"
37source "subsys/retention/Kconfig"
38source "subsys/rtio/Kconfig"
39source "subsys/sd/Kconfig"
40source "subsys/sensing/Kconfig"
41source "subsys/settings/Kconfig"
42source "subsys/shell/Kconfig"
43source "subsys/sip_svc/Kconfig"
44source "subsys/stats/Kconfig"
45source "subsys/storage/Kconfig"
46source "subsys/task_wdt/Kconfig"
47source "subsys/testsuite/Kconfig"
48source "subsys/timing/Kconfig"
49source "subsys/tracing/Kconfig"
50source "subsys/usb/device/Kconfig"
51source "subsys/usb/device_next/Kconfig"
52source "subsys/usb/host/Kconfig"
53source "subsys/usb/usb_c/Kconfig"
54source "subsys/zbus/Kconfig"
55# zephyr-keep-sorted-stop
56
57config MODULES
58	bool "Make tristate Kconfig options and an 'm' selection available"
59	help
60	  Zephyr supports dynamically loadable code, e.g. using llext. Code,
61	  that can either be built as a part of the system image or as a
62	  loadable extension, can use tristate Kconfig options. For this to work
63	  the CONFIG_MODULES option must be enabled by the project. Enabling
64	  this option alone doesn't change the build on its own, it only allows
65	  using 'm' for tristate Kconfig options.
66
67endmenu
68