From owner-svn-src-all@freebsd.org Thu Jun 7 11:27:01 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87603FE1E0D; Thu, 7 Jun 2018 11:27:01 +0000 (UTC) (envelope-from jhibbits@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9E1BD8B6B2; Thu, 7 Jun 2018 11:25:37 +0000 (UTC) (envelope-from jhibbits@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F2471F7CC; Thu, 7 Jun 2018 11:25:37 +0000 (UTC) (envelope-from jhibbits@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w57BPbOv070385; Thu, 7 Jun 2018 11:25:37 GMT (envelope-from jhibbits@FreeBSD.org) Received: (from jhibbits@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w57BPbEt070383; Thu, 7 Jun 2018 11:25:37 GMT (envelope-from jhibbits@FreeBSD.org) Message-Id: <201806071125.w57BPbEt070383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhibbits set sender to jhibbits@FreeBSD.org using -f From: Justin Hibbits Date: Thu, 7 Jun 2018 11:25:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r334773 - in head: share/man/man4 sys/modules X-SVN-Group: head X-SVN-Commit-Author: jhibbits X-SVN-Commit-Paths: in head: share/man/man4 sys/modules X-SVN-Commit-Revision: 334773 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2018 11:27:01 -0000 Author: jhibbits Date: Thu Jun 7 11:25:36 2018 New Revision: 334773 URL: https://svnweb.freebsd.org/changeset/base/334773 Log: Build nvme modules for powerpc, and install man pages NVMe builds for powerpc now, so just build modules for all powerpc targets, and install NVMe man pages for all powerpc targets. Modified: head/share/man/man4/Makefile head/sys/modules/Makefile Modified: head/share/man/man4/Makefile ============================================================================== --- head/share/man/man4/Makefile Thu Jun 7 10:58:48 2018 (r334772) +++ head/share/man/man4/Makefile Thu Jun 7 11:25:36 2018 (r334773) @@ -888,6 +888,11 @@ _vmm.4= vmm.4 _nvram2env.4= nvram2env.4 .endif +.if ${MACHINE_CPUARCH} == "powerpc" +_nvd.4= nvd.4 +_nvme.4= nvme.4 +.endif + .if ${MACHINE_ARCH:Marmv[67]*} != "" || ${MACHINE_CPUARCH} == "aarch64" _bcm283x_pwm.4= bcm283x_pwm.4 .endif Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Thu Jun 7 10:58:48 2018 (r334772) +++ head/sys/modules/Makefile Thu Jun 7 11:25:36 2018 (r334773) @@ -781,6 +781,8 @@ _cpufreq= cpufreq _drm= drm _exca= exca _ffec= ffec +_nvd= nvd +_nvme= nvme _pccard= pccard _wi= wi .endif