Date: Sat, 12 Feb 2022 19:14:22 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: e0262ffbc6ae - stable/13 - mgb: Connect if_mgb module to the build Message-ID: <202202121914.21CJEM9H043413@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=e0262ffbc6aef5ff515596ee039d6151719c3926 commit e0262ffbc6aef5ff515596ee039d6151719c3926 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2021-09-28 16:58:40 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2022-02-12 19:13:50 +0000 mgb: Connect if_mgb module to the build It supports the following Microchip devices: LAN7430 PCIe Gigabit Ethernet controller with PHY LAN7431 PCIe Gigabit Ethernet controller with RGMII interface The driver has a number of caveats and limitations, but is functional. Relnotes: Yes Sponsored by: The FreeBSD Foundation (cherry picked from commit 543df609072fe49079c36d6bee510e1645edde3a) --- share/man/man4/Makefile | 2 ++ sys/modules/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 4a8bb061a3c5..7bc3900a6172 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -304,6 +304,7 @@ MAN= aac.4 \ mem.4 \ meteor.4 \ mfi.4 \ + ${_mgb.4} \ miibus.4 \ mld.4 \ mlx.4 \ @@ -836,6 +837,7 @@ _ipmi.4= ipmi.4 _io.4= io.4 _itwd.4= itwd.4 _linux.4= linux.4 +_mgb.4= mgb.4 _nda.4= nda.4 _ndis.4= ndis.4 _nfe.4= nfe.4 diff --git a/sys/modules/Makefile b/sys/modules/Makefile index d1b143d3bc5b..79ede8e571e4 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -237,6 +237,7 @@ SUBDIR= \ ${_malo} \ md \ mdio \ + ${_mgb} \ mem \ mfi \ mii \ @@ -660,6 +661,7 @@ _ixv= ixv .if ${MK_SOURCELESS_UCODE} != "no" _lio= lio .endif +_mgb= mgb _nctgpio= nctgpio _ndis= ndis _ntb= ntb
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202121914.21CJEM9H043413>