From a8a392807e1d3908bb53e90d35aae8558e2b96d1 Mon Sep 17 00:00:00 2001 From: Artem <7541981+efogdev@users.noreply.github.com> Date: Tue, 5 Aug 2025 02:20:39 +0300 Subject: [PATCH] chore(docs): correct a misleading _defconfig description (#3015) * docs: correct a misleading _defconfig description * chore(docs): improve _defconfig description Co-authored-by: Joel Spadin --------- Co-authored-by: Joel Spadin --- docs/docs/config/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/docs/config/index.md b/docs/docs/config/index.md index d449f4ddf..a92944b55 100644 --- a/docs/docs/config/index.md +++ b/docs/docs/config/index.md @@ -78,7 +78,9 @@ CONFIG_EC11=y CONFIG_EC11_TRIGGER_GLOBAL_THREAD=y ``` -The list of available settings is determined by various files in ZMK whose names start with `Kconfig`. Files ending with `_defconfig` use the same syntax, but are intended for setting configuration specific to the hardware which users typically won't need to change. Note that options are _not_ prefixed with `CONFIG_` in these files. +Files ending with `_defconfig` use the same syntax as `.conf` files. They set the default configuration for the hardware, which is then overridden by anything in a `.conf` file. + +The list of available settings is determined by various files in ZMK whose names start with `Kconfig`. Note that options are _not_ prefixed with `CONFIG_` in these files. See [Zephyr's Kconfig documentation](https://docs.zephyrproject.org/3.5.0/build/kconfig/index.html) for more details on Kconfig files.