The branch main has been updated by ssaxena: URL: https://cgit.FreeBSD.org/src/commit/?id=03676cafa882c471a29436aae76c8751d451dd07
commit 03676cafa882c471a29436aae76c8751d451dd07 Author: Sumit Saxena <[email protected]> AuthorDate: 2026-06-15 12:22:25 +0000 Commit: Sumit Saxena <[email protected]> CommitDate: 2026-06-15 12:25:05 +0000 if_bnxt: add bnxt logger module files to sys/conf/files for built-in kernel builds The bnxt snapdump and coredump support patches added bnxt_log/{_data}.c. and listed it in sys/modules/bnxt/bnxt_en/Makefile, but missed to add these files in sys/conf/files. Fix up the issue by adding bnxt_log/{_data}.c in sys/conf/files. Fixes: f85e66e655c9 ("if_bnxt/bnxt_re: add support for driver snapdump") --- sys/conf/files | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/conf/files b/sys/conf/files index 324ee35d490d..67f0dcedd346 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1326,6 +1326,8 @@ dev/bnxt/bnxt_en/bnxt_sriov.c optional bnxt iflib pci compile-with "${BNXT_C}" dev/bnxt/bnxt_en/bnxt_sysctl.c optional bnxt iflib pci compile-with "${BNXT_C}" dev/bnxt/bnxt_en/bnxt_txrx.c optional bnxt iflib pci compile-with "${BNXT_C}" dev/bnxt/bnxt_en/bnxt_ulp.c optional bnxt iflib pci compile-with "${BNXT_C}" +dev/bnxt/bnxt_en/bnxt_log.c optional bnxt iflib pci compile-with "${BNXT_C}" +dev/bnxt/bnxt_en/bnxt_log_data.c optional bnxt iflib pci compile-with "${BNXT_C}" dev/bnxt/bnxt_en/if_bnxt.c optional bnxt iflib pci compile-with "${BNXT_C}" dev/bwi/bwimac.c optional bwi dev/bwi/bwiphy.c optional bwi
