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