From 4c99836ac72abb3ec64ee801ac5758ae70cf9a9b Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Wed, 29 Apr 2026 07:58:19 -0700 Subject: [PATCH] kerneldoc: also ingest .md (markdown files) The doxygen tooling has supported ingesting markdown files for a number of years. Adding this option allows them to be ingested into the subsys builds. Reviewed by: netchild Differential Revision: https://reviews.freebsd.org/D56652 --- tools/kerneldoc/subsys/common-Doxyfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/kerneldoc/subsys/common-Doxyfile b/tools/kerneldoc/subsys/common-Doxyfile index 2df0506145f..2775ef9f9cd 100644 --- a/tools/kerneldoc/subsys/common-Doxyfile +++ b/tools/kerneldoc/subsys/common-Doxyfile @@ -104,6 +104,7 @@ FILE_PATTERNS = *.c \ *.inc \ *.m \ *.mm \ + *.md \ *.dox \ *.C \ *.CC \