Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Jun 2009 02:37:06 +0000 (UTC)
From:      Weongyo Jeong <weongyo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r193195 - head/sys/modules/usb
Message-ID:  <200906010237.n512b6Qc061550@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: weongyo
Date: Mon Jun  1 02:37:06 2009
New Revision: 193195
URL: http://svn.freebsd.org/changeset/base/193195

Log:
  connect urtw(4) to the amd64/i386 build that it's not tested on the big
  endian machines yet.

Modified:
  head/sys/modules/usb/Makefile

Modified: head/sys/modules/usb/Makefile
==============================================================================
--- head/sys/modules/usb/Makefile	Mon Jun  1 01:51:37 2009	(r193194)
+++ head/sys/modules/usb/Makefile	Mon Jun  1 02:37:06 2009	(r193195)
@@ -27,7 +27,7 @@
 
 SUBDIR = usb
 SUBDIR += ehci musb ohci uhci uss820dci ${_at91dci} ${_atmegadci}
-SUBDIR += rum uath upgt ural zyd
+SUBDIR += rum uath upgt ural zyd ${_urtw}
 SUBDIR += uhid ukbd ums udbp ufm
 SUBDIR += ucom u3g uark ubsa ubser uchcom ucycom ufoma uftdi ugensa uipaq ulpt \
 	  umct umodem umoscom uplcom uslcom uvisor uvscom
@@ -35,9 +35,17 @@ SUBDIR += uether aue axe cdce cue kue ru
 SUBDIR += usfs umass urio
 SUBDIR += quirk template
 
+.if ${MACHINE_ARCH} == "amd64"
+_urtw=		urtw
+.endif
+
 .if ${MACHINE_ARCH} == "arm"
 _at91dci=	at91dci
 _atmegadci=	atmegadci
 .endif
 
+.if ${MACHINE_ARCH} == "i386"
+_urtw=		urtw
+.endif
+
 .include <bsd.subdir.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906010237.n512b6Qc061550>