svn commit: r334773 - in head: share/man/man4 sys/modules

Justin Hibbits jhibbits at FreeBSD.org
Thu Jun 7 11:27:01 UTC 2018


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


More information about the svn-src-all mailing list