From e78ccdf4b803a0b11861a7a8c64786d4beb389f6 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sat, 26 Jan 2019 09:06:25 -0500 Subject: [PATCH] doc: rename kconfig section kconfig entries are options, symbols is probably an internal name to kconfig. Signed-off-by: Anas Nashif --- doc/application/application.rst | 6 +++--- doc/scripts/genrest.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/application/application.rst b/doc/application/application.rst index 1624598aa5..6d263f0a28 100644 --- a/doc/application/application.rst +++ b/doc/application/application.rst @@ -235,7 +235,7 @@ Follow these steps to create a new application directory. (Refer to directory, and enable or disable Kconfig features as needed. You can use existing :ref:`samples-and-demos` to get started with Kconfig variables you are interested in. See :ref:`application_kconfig` for more details, and - :ref:`configuration` for a complete list of available options. + :ref:`configuration_options` for a complete list of available options. #. Optionally, you can also configure any Device Tree overlays needed by your application. Zephyr uses the same Device Tree system as the Linux kernel, @@ -1114,7 +1114,7 @@ For some tips and general recommendations when writing Kconfig files, see the :ref:`kconfig_tips_and_tricks` page. For information on available kernel configuration options, including -inter-dependencies between options, see the :ref:`configuration`. +inter-dependencies between options, see the :ref:`configuration_options`. .. note:: @@ -1323,7 +1323,7 @@ to a whitespace-separated list of your overlay files. The Zephyr build system begins creation of a device tree by running the C preprocessor on a file which includes the following: -#. Configuration options from :ref:`Kconfig `. +#. Configuration options from :ref:`Kconfig `. #. The board's device tree source file, which by default is the Zephyr file :file:`boards///.dts`. (This location diff --git a/doc/scripts/genrest.py b/doc/scripts/genrest.py index 895442a84a..2d5f4a84ae 100644 --- a/doc/scripts/genrest.py +++ b/doc/scripts/genrest.py @@ -46,10 +46,10 @@ def expr_str(expr): return kconfiglib.expr_str(expr, rst_link) -INDEX_RST_HEADER = """.. _configuration: +INDEX_RST_HEADER = """.. _configuration_options: -Configuration Symbol Reference -############################## +Configuration Options +##################### Introduction ************