From 152aa6bf637a58eb9278a974f6378a1436e09292 Mon Sep 17 00:00:00 2001 From: Jan Beran Date: Tue, 29 Jul 2025 13:24:14 +0200 Subject: [PATCH] docs: add link to esp-idf-kconfig migration guide --- docs/en/migration-guides/release-6.x/6.0/build-system.rst | 5 +++++ docs/en/migration-guides/release-6.x/6.0/tools.rst | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/en/migration-guides/release-6.x/6.0/build-system.rst b/docs/en/migration-guides/release-6.x/6.0/build-system.rst index 098d4537cb..42903d4ede 100644 --- a/docs/en/migration-guides/release-6.x/6.0/build-system.rst +++ b/docs/en/migration-guides/release-6.x/6.0/build-system.rst @@ -74,3 +74,8 @@ To explicitly control constructor order, use the ``constructor()`` function attr void foo(void); Replace ``PRIO`` with an integer value. Lower values are executed earlier. This is the preferred method when specific ordering is required. + +Changes in Configuration Files Syntax +------------------------------------- + +ESP-IDF v6 uses esp-idf-kconfig v3, which introduces several changes in the configuration (``Kconfig``) files. For the full list of changes, please refer to the `esp-idf-kconfig migration guide from v2.x to v3.x `_. diff --git a/docs/en/migration-guides/release-6.x/6.0/tools.rst b/docs/en/migration-guides/release-6.x/6.0/tools.rst index 5e6a2e5767..a4feaf45b7 100644 --- a/docs/en/migration-guides/release-6.x/6.0/tools.rst +++ b/docs/en/migration-guides/release-6.x/6.0/tools.rst @@ -31,7 +31,6 @@ All commands with eFuse functionality now require a serial port to be specified. For all ``idf.py efuse*`` commands, you now need to specify the serial port with the ``--port`` argument (or ``ESPPORT`` environment variable). If the port is not specified, the command will fail with an error message. - Python 3.9 Deprecation ---------------------- @@ -40,3 +39,8 @@ Python 3.9 is no longer supported. The minimum required Python version is now 3. Refer to the official `Python documentation `_ for instructions on upgrading Python for your operating system. For Linux users, it is recommended to upgrade to a newer version of your distribution that includes a supported Python version. + +Changes in Configuration Files Syntax +------------------------------------- + +ESP-IDF v6 uses esp-idf-kconfig v3, which introduces several changes in the configuration (``Kconfig``) files. For the full list of changes, please refer to the `esp-idf-kconfig migration guide from v2.x to v3.x `_.