From 29d07d6020eb2035c22142e783c6ecbbc9185405 Mon Sep 17 00:00:00 2001 From: Fabian Blatz Date: Wed, 9 Aug 2023 10:30:15 +0200 Subject: [PATCH] scripts: ci: check_compliance: Replace dead Kconfig doc link Update the link to the Kconfig documentation page. Signed-off-by: Fabian Blatz --- scripts/ci/check_compliance.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/ci/check_compliance.py b/scripts/ci/check_compliance.py index aa3daf2f572ed8..8a70ffabeeb23d 100755 --- a/scripts/ci/check_compliance.py +++ b/scripts/ci/check_compliance.py @@ -265,7 +265,7 @@ class KconfigCheck(ComplianceTest): for example using undefined Kconfig variables. """ name = "Kconfig" - doc = "See https://docs.zephyrproject.org/latest/guides/kconfig/index.html for more details." + doc = "See https://docs.zephyrproject.org/latest/build/kconfig/tips.html for more details." path_hint = "" def run(self, full=True, no_modules=False): @@ -717,7 +717,7 @@ class KconfigBasicCheck(KconfigCheck): references inside the Kconfig tree. """ name = "KconfigBasic" - doc = "See https://docs.zephyrproject.org/latest/guides/kconfig/index.html for more details." + doc = "See https://docs.zephyrproject.org/latest/build/kconfig/tips.html for more details." path_hint = "" def run(self): @@ -730,7 +730,7 @@ class KconfigBasicNoModulesCheck(KconfigCheck): defined only in a module. """ name = "KconfigBasicNoModules" - doc = "See https://docs.zephyrproject.org/latest/guides/kconfig/index.html for more details." + doc = "See https://docs.zephyrproject.org/latest/build/kconfig/tips.html for more details." path_hint = "" def run(self): super().run(full=False, no_modules=True) @@ -775,7 +775,7 @@ def check_kconfig_header(self, fname): if re.match(r"\s*#\s*(K|k)config[\w.-]*\s*-", contents): self.failure(f""" Please use this format for the header in '{fname}' (see -https://docs.zephyrproject.org/latest/guides/kconfig/index.html#header-comments-and-other-nits): +https://docs.zephyrproject.org/latest/build/kconfig/tips.html#header-comments-and-other-nits): # (Blank line)