diff options
author | Ed Maste <emaste@FreeBSD.org> | 2021-09-28 16:58:40 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2022-02-12 19:13:50 +0000 |
commit | e0262ffbc6aef5ff515596ee039d6151719c3926 (patch) | |
tree | 593070d1343de2088a0fca453b42fbc9736acf01 | |
parent | a60685ffbc743e417972390ce6674ce38918a115 (diff) |
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)
-rw-r--r-- | share/man/man4/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
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 |