From owner-dev-commits-src-all@freebsd.org Wed Sep 29 01:18:57 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B26166AF8E5; Wed, 29 Sep 2021 01:18:57 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HJz6T4g77z3jjP; Wed, 29 Sep 2021 01:18:57 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 801897146; Wed, 29 Sep 2021 01:18:57 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18T1Iva2003473; Wed, 29 Sep 2021 01:18:57 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18T1IvqG003472; Wed, 29 Sep 2021 01:18:57 GMT (envelope-from git) Date: Wed, 29 Sep 2021 01:18:57 GMT Message-Id: <202109290118.18T1IvqG003472@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Ed Maste Subject: git: 543df609072f - main - mgb: Connect if_mgb module to the build MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: emaste X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 543df609072fe49079c36d6bee510e1645edde3a Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Sep 2021 01:18:57 -0000 The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=543df609072fe49079c36d6bee510e1645edde3a commit 543df609072fe49079c36d6bee510e1645edde3a Author: Ed Maste AuthorDate: 2021-09-28 16:58:40 +0000 Commit: Ed Maste CommitDate: 2021-09-29 01:16:40 +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 --- 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 d83f4d03d9db..4dad9b11ec22 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -297,6 +297,7 @@ MAN= aac.4 \ mem.4 \ meteor.4 \ mfi.4 \ + ${_mgb.4} \ miibus.4 \ mld.4 \ mlx.4 \ @@ -816,6 +817,7 @@ _igc.4= igc.4 _imcsmb.4= imcsmb.4 _io.4= io.4 _itwd.4= itwd.4 +_mgb.4= mgb.4 _nda.4= nda.4 _nfe.4= nfe.4 _nfsmb.4= nfsmb.4 diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 2c0c9b48941d..00f5bb281872 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -232,6 +232,7 @@ SUBDIR= \ ${_mana} \ md \ mdio \ + ${_mgb} \ mem \ mfi \ mii \ @@ -652,6 +653,7 @@ _ixv= ixv _lio= lio .endif _mana= mana +_mgb= mgb _nctgpio= nctgpio _ntb= ntb _ocs_fc= ocs_fc