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/debug/Kconfig" 15source "subsys/demand_paging/Kconfig" 16source "subsys/dfu/Kconfig" 17source "subsys/disk/Kconfig" 18source "subsys/dsp/Kconfig" 19source "subsys/emul/Kconfig" 20source "subsys/fb/Kconfig" 21source "subsys/fs/Kconfig" 22source "subsys/input/Kconfig" 23source "subsys/ipc/Kconfig" 24source "subsys/jwt/Kconfig" 25source "subsys/llext/Kconfig" 26source "subsys/logging/Kconfig" 27source "subsys/lorawan/Kconfig" 28source "subsys/mem_mgmt/Kconfig" 29source "subsys/mgmt/Kconfig" 30source "subsys/modbus/Kconfig" 31source "subsys/modem/Kconfig" 32source "subsys/net/Kconfig" 33source "subsys/pm/Kconfig" 34source "subsys/portability/Kconfig" 35source "subsys/random/Kconfig" 36source "subsys/retention/Kconfig" 37source "subsys/rtio/Kconfig" 38source "subsys/sd/Kconfig" 39source "subsys/sensing/Kconfig" 40source "subsys/settings/Kconfig" 41source "subsys/shell/Kconfig" 42source "subsys/sip_svc/Kconfig" 43source "subsys/stats/Kconfig" 44source "subsys/storage/Kconfig" 45source "subsys/task_wdt/Kconfig" 46source "subsys/testsuite/Kconfig" 47source "subsys/timing/Kconfig" 48source "subsys/tracing/Kconfig" 49source "subsys/usb/device/Kconfig" 50source "subsys/usb/device_next/Kconfig" 51source "subsys/usb/host/Kconfig" 52source "subsys/usb/usb_c/Kconfig" 53source "subsys/zbus/Kconfig" 54# zephyr-keep-sorted-stop 55 56config MODULES 57 bool "Make tristate Kconfig options and an 'm' selection available" 58 help 59 Zephyr supports dynamically loadable code, e.g. using llext. Code, 60 that can either be built as a part of the system image or as a 61 loadable extension, can use tristate Kconfig options. For this to work 62 the CONFIG_MODULES option must be enabled by the project. Enabling 63 this option alone doesn't change the build on its own, it only allows 64 using 'm' for tristate Kconfig options. 65 66endmenu 67