Date: Sat, 13 Jul 2013 07:16:46 +0000 (UTC) From: Justin Hibbits <jhibbits@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253315 - head/sys/modules Message-ID: <201307130716.r6D7GkAN029095@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhibbits Date: Sat Jul 13 07:16:45 2013 New Revision: 253315 URL: http://svnweb.freebsd.org/changeset/base/253315 Log: Clean up the modules list for PowerPC. powerpc64 has MACHINE_CPUARCH of powerpc. While here, sort the list. Modified: head/sys/modules/Makefile Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Sat Jul 13 04:25:03 2013 (r253314) +++ head/sys/modules/Makefile Sat Jul 13 07:16:45 2013 (r253315) @@ -808,23 +808,24 @@ _cardbus= cardbus _cbb= cbb _cfi= cfi _cpufreq= cpufreq +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_cyclic= cyclic +.endif _drm= drm +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_dtrace= dtrace +.endif _exca= exca _nvram= powermac_nvram _pccard= pccard _smbfs= smbfs _sound= sound -_cyclic= cyclic -_dtrace= dtrace +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) _opensolaris= opensolaris .endif +.endif .if ${MACHINE_ARCH} == "powerpc64" -.if ${MK_CDDL} != "no" || defined(ALL_MODULES) -_cyclic= cyclic -_dtrace= dtrace -_opensolaris= opensolaris -.endif .if ${MK_ZFS} != "no" || defined(ALL_MODULES) _zfs= zfs .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307130716.r6D7GkAN029095>