Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jun 2026 12:28:49 +0000
From:      Sumit Saxena <ssaxena@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 03676cafa882 - main - if_bnxt: add bnxt logger module files to sys/conf/files for built-in kernel builds
Message-ID:  <6a2ff001.23d17.661deb7a@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by ssaxena:

URL: https://cgit.FreeBSD.org/src/commit/?id=03676cafa882c471a29436aae76c8751d451dd07

commit 03676cafa882c471a29436aae76c8751d451dd07
Author:     Sumit Saxena <ssaxena@FreeBSD.org>
AuthorDate: 2026-06-15 12:22:25 +0000
Commit:     Sumit Saxena <ssaxena@FreeBSD.org>
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


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a2ff001.23d17.661deb7a>