aboutsummaryrefslogtreecommitdiff
path: root/Documentation/kbuild/Kconfig.recursion-issue-02
AgeCommit message (Collapse)AuthorFilesLines
2021-10-12docs: use the lore redirector everywhereThorsten Leemhuis1-1/+1
Change all links from using the lkml redirector to the lore redirector, as the kernel.org admin recently indicated: we shouldn't be using lkml.kernel.org anymore because the domain can create confusion, as it indicates it is only valid for messages sent to the LKML; the convention has been to use https://lore.kernel.org/r/msgid for this reason. In this process also change three links from using http to https. Link: https://lore.kernel.org/r/[email protected] CC: Thomas Gleixner <[email protected]> CC: Ingo Molnar <[email protected]> CC: Borislav Petkov <[email protected]> CC: Hu Haowen <[email protected]> CC: Alex Shi <[email protected]> CC: Federico Vaga <[email protected]> Signed-off-by: Thorsten Leemhuis <[email protected]> Reviewed-by: Konstantin Ryabitsev <[email protected]> Link: https://lore.kernel.org/r/5bb55bac6ba10fafab19bf2b21572dd0e2f8cea2.1633593385.git.linux@leemhuis.info Signed-off-by: Jonathan Corbet <[email protected]>
2021-04-25docs: kbuild: Fix a typo in the file Kconfig.recursion-issue-02Bhaskar Chowdhury1-1/+1
s/sematics/semantics/ Signed-off-by: Bhaskar Chowdhury <[email protected]> Acked-by: Randy Dunlap <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
2020-08-10kbuild: Replace HTTP links with HTTPS onesAlexander A. Klimov1-1/+1
Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Deterministic algorithm: For each file: If not .svg: For each line: If doesn't contain `\bxmlns\b`: For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`: If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Signed-off-by: Alexander A. Klimov <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
2015-10-08kbuild: document recursive dependency limitation / resolutionLuis R. Rodriguez1-0/+63
Recursive dependency issues with kconfig are unavoidable due to some limitations with kconfig, since these issues are recurring provide a hint to the user how they can resolve these dependency issues and also document why such limitation exists. While at it also document a bit of future prospects of ways to enhance Kconfig, including providing formal semantics and evaluation of use of a SAT solver. If you're interested in this work or prospects of it check out the kconfig-sat project wiki [0] and mailing list [1]. [0] http://kernelnewbies.org/KernelProjects/kconfig-sat [1] https://groups.google.com/d/forum/kconfig-sat Cc: Geert Uytterhoeven <[email protected]> Cc: James Bottomley <[email protected]> Cc: Josh Triplett <[email protected]> Cc: Paul Bolle <[email protected]> Cc: Herbert Xu <[email protected]> Cc: Takashi Iwai <[email protected]> Cc: "Yann E. MORIN" <[email protected]> Cc: Jonathan Corbet <[email protected]> Cc: Mate Soos <[email protected]> Signed-off-by: Luis R. Rodriguez <[email protected]> Signed-off-by: Michal Marek <[email protected]>