svn commit: r203755 - projects/ppc64/sys/modules

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Feb 10 15:12:37 UTC 2010


Author: nwhitehorn
Date: Wed Feb 10 15:12:36 2010
New Revision: 203755
URL: http://svn.freebsd.org/changeset/base/203755

Log:
  Add opensolaris and zfs modules to the build on powerpc64, and add tmpfs
  on both powerpc and powerpc64, since it works just fine. The tmpfs bit
  should be merged to HEAD soon.
  
  Committed from: a ppc64 system

Modified:
  projects/ppc64/sys/modules/Makefile

Modified: projects/ppc64/sys/modules/Makefile
==============================================================================
--- projects/ppc64/sys/modules/Makefile	Wed Feb 10 13:48:34 2010	(r203754)
+++ projects/ppc64/sys/modules/Makefile	Wed Feb 10 15:12:36 2010	(r203755)
@@ -604,6 +604,16 @@ _cpufreq=	cpufreq
 _nvram=		powermac_nvram
 _smbfs=		smbfs
 _sound=		sound
+_tmpfs=		tmpfs
+.endif
+
+.if ${MACHINE_ARCH} == "powerpc64"
+.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
+_opensolaris=	opensolaris
+.endif
+.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
+_zfs=		zfs
+.endif
 .endif
 
 .if ${MACHINE_ARCH} == "sparc64"


More information about the svn-src-projects mailing list