CVS commit: src/sys/dev/pci

2014-10-01 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Oct  1 08:37:48 UTC 2014

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
Add Intel Atom Z36xx and Z37xx devices from the datasheet.


To generate a diff of this commit:
cvs rdiff -u -r1.1202 -r1.1203 src/sys/dev/pci/pcidevs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/pcidevs
diff -u src/sys/dev/pci/pcidevs:1.1202 src/sys/dev/pci/pcidevs:1.1203
--- src/sys/dev/pci/pcidevs:1.1202	Thu Sep 25 03:28:57 2014
+++ src/sys/dev/pci/pcidevs	Wed Oct  1 08:37:48 2014
@@ -1,4 +1,4 @@
-$NetBSD: pcidevs,v 1.1202 2014/09/25 03:28:57 msaitoh Exp $
+$NetBSD: pcidevs,v 1.1203 2014/10/01 08:37:48 msaitoh Exp $
 
 /*
  * Copyright (c) 1995, 1996 Christopher G. Demetriou
@@ -2653,17 +2653,36 @@ product INTEL S1200_S1240	0x0c73	Atom S1
 product INTEL S1200_S1260	0x0c75	Atom S1260 Internal
 product INTEL BAYTRAIL_HB	0x0f00	Bay Trail Processor Transaction Router
 product INTEL BAYTRAIL_HDA	0x0f04	Bay Trail HD Audio
+product INTEL BAYTRAIL_SIO2_DMA	0x0f06	Bay Trail Serial IO (DMA)
+product INTEL BAYTRAIL_SIO2_PWM1 0x0f08	Bay Trail Serial IO (PWM)
+product INTEL BAYTRAIL_SIO2_PWM2 0x0f09	Bay Trail Serial IO (PWM)
+product INTEL BAYTRAIL_SIO2_UART1 0x0f0a Bay Trail Serial IO (HSUART)
+product INTEL BAYTRAIL_SIO2_UART2 0x0f0c Bay Trail Serial IO (HSUART)
+product INTEL BAYTRAIL_SIO2_SPI	0x0f0e	Bay Trail Serial IO (SPI)
 product INTEL BAYTRAIL_PCU_SMB	0x0f12	Bay Trail PCU SMBus
-product INTEL BAYTRAIL_SCC	0x0f16	Bay Trail Storage Control Cluster
+product INTEL BAYTRAIL_SCC_MMC	0x0f14	Bay Trail Storage Control Cluster(MMC)
+product INTEL BAYTRAIL_SCC_SDIO	0x0f15	Bay Trail Storage Control Cluster(SDIO)
+product INTEL BAYTRAIL_SCC	0x0f16	Bay Trail Storage Control Cluster(SD)
 product INTEL BAYTRAIL_TXE	0x0f18	Bay Trail Trusted Execution Engine
 product INTEL BAYTRAIL_PCU_LPC	0x0f1c	Bay Trail LPC Interface Bridge
 product INTEL BAYTRAIL_SATA_IDE_0 0x0f20 Bay Trail SATA (IDE)
 product INTEL BAYTRAIL_SATA_IDE_1 0x0f21 Bay Trail SATA (IDE)
 product INTEL BAYTRAIL_SATA_AHCI_0 0x0f22 Bay Trail SATA (AHCI)
 product INTEL BAYTRAIL_SATA_AHCI_1 0x0f23 Bay Trail SATA (AHCI)
+product INTEL BAYTRAIL_LPEA	0x0f28	Bay Trail Low Power Engine Audio
 product INTEL BAYTRAIL_IGD	0x0f31	Bay Trail Integrated Graphics Device
 product INTEL BAYTRAIL_EHCI	0x0f34	Bay Trail USB EHCI
 product INTEL BAYTRAIL_XHCI	0x0f35	Bay Trail USB xHCI
+product INTEL BAYTRAIL_USB_DEV	0x0f37	Bay Trail USB device
+product INTEL BAYTRAIL_CISP	0x0f38	Bay Trail Camera Image Signal Processor
+product INTEL BAYTRAIL_SIO_DMA	0x0f40	Bay Trail Serial IO (DMA)
+product INTEL BAYTRAIL_SIO_I2C1	0x0f41	Bay Trail Serial IO (I2C)
+product INTEL BAYTRAIL_SIO_I2C2	0x0f42	Bay Trail Serial IO (I2C)
+product INTEL BAYTRAIL_SIO_I2C3	0x0f43	Bay Trail Serial IO (I2C)
+product INTEL BAYTRAIL_SIO_I2C4	0x0f44	Bay Trail Serial IO (I2C)
+product INTEL BAYTRAIL_SIO_I2C5	0x0f45	Bay Trail Serial IO (I2C)
+product INTEL BAYTRAIL_SIO_I2C6	0x0f46	Bay Trail Serial IO (I2C)
+product INTEL BAYTRAIL_SIO_I2C7	0x0f47	Bay Trail Serial IO (I2C)
 product INTEL BAYTRAIL_PCIE_1	0x0f48	Bay Trail PCIE Root Port
 product INTEL BAYTRAIL_PCIE_2	0x0f4a	Bay Trail PCIE Root Port
 product INTEL BAYTRAIL_PCIE_3	0x0f4c	Bay Trail PCIE Root Port



CVS commit: [netbsd-7] src/sys/dev/sdmmc

2014-10-01 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct  1 08:53:43 UTC 2014

Modified Files:
src/sys/dev/sdmmc [netbsd-7]: sdhc.c

Log Message:
Pull up following revision(s) (requested by jmcneill in ticket #123):
sys/dev/sdmmc/sdhc.c: revision 1.48
Don't check slot type for pre-3.0 controllers, the bits were reserved at
the time. If an older controller advertises 1.8V support, just use it.
This fixes high-speed mode support for me on BeagleBone Black.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.44.2.1 src/sys/dev/sdmmc/sdhc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/sdmmc/sdhc.c
diff -u src/sys/dev/sdmmc/sdhc.c:1.44 src/sys/dev/sdmmc/sdhc.c:1.44.2.1
--- src/sys/dev/sdmmc/sdhc.c:1.44	Sat May 24 12:10:32 2014
+++ src/sys/dev/sdmmc/sdhc.c	Wed Oct  1 08:53:43 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: sdhc.c,v 1.44 2014/05/24 12:10:32 hkenken Exp $	*/
+/*	$NetBSD: sdhc.c,v 1.44.2.1 2014/10/01 08:53:43 martin Exp $	*/
 /*	$OpenBSD: sdhc.c,v 1.25 2009/01/13 19:44:20 grange Exp $	*/
 
 /*
@@ -23,7 +23,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: sdhc.c,v 1.44 2014/05/24 12:10:32 hkenken Exp $);
+__KERNEL_RCSID(0, $NetBSD: sdhc.c,v 1.44.2.1 2014/10/01 08:53:43 martin Exp $);
 
 #ifdef _KERNEL_OPT
 #include opt_sdmmc.h
@@ -353,8 +353,9 @@ sdhc_host_found(struct sdhc_softc *sc, b
 	/*
 	 * Determine SD bus voltage levels supported by the controller.
 	 */
-	if (ISSET(caps, SDHC_EMBEDDED_SLOT) 
-	ISSET(caps, SDHC_VOLTAGE_SUPP_1_8V)) {
+	if (ISSET(caps, SDHC_VOLTAGE_SUPP_1_8V) 
+	(hp-specver  SDHC_SPEC_VERS_300 ||
+	 ISSET(caps, SDHC_EMBEDDED_SLOT))) {
 		SET(hp-ocr, MMC_OCR_1_7V_1_8V | MMC_OCR_1_8V_1_9V);
 	}
 	if (ISSET(caps, SDHC_VOLTAGE_SUPP_3_0V)) {



CVS commit: [netbsd-7] src/doc

2014-10-01 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct  1 08:54:47 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #123


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.39 -r1.1.2.40 src/doc/CHANGES-7.0

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-7.0
diff -u src/doc/CHANGES-7.0:1.1.2.39 src/doc/CHANGES-7.0:1.1.2.40
--- src/doc/CHANGES-7.0:1.1.2.39	Tue Sep 30 18:23:20 2014
+++ src/doc/CHANGES-7.0	Wed Oct  1 08:54:46 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-7.0,v 1.1.2.39 2014/09/30 18:23:20 martin Exp $
+# $NetBSD: CHANGES-7.0,v 1.1.2.40 2014/10/01 08:54:46 martin Exp $
 
 A complete list of changes from the initial NetBSD 7.0 branch on 11 Aug 2014
 until the 7.0 release:
@@ -1000,3 +1000,10 @@ lib/libc/stdio/vsnprintf_ss.c			1.13
 
 	Return EOVERFLOW like FreeBSD does if the buffer size exceeds INT_MAX.
 	[christos, ticket #122]
+
+sys/dev/sdmmc/sdhc.c1.48
+
+	Don't check slot type for pre-3.0 controllers, the bits were
+	reserved at the time. If an older controller advertises 1.8V
+	support, just use it.
+	[jmcneill, ticket #123]



CVS commit: src

2014-10-01 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Oct  1 09:30:58 UTC 2014

Modified Files:
src/distrib/sets/lists/xbase: shl.mi
src/distrib/sets/lists/xdebug: shl.mi
src/external/mit/xorg/lib/libxcb: xcb.mk
src/external/mit/xorg/lib/libxcb/libxcb: Makefile
src/external/mit/xorg/lib/libxcb/randr: Makefile
src/external/mit/xorg/lib/libxcb/sync: Makefile

Log Message:
Fix SHLIB_MAJOR to match xorg and fix linking against libxcb-sync which
broke kwin for me.


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/distrib/sets/lists/xbase/shl.mi
cvs rdiff -u -r1.14 -r1.15 src/distrib/sets/lists/xdebug/shl.mi
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/lib/libxcb/xcb.mk
cvs rdiff -u -r1.5 -r1.6 src/external/mit/xorg/lib/libxcb/libxcb/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/lib/libxcb/randr/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/lib/libxcb/sync/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/xbase/shl.mi
diff -u src/distrib/sets/lists/xbase/shl.mi:1.55 src/distrib/sets/lists/xbase/shl.mi:1.56
--- src/distrib/sets/lists/xbase/shl.mi:1.55	Thu Mar 20 09:05:28 2014
+++ src/distrib/sets/lists/xbase/shl.mi	Wed Oct  1 09:30:58 2014
@@ -1,4 +1,4 @@
-# $NetBSD: shl.mi,v 1.55 2014/03/20 09:05:28 mrg Exp $
+# $NetBSD: shl.mi,v 1.56 2014/10/01 09:30:58 skrll Exp $
 #
 # Note: don't delete entries from here - mark them as obsolete instead.
 #
@@ -376,8 +376,8 @@
 ./usr/X11R7/lib/libxcb-property.so.1		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-property.so.1.0		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-randr.so			-unknown-		xorg
-./usr/X11R7/lib/libxcb-randr.so.0		-unknown-		xorg
-./usr/X11R7/lib/libxcb-randr.so.0.1		-unknown-		xorg
+./usr/X11R7/lib/libxcb-randr.so.1		-unknown-		xorg
+./usr/X11R7/lib/libxcb-randr.so.1.0		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-record.so		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-record.so.0		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-record.so.0.1		-unknown-		xorg
@@ -403,8 +403,8 @@
 ./usr/X11R7/lib/libxcb-shm.so.0			-unknown-		xorg
 ./usr/X11R7/lib/libxcb-shm.so.0.1		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-sync.so			-unknown-		xorg
-./usr/X11R7/lib/libxcb-sync.so.0		-unknown-		xorg
-./usr/X11R7/lib/libxcb-sync.so.0.1		-unknown-		xorg
+./usr/X11R7/lib/libxcb-sync.so.1		-unknown-		xorg
+./usr/X11R7/lib/libxcb-sync.so.1.0		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-xevie.so			-unknown-		xorg
 ./usr/X11R7/lib/libxcb-xevie.so.0		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-xevie.so.0.1		-unknown-		xorg
@@ -430,8 +430,8 @@
 ./usr/X11R7/lib/libxcb-xvmc.so.0		-unknown-		xorg
 ./usr/X11R7/lib/libxcb-xvmc.so.0.1		-unknown-		xorg
 ./usr/X11R7/lib/libxcb.so			-unknown-		xorg
-./usr/X11R7/lib/libxcb.so.1			-unknown-		xorg
-./usr/X11R7/lib/libxcb.so.1.1			-unknown-		xorg
+./usr/X11R7/lib/libxcb.so.2			-unknown-		xorg
+./usr/X11R7/lib/libxcb.so.2.0			-unknown-		xorg
 ./usr/X11R7/lib/libxkbfile.so			-unknown-		xorg
 ./usr/X11R7/lib/libxkbfile.so.2			-unknown-		xorg
 ./usr/X11R7/lib/libxkbfile.so.2.0		-unknown-		xorg

Index: src/distrib/sets/lists/xdebug/shl.mi
diff -u src/distrib/sets/lists/xdebug/shl.mi:1.14 src/distrib/sets/lists/xdebug/shl.mi:1.15
--- src/distrib/sets/lists/xdebug/shl.mi:1.14	Thu Mar 20 15:20:44 2014
+++ src/distrib/sets/lists/xdebug/shl.mi	Wed Oct  1 09:30:58 2014
@@ -1,4 +1,4 @@
-# $NetBSD: shl.mi,v 1.14 2014/03/20 15:20:44 riastradh Exp $
+# $NetBSD: shl.mi,v 1.15 2014/10/01 09:30:58 skrll Exp $
 ./usr/libdata/debug/usr/X11R6/lib/libFS.so.6.0.debug			-unknown-		x11,debug
 ./usr/libdata/debug/usr/X11R6/lib/libGL.so.1.2.debug			-unknown-		x11,debug
 ./usr/libdata/debug/usr/X11R6/lib/libGLU.so.1.3.debug			-unknown-		x11,debug
@@ -122,7 +122,7 @@
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-keysyms.so.1.0.debug	-unknown-		xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-present.so.0.1.debug	-unknown-		xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-property.so.1.0.debug	-unknown-		xorg,debug
-./usr/libdata/debug/usr/X11R7/lib/libxcb-randr.so.0.1.debug	-unknown-		xorg,debug
+./usr/libdata/debug/usr/X11R7/lib/libxcb-randr.so.1.0.debug	-unknown-		xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-record.so.0.1.debug	-unknown-		xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-render-util.so.0.0.debug	-unknown-	xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-render.so.0.1.debug	-unknown-		xorg,debug
@@ -131,7 +131,7 @@
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-screensaver.so.0.1.debug	-unknown-	xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-shape.so.0.1.debug	-unknown-		xorg,debug
 ./usr/libdata/debug/usr/X11R7/lib/libxcb-shm.so.0.1.debug	-unknown-		xorg,debug
-./usr/libdata/debug/usr/X11R7/lib/libxcb-sync.so.0.1.debug	-unknown-		xorg,debug
+./usr/libdata/debug/usr/X11R7/lib/libxcb-sync.so.1.0.debug	-unknown-		xorg,debug
 

CVS commit: xsrc/external/mit/twm/dist/src

2014-10-01 Thread Michael van Elst
Module Name:xsrc
Committed By:   mlelstv
Date:   Wed Oct  1 09:56:39 UTC 2014

Modified Files:
xsrc/external/mit/twm/dist/src: util.c

Log Message:
do not try to extend the font-pattern with a wild-card. This will almost
always select the wrong fontset and use wrong metrics.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 xsrc/external/mit/twm/dist/src/util.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/twm/dist/src/util.c
diff -u xsrc/external/mit/twm/dist/src/util.c:1.1.1.4 xsrc/external/mit/twm/dist/src/util.c:1.2
--- xsrc/external/mit/twm/dist/src/util.c:1.1.1.4	Mon Mar 17 08:48:43 2014
+++ xsrc/external/mit/twm/dist/src/util.c	Wed Oct  1 09:56:39 2014
@@ -589,17 +589,13 @@ GetFont(MyFont *font)
 int ascent;
 int descent;
 int fnum;
-char *basename2;
 
 if (use_fontset) {
 	if (font-fontset != NULL){
 	XFreeFontSet(dpy, font-fontset);
 	}
 
-	basename2 = malloc(strlen(font-name) + 3);
-	if (basename2) sprintf(basename2, %s,*, font-name);
-	else basename2 = font-name;
-	if( (font-fontset = XCreateFontSet(dpy, basename2,
+	if( (font-fontset = XCreateFontSet(dpy, font-name,
 	missing_charset_list_return,
 	missing_charset_count_return,
 	def_string_return)) == NULL) {
@@ -607,7 +603,6 @@ GetFont(MyFont *font)
 			 ProgramName, font-name);
 	exit(1);
 	}
-	if (basename2 != font-name) free(basename2);
 	for(i=0; imissing_charset_count_return; i++){
 	printf(%s: warning: font for charset %s is lacking.\n,
 		   ProgramName, missing_charset_list_return[i]);



CVS commit: src/share/man/man4

2014-10-01 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Oct  1 12:08:04 UTC 2014

Modified Files:
src/share/man/man4: wsdisplay.4

Log Message:
the flags for WSDISPLAYIO_SCURSOR have prefix WSDISPLAY_, not WSDISPLAYIO_.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/share/man/man4/wsdisplay.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/wsdisplay.4
diff -u src/share/man/man4/wsdisplay.4:1.41 src/share/man/man4/wsdisplay.4:1.42
--- src/share/man/man4/wsdisplay.4:1.41	Sat Jun  2 10:25:07 2012
+++ src/share/man/man4/wsdisplay.4	Wed Oct  1 12:08:04 2014
@@ -1,4 +1,4 @@
-.\ $NetBSD: wsdisplay.4,v 1.41 2012/06/02 10:25:07 njoly Exp $
+.\ $NetBSD: wsdisplay.4,v 1.42 2014/10/01 12:08:04 mlelstv Exp $
 .\
 .\ Copyright (c) 1999 Matthias Drochner.
 .\ Copyright (c) 2002 Ben Harris.
@@ -325,18 +325,18 @@ The
 member indicates which of the values the application requires to be returned.
 It should contain the logical OR of the following flags:
 .Bl -tag -width Dv
-.It Dv WSDISPLAYIO_CURSOR_DOCUR
+.It Dv WSDISPLAY_CURSOR_DOCUR
 Get
 .Va enable ,
 which indicates whether the cursor is currently displayed (non-zero) or
 not (zero).
-.It Dv WSDISPLAYIO_CURSOR_DOPOS
+.It Dv WSDISPLAY_CURSOR_DOPOS
 Get
 .Va pos ,
 which indicates the current position of the cursor on the display, as
 would be returned by
 .Dv WSDISPLAYIO_GCURPOS .
-.It Dv WSDISPLAYIO_CURSOR_DOHOT
+.It Dv WSDISPLAY_CURSOR_DOHOT
 Get
 .Va hot ,
 which indicates the location of the
@@ -345,7 +345,7 @@ within the cursor.
 This is the point on the cursor whose position on the display is treated
 as being the position of the cursor by other calls.
 Its location is counted in pixels from the top-right corner of the cursor.
-.It Dv WSDISPLAYIO_CURSOR_DOCMAP
+.It Dv WSDISPLAY_CURSOR_DOCMAP
 Get
 .Va cmap ,
 which indicates the current cursor color map.
@@ -365,7 +365,7 @@ and
 .Va cmap . Ns Va blue
 must each point to at least enough space to hold two
 .Li u_char Ns s .
-.It Dv WSDISPLAYIO_CURSOR_DOSHAPE
+.It Dv WSDISPLAY_CURSOR_DOSHAPE
 Get
 .Va size , image ,
 and
@@ -375,7 +375,7 @@ bitmap of set pixels in the cursor and t
 the cursor.
 The format in which these bitmaps are returned, and hence the amount of
 space that must be provided by the application, are device-dependent.
-.It Dv WSDISPLAYIO_CURSOR_DOALL
+.It Dv WSDISPLAY_CURSOR_DOALL
 Get all of the above.
 .El
 .Pp
@@ -395,22 +395,22 @@ The
 member specifies which attributes of the cursor are to be changed.
 It should contain the logical OR of the following flags:
 .Bl -tag -width Dv
-.It Dv WSDISPLAYIO_CURSOR_DOCUR
+.It Dv WSDISPLAY_CURSOR_DOCUR
 If
 .Va enable
 is zero, hide the cursor.
 Otherwise, display it.
-.It Dv WSDISPLAYIO_CURSOR_DOPOS
+.It Dv WSDISPLAY_CURSOR_DOPOS
 Set the cursor's position on the display to
 .Va pos ,
 the same as
 .Dv WSDISPLAYIO_SCURPOS .
-.It Dv WSDISPLAYIO_CURSOR_DOHOT
+.It Dv WSDISPLAY_CURSOR_DOHOT
 Set the
 .Dq hot spot
 of the cursor, as defined above, to
 .Va hot .
-.It Dv WSDISPLAYIO_CURSOR_DOCMAP
+.It Dv WSDISPLAY_CURSOR_DOCMAP
 Set some or all of the cursor color map based on
 .Va cmap .
 The
@@ -424,13 +424,13 @@ indicate which color map entries to set,
 .Va cmap . Ns Va green ,
 and
 .Va cmap . Ns Va blue .
-.It Dv WSDISPLAYIO_CURSOR_DOSHAPE
+.It Dv WSDISPLAY_CURSOR_DOSHAPE
 Set the cursor shape from
 .Va size , image ,
 and
 .Va mask .
 See above for their meanings.
-.It Dv WSDISPLAYIO_CURSOR_DOALL
+.It Dv WSDISPLAY_CURSOR_DOALL
 Do all of the above.
 .El
 .Pp



CVS commit: src/share/man/man4

2014-10-01 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Oct  1 12:33:22 UTC 2014

Modified Files:
src/share/man/man4: wsdisplay.4

Log Message:
Bump date.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/share/man/man4/wsdisplay.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/wsdisplay.4
diff -u src/share/man/man4/wsdisplay.4:1.42 src/share/man/man4/wsdisplay.4:1.43
--- src/share/man/man4/wsdisplay.4:1.42	Wed Oct  1 12:08:04 2014
+++ src/share/man/man4/wsdisplay.4	Wed Oct  1 12:33:22 2014
@@ -1,4 +1,4 @@
-.\ $NetBSD: wsdisplay.4,v 1.42 2014/10/01 12:08:04 mlelstv Exp $
+.\ $NetBSD: wsdisplay.4,v 1.43 2014/10/01 12:33:22 wiz Exp $
 .\
 .\ Copyright (c) 1999 Matthias Drochner.
 .\ Copyright (c) 2002 Ben Harris.
@@ -26,7 +26,7 @@
 .\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\ SUCH DAMAGE.
 .\
-.Dd May 27, 2012
+.Dd October 1, 2014
 .Dt WSDISPLAY 4
 .Os
 .Sh NAME



CVS commit: src/sbin/gpt

2014-10-01 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Oct  1 12:55:41 UTC 2014

Modified Files:
src/sbin/gpt: gpt_uuid.c

Log Message:
It's HAVE_NBTOOL_CONFIG_H, not HAVE_NBTOOLS_CONFIG_H


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sbin/gpt/gpt_uuid.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/gpt/gpt_uuid.c
diff -u src/sbin/gpt/gpt_uuid.c:1.3 src/sbin/gpt/gpt_uuid.c:1.4
--- src/sbin/gpt/gpt_uuid.c:1.3	Wed Oct  1 01:07:24 2014
+++ src/sbin/gpt/gpt_uuid.c	Wed Oct  1 12:55:41 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: gpt_uuid.c,v 1.3 2014/10/01 01:07:24 jnemeth Exp $	*/
+/*	$NetBSD: gpt_uuid.c,v 1.4 2014/10/01 12:55:41 apb Exp $	*/
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 
 #include sys/cdefs.h
 #ifdef __RCSID
-__RCSID($NetBSD: gpt_uuid.c,v 1.3 2014/10/01 01:07:24 jnemeth Exp $);
+__RCSID($NetBSD: gpt_uuid.c,v 1.4 2014/10/01 12:55:41 apb Exp $);
 #endif
 
 #include stdio.h
@@ -40,7 +40,7 @@ __RCSID($NetBSD: gpt_uuid.c,v 1.3 2014/
 #include map.h
 #include gpt.h
 
-#ifndef HAVE_NBTOOLS_CONFIG_H
+#ifndef HAVE_NBTOOL_CONFIG_H
 #include sys/endian.h
 #endif
 



CVS commit: src/lib/libc/gen

2014-10-01 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Oct  1 12:55:39 UTC 2014

Modified Files:
src/lib/libc/gen: dehumanize_number.c

Log Message:
It's HAVE_NBTOOL_CONFIG_H, not HAVE_NBTOOLS_CONFIG_H


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libc/gen/dehumanize_number.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/gen/dehumanize_number.c
diff -u src/lib/libc/gen/dehumanize_number.c:1.5 src/lib/libc/gen/dehumanize_number.c:1.6
--- src/lib/libc/gen/dehumanize_number.c:1.5	Tue Sep 30 17:59:06 2014
+++ src/lib/libc/gen/dehumanize_number.c	Wed Oct  1 12:55:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: dehumanize_number.c,v 1.5 2014/09/30 17:59:06 christos Exp $	*/
+/*	$NetBSD: dehumanize_number.c,v 1.6 2014/10/01 12:55:39 apb Exp $	*/
 
 /*
  * Copyright (c) 2005, 2006 The NetBSD Foundation, Inc.
@@ -29,13 +29,14 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
  */
-#ifdef HAVE_NBTOOLS_CONFIG_H
+
+#ifdef HAVE_NBTOOL_CONFIG_H
 #include nbtools_config.h
-#endif /* HAVE_NBTOOLS_CONFIG_H */
+#endif /* HAVE_NBTOOL_CONFIG_H */
 
 #include sys/cdefs.h
 #if defined(LIBC_SCCS)  !defined(lint)
-__RCSID($NetBSD: dehumanize_number.c,v 1.5 2014/09/30 17:59:06 christos Exp $);
+__RCSID($NetBSD: dehumanize_number.c,v 1.6 2014/10/01 12:55:39 apb Exp $);
 #endif /* LIBC_SCCS and not lint */
 
 #include namespace.h



CVS commit: src/sys/arch/evbarm/rpi

2014-10-01 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Oct  1 13:30:18 UTC 2014

Modified Files:
src/sys/arch/evbarm/rpi: rpi_machdep.c

Log Message:
make board/firmware revisions visible via sysctl


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/evbarm/rpi/rpi_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbarm/rpi/rpi_machdep.c
diff -u src/sys/arch/evbarm/rpi/rpi_machdep.c:1.50 src/sys/arch/evbarm/rpi/rpi_machdep.c:1.51
--- src/sys/arch/evbarm/rpi/rpi_machdep.c:1.50	Mon Sep 29 21:45:15 2014
+++ src/sys/arch/evbarm/rpi/rpi_machdep.c	Wed Oct  1 13:30:18 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: rpi_machdep.c,v 1.50 2014/09/29 21:45:15 macallan Exp $	*/
+/*	$NetBSD: rpi_machdep.c,v 1.51 2014/10/01 13:30:18 mlelstv Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: rpi_machdep.c,v 1.50 2014/09/29 21:45:15 macallan Exp $);
+__KERNEL_RCSID(0, $NetBSD: rpi_machdep.c,v 1.51 2014/10/01 13:30:18 mlelstv Exp $);
 
 #include opt_evbarm_boardtype.h
 #include opt_ddb.h
@@ -1062,6 +1062,21 @@ SYSCTL_SETUP(sysctl_machdep_rpi, sysctl
 	NULL, 0, NULL, 0, CTL_MACHDEP, CTL_EOL);
 
 	sysctl_createv(clog, 0, NULL, NULL,
+	CTLFLAG_PERMANENT|CTLFLAG_READONLY|CTLFLAG_HEX,
+	CTLTYPE_INT, firmware_revision, NULL, NULL, 0,
+	vb.vbt_fwrev.rev, 0, CTL_MACHDEP, CTL_CREATE, CTL_EOL);
+
+	sysctl_createv(clog, 0, NULL, NULL,
+	CTLFLAG_PERMANENT|CTLFLAG_READONLY,
+	CTLTYPE_INT, board_model, NULL, NULL, 0,
+	vb.vbt_boardmodel.model, 0, CTL_MACHDEP, CTL_CREATE, CTL_EOL);
+
+	sysctl_createv(clog, 0, NULL, NULL,
+	CTLFLAG_PERMANENT|CTLFLAG_READONLY,
+	CTLTYPE_INT, board_revision, NULL, NULL, 0,
+	vb.vbt_boardrev.rev, 0, CTL_MACHDEP, CTL_CREATE, CTL_EOL);
+
+	sysctl_createv(clog, 0, NULL, NULL,
 	CTLFLAG_PERMANENT|CTLFLAG_READONLY|CTLFLAG_HEX|CTLFLAG_PRIVATE,
 	CTLTYPE_QUAD, serial, NULL, NULL, 0,
 	vb.vbt_serial.sn, 0, CTL_MACHDEP, CTL_CREATE, CTL_EOL);



CVS commit: src/sys/arch/evbarm/rpi

2014-10-01 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Oct  1 13:31:27 UTC 2014

Modified Files:
src/sys/arch/evbarm/rpi: rpi_machdep.c

Log Message:
turn off hardware cursor while blanking screen.


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/evbarm/rpi/rpi_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbarm/rpi/rpi_machdep.c
diff -u src/sys/arch/evbarm/rpi/rpi_machdep.c:1.51 src/sys/arch/evbarm/rpi/rpi_machdep.c:1.52
--- src/sys/arch/evbarm/rpi/rpi_machdep.c:1.51	Wed Oct  1 13:30:18 2014
+++ src/sys/arch/evbarm/rpi/rpi_machdep.c	Wed Oct  1 13:31:27 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: rpi_machdep.c,v 1.51 2014/10/01 13:30:18 mlelstv Exp $	*/
+/*	$NetBSD: rpi_machdep.c,v 1.52 2014/10/01 13:31:27 mlelstv Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: rpi_machdep.c,v 1.51 2014/10/01 13:30:18 mlelstv Exp $);
+__KERNEL_RCSID(0, $NetBSD: rpi_machdep.c,v 1.52 2014/10/01 13:31:27 mlelstv Exp $);
 
 #include opt_evbarm_boardtype.h
 #include opt_ddb.h
@@ -941,6 +941,8 @@ rpi_ioctl(void *v, void *vs, u_long cmd,
 return 0;
 			rpi_video_on = d;
 			rpi_fb_set_video(d);
+			rpi_fb_movecursor(cursor_x, cursor_y,
+			  d ? cursor_on : 0);
 		}
 		return 0;
 	case WSDISPLAYIO_GVIDEO:



CVS commit: src/lib/libc/gen

2014-10-01 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Oct  1 13:53:04 UTC 2014

Modified Files:
src/lib/libc/gen: dehumanize_number.c

Log Message:
include nbtool_config.h, not nbtools_config.h.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/gen/dehumanize_number.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/gen/dehumanize_number.c
diff -u src/lib/libc/gen/dehumanize_number.c:1.6 src/lib/libc/gen/dehumanize_number.c:1.7
--- src/lib/libc/gen/dehumanize_number.c:1.6	Wed Oct  1 12:55:39 2014
+++ src/lib/libc/gen/dehumanize_number.c	Wed Oct  1 13:53:04 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: dehumanize_number.c,v 1.6 2014/10/01 12:55:39 apb Exp $	*/
+/*	$NetBSD: dehumanize_number.c,v 1.7 2014/10/01 13:53:04 apb Exp $	*/
 
 /*
  * Copyright (c) 2005, 2006 The NetBSD Foundation, Inc.
@@ -31,12 +31,12 @@
  */
 
 #ifdef HAVE_NBTOOL_CONFIG_H
-#include nbtools_config.h
+#include nbtool_config.h
 #endif /* HAVE_NBTOOL_CONFIG_H */
 
 #include sys/cdefs.h
 #if defined(LIBC_SCCS)  !defined(lint)
-__RCSID($NetBSD: dehumanize_number.c,v 1.6 2014/10/01 12:55:39 apb Exp $);
+__RCSID($NetBSD: dehumanize_number.c,v 1.7 2014/10/01 13:53:04 apb Exp $);
 #endif /* LIBC_SCCS and not lint */
 
 #include namespace.h



CVS commit: src/share/doc/psd

2014-10-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct  1 14:12:29 UTC 2014

Modified Files:
src/share/doc/psd: Title

Log Message:
remove extra space I accidentally added.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/doc/psd/Title

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/doc/psd/Title
diff -u src/share/doc/psd/Title:1.5 src/share/doc/psd/Title:1.6
--- src/share/doc/psd/Title:1.5	Tue Sep 30 21:03:47 2014
+++ src/share/doc/psd/Title	Wed Oct  1 10:12:29 2014
@@ -1,4 +1,4 @@
-.\	$NetBSD: Title,v 1.5 2014/10/01 01:03:47 christos Exp $
+.\	$NetBSD: Title,v 1.6 2014/10/01 14:12:29 christos Exp $
 .\
 .\ Copyright (c) 1986, 1993, 1994 The Regents of the University of California.
 .\ All rights reserved.
@@ -242,7 +242,7 @@ ISBN: 1-56592-079-1
 .bp
 .OH '\s10Contents''- \*(%% -\s0'
 .EH '\s10- \*(%% -''Contents\s0'
-\ 
+\
 .sp |1.5i
 .nr PS 24
 .nr VS 26



CVS commit: src/sys/dev/sdmmc

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 20:59:37 UTC 2014

Modified Files:
src/sys/dev/sdmmc: sdhc.c

Log Message:
correct clk div calculation for SD 3.0 controllers


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/dev/sdmmc/sdhc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/sdmmc/sdhc.c
diff -u src/sys/dev/sdmmc/sdhc.c:1.48 src/sys/dev/sdmmc/sdhc.c:1.49
--- src/sys/dev/sdmmc/sdhc.c:1.48	Wed Oct  1 00:25:43 2014
+++ src/sys/dev/sdmmc/sdhc.c	Wed Oct  1 20:59:37 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: sdhc.c,v 1.48 2014/10/01 00:25:43 jmcneill Exp $	*/
+/*	$NetBSD: sdhc.c,v 1.49 2014/10/01 20:59:37 jmcneill Exp $	*/
 /*	$OpenBSD: sdhc.c,v 1.25 2009/01/13 19:44:20 grange Exp $	*/
 
 /*
@@ -23,7 +23,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: sdhc.c,v 1.48 2014/10/01 00:25:43 jmcneill Exp $);
+__KERNEL_RCSID(0, $NetBSD: sdhc.c,v 1.49 2014/10/01 20:59:37 jmcneill Exp $);
 
 #ifdef _KERNEL_OPT
 #include opt_sdmmc.h
@@ -814,6 +814,8 @@ sdhc_clock_divisor(struct sdhc_host *hp,
 	}
 	if (hp-specver == SDHC_SPEC_VERS_300) {
 		div = howmany(hp-clkbase, freq);
+		if (div  0)
+			--div;
 		if (div  0x3ff)
 			return false;
 		*divp = (((div  8)  SDHC_SDCLK_XDIV_MASK)



CVS commit: src/sys/arch/arm/broadcom

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 21:00:16 UTC 2014

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_emmc.c

Log Message:
SDHC_FLAG_NO_HS_BIT should no longer be needed


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/broadcom/bcm2835_emmc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/broadcom/bcm2835_emmc.c
diff -u src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.15 src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.16
--- src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.15	Sat Sep 13 13:20:38 2014
+++ src/sys/arch/arm/broadcom/bcm2835_emmc.c	Wed Oct  1 21:00:16 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: bcm2835_emmc.c,v 1.15 2014/09/13 13:20:38 skrll Exp $	*/
+/*	$NetBSD: bcm2835_emmc.c,v 1.16 2014/10/01 21:00:16 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: bcm2835_emmc.c,v 1.15 2014/09/13 13:20:38 skrll Exp $);
+__KERNEL_RCSID(0, $NetBSD: bcm2835_emmc.c,v 1.16 2014/10/01 21:00:16 jmcneill Exp $);
 
 #include bcmdmac.h
 
@@ -116,7 +116,6 @@ bcmemmc_attach(device_t parent, device_t
 	sc-sc.sc_flags = 0;
 	sc-sc.sc_flags |= SDHC_FLAG_32BIT_ACCESS;
 	sc-sc.sc_flags |= SDHC_FLAG_HOSTCAPS;
-	sc-sc.sc_flags |= SDHC_FLAG_NO_HS_BIT;
 	sc-sc.sc_caps = SDHC_VOLTAGE_SUPP_3_3V | SDHC_HIGH_SPEED_SUPP |
 	SDHC_MAX_BLK_LEN_1024;
 



CVS commit: src/sys/arch/arm/broadcom

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 21:06:21 UTC 2014

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_emmc.c

Log Message:
oops, SDHC_FLAG_NO_HS_BIT is still required


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/broadcom/bcm2835_emmc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/broadcom/bcm2835_emmc.c
diff -u src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.16 src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.17
--- src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.16	Wed Oct  1 21:00:16 2014
+++ src/sys/arch/arm/broadcom/bcm2835_emmc.c	Wed Oct  1 21:06:20 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: bcm2835_emmc.c,v 1.16 2014/10/01 21:00:16 jmcneill Exp $	*/
+/*	$NetBSD: bcm2835_emmc.c,v 1.17 2014/10/01 21:06:20 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: bcm2835_emmc.c,v 1.16 2014/10/01 21:00:16 jmcneill Exp $);
+__KERNEL_RCSID(0, $NetBSD: bcm2835_emmc.c,v 1.17 2014/10/01 21:06:20 jmcneill Exp $);
 
 #include bcmdmac.h
 
@@ -116,6 +116,7 @@ bcmemmc_attach(device_t parent, device_t
 	sc-sc.sc_flags = 0;
 	sc-sc.sc_flags |= SDHC_FLAG_32BIT_ACCESS;
 	sc-sc.sc_flags |= SDHC_FLAG_HOSTCAPS;
+	sc-sc.sc_flags |= SDHC_FLAG_NO_HS_BIT;
 	sc-sc.sc_caps = SDHC_VOLTAGE_SUPP_3_3V | SDHC_HIGH_SPEED_SUPP |
 	SDHC_MAX_BLK_LEN_1024;
 



CVS commit: src/sys/arch/arm/broadcom

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 21:14:58 UTC 2014

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_emmc.c

Log Message:
SDHC_MAX_BLK_LEN_1024 needs to be shifted into caps reg


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/arm/broadcom/bcm2835_emmc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/broadcom/bcm2835_emmc.c
diff -u src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.17 src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.18
--- src/sys/arch/arm/broadcom/bcm2835_emmc.c:1.17	Wed Oct  1 21:06:20 2014
+++ src/sys/arch/arm/broadcom/bcm2835_emmc.c	Wed Oct  1 21:14:58 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: bcm2835_emmc.c,v 1.17 2014/10/01 21:06:20 jmcneill Exp $	*/
+/*	$NetBSD: bcm2835_emmc.c,v 1.18 2014/10/01 21:14:58 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: bcm2835_emmc.c,v 1.17 2014/10/01 21:06:20 jmcneill Exp $);
+__KERNEL_RCSID(0, $NetBSD: bcm2835_emmc.c,v 1.18 2014/10/01 21:14:58 jmcneill Exp $);
 
 #include bcmdmac.h
 
@@ -118,7 +118,7 @@ bcmemmc_attach(device_t parent, device_t
 	sc-sc.sc_flags |= SDHC_FLAG_HOSTCAPS;
 	sc-sc.sc_flags |= SDHC_FLAG_NO_HS_BIT;
 	sc-sc.sc_caps = SDHC_VOLTAGE_SUPP_3_3V | SDHC_HIGH_SPEED_SUPP |
-	SDHC_MAX_BLK_LEN_1024;
+	(SDHC_MAX_BLK_LEN_1024  SDHC_MAX_BLK_LEN_SHIFT);
 
 	sc-sc.sc_host = sc-sc_hosts;
 	sc-sc.sc_clkbase = 5;	/* Default to 50MHz */



CVS commit: src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:18:19 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11: random.cc

Log Message:
Attribute target is not supported by clang, so don't use it.
Explicitly mark this function as non-inline to not defeat the feature
tests.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc
diff -u src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc:1.1.1.1 src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc:1.2
--- src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc:1.1.1.1	Sat Mar  1 08:41:19 2014
+++ src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc	Wed Oct  1 22:18:19 2014
@@ -54,7 +54,10 @@ namespace std _GLIBCXX_VISIBILITY(defaul
 
 #if (defined __i386__ || defined __x86_64__)  defined _GLIBCXX_X86_RDRAND
 unsigned int
+__attribute__ ((noinline))
+#  ifndef __clang__
 __attribute__ ((target(rdrnd)))
+#  endif
 __x86_rdrand(void)
 {
   unsigned int retries = 100;



CVS commit: src/external/gpl3/gcc/lib/libstdc++-v3

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:26:05 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libstdc++-v3: Makefile

Log Message:
Building random.cc with clang requires -mrdrnd on x86.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/lib/libstdc++-v3/Makefile
diff -u src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.16 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.17
--- src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.16	Sat Jun 14 20:49:36 2014
+++ src/external/gpl3/gcc/lib/libstdc++-v3/Makefile	Wed Oct  1 22:26:05 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.16 2014/06/14 20:49:36 mrg Exp $
+#	$NetBSD: Makefile,v 1.17 2014/10/01 22:26:05 joerg Exp $
 
 REQUIRETOOLS=	yes
 NOLINT=		# defined
@@ -14,6 +14,9 @@ LIBDPLIBS+=	m ${.CURDIR}/../../../../../
 
 #COPTS+=		-pthread
 #LDFLAGS+=	-pthread
+.if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
+COPTS.random.cc+=	${${ACTIVE_CC} == clang:? -mrdrnd :}
+.endif
 
 UNSUPPORTED_COMPILER.clang=	# defined
 CWARNFLAGS.clang+=	-Wno-logical-op-parentheses \



CVS commit: src/external/gpl3/gcc/lib/libstdc++-v3

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:27:33 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libstdc++-v3: Makefile

Log Message:
Explicitly request using the libstdc++ header path for clang, C++11 for
everything and disable the unsupported ABI tagging.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/lib/libstdc++-v3/Makefile
diff -u src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.17 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.18
--- src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.17	Wed Oct  1 22:26:05 2014
+++ src/external/gpl3/gcc/lib/libstdc++-v3/Makefile	Wed Oct  1 22:27:33 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.17 2014/10/01 22:26:05 joerg Exp $
+#	$NetBSD: Makefile,v 1.18 2014/10/01 22:27:33 joerg Exp $
 
 REQUIRETOOLS=	yes
 NOLINT=		# defined
@@ -18,7 +18,8 @@ LIBDPLIBS+=	m ${.CURDIR}/../../../../../
 COPTS.random.cc+=	${${ACTIVE_CC} == clang:? -mrdrnd :}
 .endif
 
-UNSUPPORTED_COMPILER.clang=	# defined
+CXXFLAGS.clang+=	-stdlib=libstdc++ -std=c++11 -D_GLIBCXX_ABI_TAG_CXX11=
+CXXFLAGS+=	${CXXFLAGS.${ACTIVE_CC}}
 CWARNFLAGS.clang+=	-Wno-logical-op-parentheses \
 			-Wno-deprecated-writable-strings -Wno-parentheses
 



CVS commit: src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:44:03 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98: locale-inst.cc

Log Message:
When building with clang, use the C++11 feature for explicit template
specialisation.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc
diff -u src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc:1.1.1.1 src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc:1.2
--- src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc:1.1.1.1	Sat Mar  1 08:41:19 2014
+++ src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc	Wed Oct  1 22:44:03 2014
@@ -176,11 +176,21 @@ _GLIBCXX_END_NAMESPACE_LDBL
   template class messages_bynameC;
   
   // ctype
-  inline template class __ctype_abstract_baseC;
+#ifdef __clang__
+  extern
+#else
+  inline
+#endif
+  template class __ctype_abstract_baseC;
   template class ctype_bynameC;
   
   // codecvt
-  inline template class __codecvt_abstract_baseC, char, mbstate_t;
+#ifdef __clang__
+  extern
+#else
+  inline
+#endif
+  template class __codecvt_abstract_baseC, char, mbstate_t;
   template class codecvt_bynameC, char, mbstate_t;
 
   // collate



CVS commit: src/usr.bin/mail/USD.doc

2014-10-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct  1 23:41:41 UTC 2014

Modified Files:
src/usr.bin/mail/USD.doc: mail5.nr mail9.nr

Log Message:
put back ua will fix differently.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.bin/mail/USD.doc/mail5.nr
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/mail/USD.doc/mail9.nr

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/mail/USD.doc/mail5.nr
diff -u src/usr.bin/mail/USD.doc/mail5.nr:1.6 src/usr.bin/mail/USD.doc/mail5.nr:1.7
--- src/usr.bin/mail/USD.doc/mail5.nr:1.6	Tue Sep 30 16:54:11 2014
+++ src/usr.bin/mail/USD.doc/mail5.nr	Wed Oct  1 19:41:41 2014
@@ -1,4 +1,4 @@
-.\	$NetBSD: mail5.nr,v 1.6 2014/09/30 20:54:11 christos Exp $
+.\	$NetBSD: mail5.nr,v 1.7 2014/10/01 23:41:41 christos Exp $
 .\
 .\ Copyright (c) 1980, 1993
 .\	The Regents of the University of California.  All rights reserved.
@@ -58,7 +58,7 @@ consists of a list of message numbers, r
 separated by spaces or tabs.  Message numbers may be either
 decimal numbers, which directly specify messages, or one of the
 special characters
-.q \(ha
+.q \(ua
 .q .
 or
 .q $

Index: src/usr.bin/mail/USD.doc/mail9.nr
diff -u src/usr.bin/mail/USD.doc/mail9.nr:1.5 src/usr.bin/mail/USD.doc/mail9.nr:1.6
--- src/usr.bin/mail/USD.doc/mail9.nr:1.5	Tue Sep 30 16:54:11 2014
+++ src/usr.bin/mail/USD.doc/mail9.nr	Wed Oct  1 19:41:41 2014
@@ -1,4 +1,4 @@
-.\	$NetBSD: mail9.nr,v 1.5 2014/09/30 20:54:11 christos Exp $
+.\	$NetBSD: mail9.nr,v 1.6 2014/10/01 23:41:41 christos Exp $
 .\
 .\ Copyright (c) 1980, 1993
 .\	The Regents of the University of California.  All rights reserved.
@@ -121,7 +121,7 @@ escape	valued	Escape character to be use
 folder	valued	Directory to store folders in
 hold	binary	Hold messages in system mailbox by default
 ignore	binary	Ignore \s-2RUBOUT\s0 while sending mail
-ignoreeof	binary	Don't terminate letters/command input with \fB\(haD\fP
+ignoreeof	binary	Don't terminate letters/command input with \fB\(uaD\fP
 keep	binary	Don't unlink system mailbox when empty
 keepsave	binary	Don't delete \fBsave\fPd messages by default
 metoo	binary	Include sending user in aliases



CVS commit: src/gnu/dist/groff/tmac

2014-10-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct  2 00:02:03 UTC 2014

Modified Files:
src/gnu/dist/groff/tmac: ascii.tmac

Log Message:
add ua


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/gnu/dist/groff/tmac/ascii.tmac

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/gnu/dist/groff/tmac/ascii.tmac
diff -u src/gnu/dist/groff/tmac/ascii.tmac:1.3 src/gnu/dist/groff/tmac/ascii.tmac:1.4
--- src/gnu/dist/groff/tmac/ascii.tmac:1.3	Tue Sep 30 19:32:52 2014
+++ src/gnu/dist/groff/tmac/ascii.tmac	Wed Oct  1 20:02:03 2014
@@ -9,6 +9,7 @@
 .\ dagger and double dagger.
 .fchar \(dg [+]
 .fchar \(dd [++]
+.fchar \(ua \(ha
 .\ We have no fonts, should be turn things to bold for italic?
 .ft C
 ..



CVS commit: src/sys/dev/pci

2014-10-01 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Oct  1 08:37:48 UTC 2014

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
Add Intel Atom Z36xx and Z37xx devices from the datasheet.


To generate a diff of this commit:
cvs rdiff -u -r1.1202 -r1.1203 src/sys/dev/pci/pcidevs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-7] src/sys/dev/sdmmc

2014-10-01 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct  1 08:53:43 UTC 2014

Modified Files:
src/sys/dev/sdmmc [netbsd-7]: sdhc.c

Log Message:
Pull up following revision(s) (requested by jmcneill in ticket #123):
sys/dev/sdmmc/sdhc.c: revision 1.48
Don't check slot type for pre-3.0 controllers, the bits were reserved at
the time. If an older controller advertises 1.8V support, just use it.
This fixes high-speed mode support for me on BeagleBone Black.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.44.2.1 src/sys/dev/sdmmc/sdhc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-7] src/doc

2014-10-01 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct  1 08:54:47 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #123


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.39 -r1.1.2.40 src/doc/CHANGES-7.0

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: xsrc/external/mit/twm/dist/src

2014-10-01 Thread Michael van Elst
Module Name:xsrc
Committed By:   mlelstv
Date:   Wed Oct  1 09:56:39 UTC 2014

Modified Files:
xsrc/external/mit/twm/dist/src: util.c

Log Message:
do not try to extend the font-pattern with a wild-card. This will almost
always select the wrong fontset and use wrong metrics.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 xsrc/external/mit/twm/dist/src/util.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2014-10-01 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Oct  1 12:08:04 UTC 2014

Modified Files:
src/share/man/man4: wsdisplay.4

Log Message:
the flags for WSDISPLAYIO_SCURSOR have prefix WSDISPLAY_, not WSDISPLAYIO_.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/share/man/man4/wsdisplay.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2014-10-01 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Oct  1 12:33:22 UTC 2014

Modified Files:
src/share/man/man4: wsdisplay.4

Log Message:
Bump date.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/share/man/man4/wsdisplay.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sbin/gpt

2014-10-01 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Oct  1 12:55:41 UTC 2014

Modified Files:
src/sbin/gpt: gpt_uuid.c

Log Message:
It's HAVE_NBTOOL_CONFIG_H, not HAVE_NBTOOLS_CONFIG_H


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sbin/gpt/gpt_uuid.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/gen

2014-10-01 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Oct  1 12:55:39 UTC 2014

Modified Files:
src/lib/libc/gen: dehumanize_number.c

Log Message:
It's HAVE_NBTOOL_CONFIG_H, not HAVE_NBTOOLS_CONFIG_H


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libc/gen/dehumanize_number.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbarm/rpi

2014-10-01 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Oct  1 13:30:18 UTC 2014

Modified Files:
src/sys/arch/evbarm/rpi: rpi_machdep.c

Log Message:
make board/firmware revisions visible via sysctl


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/evbarm/rpi/rpi_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbarm/rpi

2014-10-01 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Wed Oct  1 13:31:27 UTC 2014

Modified Files:
src/sys/arch/evbarm/rpi: rpi_machdep.c

Log Message:
turn off hardware cursor while blanking screen.


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/evbarm/rpi/rpi_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/gen

2014-10-01 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Oct  1 13:53:04 UTC 2014

Modified Files:
src/lib/libc/gen: dehumanize_number.c

Log Message:
include nbtool_config.h, not nbtools_config.h.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/gen/dehumanize_number.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/doc/psd

2014-10-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct  1 14:12:29 UTC 2014

Modified Files:
src/share/doc/psd: Title

Log Message:
remove extra space I accidentally added.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/doc/psd/Title

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/sdmmc

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 20:59:37 UTC 2014

Modified Files:
src/sys/dev/sdmmc: sdhc.c

Log Message:
correct clk div calculation for SD 3.0 controllers


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/dev/sdmmc/sdhc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/broadcom

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 21:00:16 UTC 2014

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_emmc.c

Log Message:
SDHC_FLAG_NO_HS_BIT should no longer be needed


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/broadcom/bcm2835_emmc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/broadcom

2014-10-01 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Wed Oct  1 21:06:21 UTC 2014

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_emmc.c

Log Message:
oops, SDHC_FLAG_NO_HS_BIT is still required


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/broadcom/bcm2835_emmc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:18:19 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11: random.cc

Log Message:
Attribute target is not supported by clang, so don't use it.
Explicitly mark this function as non-inline to not defeat the feature
tests.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/random.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc/lib/libstdc++-v3

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:26:05 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libstdc++-v3: Makefile

Log Message:
Building random.cc with clang requires -mrdrnd on x86.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc/lib/libstdc++-v3

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:27:33 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libstdc++-v3: Makefile

Log Message:
Explicitly request using the libstdc++ header path for clang, C++11 for
everything and disable the unsupported ABI tagging.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98

2014-10-01 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Oct  1 22:44:03 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98: locale-inst.cc

Log Message:
When building with clang, use the C++11 feature for explicit template
specialisation.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/locale-inst.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/mail/USD.doc

2014-10-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct  1 23:41:41 UTC 2014

Modified Files:
src/usr.bin/mail/USD.doc: mail5.nr mail9.nr

Log Message:
put back ua will fix differently.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.bin/mail/USD.doc/mail5.nr
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/mail/USD.doc/mail9.nr

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/gnu/dist/groff/tmac

2014-10-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct  2 00:02:03 UTC 2014

Modified Files:
src/gnu/dist/groff/tmac: ascii.tmac

Log Message:
add ua


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/gnu/dist/groff/tmac/ascii.tmac

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2014-10-01 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Oct  2 03:58:48 UTC 2014

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
Regen.


To generate a diff of this commit:
cvs rdiff -u -r1.1196 -r1.1197 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1195 -r1.1196 src/sys/dev/pci/pcidevs_data.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.