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