svn commit: r207199 - stable/7/sys/modules
Warner Losh
imp at FreeBSD.org
Sun Apr 25 19:18:26 UTC 2010
Author: imp
Date: Sun Apr 25 19:18:26 2010
New Revision: 207199
URL: http://svn.freebsd.org/changeset/base/207199
Log:
Merge the ARM module building stuff from current (not done as a merge on
the makefile becuase there's too many conflicts).
Modified:
stable/7/sys/modules/Makefile
Modified: stable/7/sys/modules/Makefile
==============================================================================
--- stable/7/sys/modules/Makefile Sun Apr 25 19:13:08 2010 (r207198)
+++ stable/7/sys/modules/Makefile Sun Apr 25 19:18:26 2010 (r207199)
@@ -36,7 +36,7 @@ SUBDIR= ${_3dfx} \
${_auxio} \
${_awi} \
axe \
- bce \
+ ${_bce} \
bfe \
bge \
${_bios} \
@@ -68,7 +68,7 @@ SUBDIR= ${_3dfx} \
${_cs} \
${_ctau} \
cue \
- cxgb \
+ ${_cxgb} \
${_cx} \
${_cyclic} \
dc \
@@ -269,7 +269,7 @@ SUBDIR= ${_3dfx} \
${_stg} \
stge \
${_streams} \
- sym \
+ ${_sym} \
${_syscons} \
sysvipc \
ti \
@@ -282,7 +282,7 @@ SUBDIR= ${_3dfx} \
txp \
u3g \
uark \
- uart \
+ ${_uart} \
ubsa \
ubsec \
ubser \
@@ -341,11 +341,18 @@ SUBDIR= ${_3dfx} \
zlib \
zyd
-.if ${MACHINE_ARCH} != "powerpc"
+.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "arm"
_syscons= syscons
_vpo= vpo
.endif
+.if ${MACHINE_ARCH} != "arm"
+_bce= bce
+_cxgb= cxgb
+_sym= sym
+_uart= uart
+.endif
+
.if defined(ALL_MODULES)
_ufs= ufs
.endif
More information about the svn-src-stable
mailing list