Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
Out of curiosity, was there any thought is adding this to evbmips instead of getting its own top-level arch subdir? emips already has native bootloader and src/distrib files, so it's enough reason to have own port dir. to the PowerPC Virtex that lives in arch/evbppc/virtex. BTW evbppc has

Re: CVS commit: src

2011-01-28 Thread Antti Kantee
On Fri Jan 28 2011 at 18:05:50 +0900, Izumi Tsutsui wrote: Out of curiosity, was there any thought is adding this to evbmips instead of getting its own top-level arch subdir? emips already has native bootloader and src/distrib files, so it's enough reason to have own port dir.

Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
additionally, userland is built with MKSOFTFLOAT=yes, Hmm. In that case, shouldn't we have different ${MACHINE_ARCH} for different binaries? --- Izumi Tsutsui

Re: CVS commit: src

2011-01-28 Thread Antti Kantee
On Fri Jan 28 2011 at 16:26:50 +0200, Antti Kantee wrote: On Fri Jan 28 2011 at 23:07:37 +0900, Izumi Tsutsui wrote: additionally, userland is built with MKSOFTFLOAT=yes, Hmm. In that case, shouldn't we have different ${MACHINE_ARCH} for different binaries? i think you're right.

Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
pooka@ wrote: additionally, userland is built with MKSOFTFLOAT=yes, : In that case, shouldn't we have different ${MACHINE_ARCH} for different binaries? i think you're right. hmm, looking at the build cluster output there seem to be very few sets shared between mips archs (i don't

Re: CVS commit: src

2011-01-28 Thread Antti Kantee
On Fri Jan 28 2011 at 23:40:34 +0900, Izumi Tsutsui wrote: Do you have a naming suggestion? mipsebsf? hpcmips chose and implemented painful fpemul to avoid such discussion, IIRC :-) heh. well, in this case I guess we could implement fpu support in the CPU to avoid discussions ;) -- älä

Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
Do you have a naming suggestion? mipsebsf? hpcmips chose and implemented painful fpemul to avoid such discussion, IIRC :-) heh. well, in this case I guess we could implement fpu support in the CPU to avoid discussions ;) Heh, indeed, though I'm afraid it will require more FPGA

Re: CVS commit: src

2011-01-28 Thread Valeriy E. Ushakov
On Fri, Jan 28, 2011 at 23:40:34 +0900, Izumi Tsutsui wrote: Only if we will also have non-softfloat mips64? (as sh3 has only softfloat currently) Heh, adding FPU support to sh4 kernels is not that much work, but i never had energy to sit down and figure out how to handle hard vs softfloat

Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
uwe@ wrote: Heh, adding FPU support to sh4 kernels is not that much work, Just FYI, ftp://ftp.NetBSD.org/pub/NetBSD/misc/nonaka/sh4-fpu/ ftp://ftp.NetBSD.org/pub/NetBSD/misc/nonaka/sh4a/ but i never had energy to sit down and figure out how to handle hard vs softfloat userlands :) ---

Re: CVS commit: src

2011-01-28 Thread David Brownlee
On 28 January 2011 14:40, Izumi Tsutsui tsut...@ceres.dti.ne.jp wrote: hpcmips chose and implemented painful fpemul to avoid such discussion, IIRC :-) If emips is going to be using softfloat it looks like it could be an opportunity for hpcmips machines of the same endian to gain some better

Re: CVS commit: src

2011-01-28 Thread Warner Losh
On 01/28/2011 02:05, Izumi Tsutsui wrote: Out of curiosity, was there any thought is adding this to evbmips instead of getting its own top-level arch subdir? emips already has native bootloader and src/distrib files, so it's enough reason to have own port dir. to the PowerPC Virtex that lives

Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
evb* method is used for boards/appliances that have less man power and few variants, I think. While it avoids clutter, it also tends to bury the lead as it were. It is harder to know what NetBSD supports and eaiser to pass it by... It depends. (as I wrote less man power) It might be

Re: CVS commit: src

2011-01-28 Thread Matt Thomas
On Jan 28, 2011, at 6:40 AM, Izumi Tsutsui wrote: pooka@ wrote: additionally, userland is built with MKSOFTFLOAT=yes, : In that case, shouldn't we have different ${MACHINE_ARCH} for different binaries? i think you're right. hmm, looking at the build cluster output there seem to be

Re: CVS commit: src/sys

2011-01-28 Thread Lars Heidieker
Hi, I just got a compile error after the movement of the sysctls. When having netbsd32 compat on a 64bit machine. A conditional include for compat/netbsd32/netbsd32.h fixed this, one like in init_sysctl.c Kind Regards, Lars Am 28.01.2011 19:44 schrieb Antti Kantee po...@netbsd.org: Module Name:

Re: CVS commit: src

2011-01-28 Thread Simon Burge
Antti Kantee wrote: On Fri Jan 28 2011 at 18:05:50 +0900, Izumi Tsutsui wrote: Out of curiosity, was there any thought is adding this to evbmips instead of getting its own top-level arch subdir? emips already has native bootloader and src/distrib files, so it's enough reason to have

re: CVS commit: src

2011-01-28 Thread matthew green
to the PowerPC Virtex that lives in arch/evbppc/virtex. BTW evbppc has 405 vs oea issue in module. i have a solution for this i haven't implemented. it basically involves two things: - allow a different subdir in the module dir - re-use the src/compat framework to build

re: CVS commit: src

2011-01-28 Thread matthew green
disklabel.h should export nothing to userland and values userland needs should be obtained via sysctl. I've been asking this question of various developers for a while. how do i create a disklabel on a file system image as a normal user a non-netbsd host with this method? .mrg.

Re: CVS commit: src

2011-01-28 Thread Matt Thomas
On Jan 28, 2011, at 3:38 PM, matthew green wrote: disklabel.h should export nothing to userland and values userland needs should be obtained via sysctl. I've been asking this question of various developers for a while. how do i create a disklabel on a file system image as a normal

Re: CVS commit: src

2011-01-28 Thread Matt Thomas
On Jan 28, 2011, at 3:25 PM, matthew green wrote: to the PowerPC Virtex that lives in arch/evbppc/virtex. BTW evbppc has 405 vs oea issue in module. evb* method is used for boards/appliances that have less man power and few variants, I think. one problem i have with the current way

Re: CVS commit: src

2011-01-28 Thread Izumi Tsutsui
mrg@ wrote: to the PowerPC Virtex that lives in arch/evbppc/virtex. BTW evbppc has 405 vs oea issue in module. i have a solution for this i haven't implemented. it basically involves two things: - allow a different subdir in the module dir - re-use the src/compat

CVS commit: src/sys/arch/sgimips/sgimips

2011-01-28 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Fri Jan 28 10:20:28 UTC 2011 Modified Files: src/sys/arch/sgimips/sgimips: cpu.c mainbus.c Log Message: Use CFATTACH_DECL_NEW() (no softc). To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25

CVS commit: src/sys/arch/pmax/stand

2011-01-28 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Fri Jan 28 11:58:39 UTC 2011 Modified Files: src/sys/arch/pmax/stand: Makefile.booters Log Message: typo To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/sys/arch/pmax/stand/Makefile.booters Please note that

CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2011-01-28 Thread Timo Teräs
Module Name:src Committed By: tteras Date: Fri Jan 28 12:51:40 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: plog.c Log Message: From Roman Hoog Antink r...@open.ch: Log remote IP address if available (slightly modified by tteras) To generate a diff

CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2011-01-28 Thread Timo Teräs
Module Name:src Committed By: tteras Date: Fri Jan 28 13:02:34 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: sainfo.c sainfo.h session.c Log Message: From Roman Hoog Antink r...@open.ch: Clean up sainfo reloading: rename the functions, and remove

CVS commit: src/sys/dev/marvell

2011-01-28 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Fri Jan 28 16:12:23 UTC 2011 Modified Files: src/sys/dev/marvell: com_mv.c Log Message: Set mva_size in the console case. Addresses first portion of PR#43990. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5

CVS commit: src/sys/rump/librump/rumpkern

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 16:34:31 UTC 2011 Modified Files: src/sys/rump/librump/rumpkern: lwproc.c Log Message: fill in a default name for p_comm To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11

CVS commit: src/sys

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 16:58:28 UTC 2011 Modified Files: src/sys/rump/librump/rumpkern: locks.c lwproc.c rump.c scheduler.c src/sys/sys: lwp.h Log Message: Some lwp-walkers expect the correct value for l_stat, so use a flag in l_flag

CVS commit: src/sys/rump/librump/rumpkern

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 17:04:39 UTC 2011 Modified Files: src/sys/rump/librump/rumpkern: locks.c Log Message: If we are unsleepable due to a dying proc, yield() instead of returning directly. This allows other threads to run possible setting

CVS commit: [bouyer-quota2] src/sys/ufs/ufs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 18:36:06 UTC 2011 Modified Files: src/sys/ufs/ufs [bouyer-quota2]: quota2.h quota2_subr.c ufs_quota2.c Log Message: Introduce quota2_ufs_rwq2v() and quota2_ufs_rwq2e() functions, which byteswap a quota2_val or

CVS commit: [bouyer-quota2] src/tests/fs/ffs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 18:38:08 UTC 2011 Modified Files: src/tests/fs/ffs [bouyer-quota2]: Makefile Added Files: src/tests/fs/ffs [bouyer-quota2]: quotas_common.sh t_getquota.sh src/tests/fs/ffs/clients [bouyer-quota2]:

CVS commit: src

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 19:21:29 UTC 2011 Modified Files: src/lib/librumpclient: rumpclient.c src/lib/librumpuser: rumpuser_sp.c src/sys/rump/include/rump: rumpuser.h src/sys/rump/librump/rumpkern: rump.c Log Message:

CVS commit: src/bin/date

2011-01-28 Thread Matthias Drochner
Module Name:src Committed By: drochner Date: Fri Jan 28 20:23:38 UTC 2011 Modified Files: src/bin/date: date.c netdate.c Log Message: roll back to 20101210 -- the current version just hung if one tried to set the date To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/ic

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 20:36:06 UTC 2011 Modified Files: src/sys/dev/ic: bwi.c Log Message: Don't BWI_DEBUG by default + comment cleanup. requested by Taylor R. Campbell (driver submitter) To generate a diff of this commit: cvs rdiff -u

CVS commit: src/distrib/sets

2011-01-28 Thread Matt Thomas
Module Name:src Committed By: matt Date: Fri Jan 28 20:36:20 UTC 2011 Modified Files: src/distrib/sets: sets.subr Added Files: src/distrib/sets/lists/tests: md.evbppc Log Message: Add a method to a whiteout an entry thereby allowing a md/ad file to remove a file

CVS commit: src

2011-01-28 Thread Frank Wille
Module Name:src Committed By: phx Date: Fri Jan 28 22:15:36 UTC 2011 Modified Files: src/distrib/sandpoint: Makefile src/distrib/sets/lists/base: md.sandpoint src/sys/arch/sandpoint: Makefile src/sys/arch/sandpoint/stand/altboot: Makefile Added

CVS commit: [bouyer-quota2] src

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 22:15:36 UTC 2011 Modified Files: src/tests/fs/ffs/clients [bouyer-quota2]: Makefile src/usr.bin/quota [bouyer-quota2]: Makefile printquota.h quota.c Added Files: src/usr.bin/quota [bouyer-quota2]:

CVS commit: [bouyer-quota2] src/sys/ufs/ufs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 23:30:35 UTC 2011 Modified Files: src/sys/ufs/ufs [bouyer-quota2]: quota2_subr.c Log Message: Add RCSID To generate a diff of this commit: cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/ufs/ufs/quota2_subr.c Please note

CVS commit: [bouyer-quota2] src/sys/ufs/ufs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 23:31:16 UTC 2011 Modified Files: src/sys/ufs/ufs [bouyer-quota2]: quota1.h Added Files: src/sys/ufs/ufs [bouyer-quota2]: quota1_subr.c Log Message: Add conversion functions between old and new format. To

CVS commit: src/sys

2011-01-28 Thread Adam Hamsik
Module Name:src Committed By: haad Date: Fri Jan 28 23:54:28 UTC 2011 Modified Files: src/sys/dev/pud: pud.c Added Files: src/sys/modules/pud: Makefile Log Message: Add support for building pud as module. Do it in a same way how putter is done. To generate a

CVS commit: src/sys/kern

2011-01-28 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Jan 29 00:38:25 UTC 2011 Modified Files: src/sys/kern: kern_verifiedexec.c Log Message: allow get the size of the request sysctls to work. To generate a diff of this commit: cvs rdiff -u -r1.124 -r1.125

CVS commit: src/sys/dev/marvell

2011-01-28 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jan 29 01:53:19 UTC 2011 Modified Files: src/sys/dev/marvell: if_mvgbe.c Log Message: Use macros for ring position advances, assuming a power of two ring size. (Also, spelling correction in comment.) To generate a diff of

CVS commit: src/distrib/amd64/cdroms

2011-01-28 Thread Jean-Yves Migeon
Module Name:src Committed By: jym Date: Sat Jan 29 01:54:33 UTC 2011 Modified Files: src/distrib/amd64/cdroms: Makefile.cdrom Log Message: Mirror a change that was made on i386 by gdt@. XXX i386 and amd64 distrib have lots in common, maybe more files/logic could/should

CVS commit: src/bin/date

2011-01-28 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Jan 29 02:16:52 UTC 2011 Modified Files: src/bin/date: date.c netdate.c Log Message: revert the revert and fix the code properly. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/bin/date/date.c cvs rdiff

CVS commit: xsrc/external/mit/xf86-input-synaptics/dist

2011-01-28 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Sat Jan 29 02:17:22 UTC 2011 Update of /cvsroot/xsrc/external/mit/xf86-input-synaptics/dist In directory ivanova.netbsd.org:/tmp/cvs-serv17735 Log Message: initial import of xf86-input-synaptics-1.3.0 Status: Vendor Tag: xorg Release

CVS commit: src/lib/libc/arch/powerpc/string

2011-01-28 Thread Matt Thomas
Module Name:src Committed By: matt Date: Sat Jan 29 02:21:20 UTC 2011 Modified Files: src/lib/libc/arch/powerpc/string: bzero.S Log Message: Don't use r0 to restore LR, use r7 instead. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11

CVS commit: xsrc/external/mit/xf86-input-synaptics/include

2011-01-28 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Sat Jan 29 02:32:20 UTC 2011 Added Files: xsrc/external/mit/xf86-input-synaptics/include: config.h Log Message: add a config.h for xf86-input-synaptics 1.3.0. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \

CVS commit: src/external/mit/xorg/server/drivers/xf86-input-synaptics

2011-01-28 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Jan 29 02:32:36 UTC 2011 Added Files: src/external/mit/xorg/server/drivers/xf86-input-synaptics: Makefile Log Message: add a makefile to build xf86-input-synaptics. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \

CVS commit: src/crypto/dist/heimdal/kuser

2011-01-28 Thread John Nemeth
Module Name:src Committed By: jnemeth Date: Sat Jan 29 04:00:19 UTC 2011 Modified Files: src/crypto/dist/heimdal/kuser: kgetcred.1 Log Message: PR/44482 - Ryo HAYASAKA -- typo To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9

CVS commit: src/share/man/man7

2011-01-28 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Fri Jan 28 09:24:46 UTC 2011 Modified Files: src/share/man/man7: hier.7 Log Message: Bump for emips. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 src/share/man/man7/hier.7 Please note that diffs are not public

CVS commit: src/sys/arch/pmax/stand

2011-01-28 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Fri Jan 28 11:58:39 UTC 2011 Modified Files: src/sys/arch/pmax/stand: Makefile.booters Log Message: typo To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/sys/arch/pmax/stand/Makefile.booters Please note that

CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2011-01-28 Thread Timo Teräs
Module Name:src Committed By: tteras Date: Fri Jan 28 12:51:40 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: plog.c Log Message: From Roman Hoog Antink r...@open.ch: Log remote IP address if available (slightly modified by tteras) To generate a diff

CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2011-01-28 Thread Timo Teräs
Module Name:src Committed By: tteras Date: Fri Jan 28 13:00:14 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: remoteconf.c remoteconf.h session.c Log Message: From Roman Hoog Antink r...@open.ch: Clean up rmconf reloading: rename the

CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2011-01-28 Thread Timo Teräs
Module Name:src Committed By: tteras Date: Fri Jan 28 13:02:34 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: sainfo.c sainfo.h session.c Log Message: From Roman Hoog Antink r...@open.ch: Clean up sainfo reloading: rename the functions, and remove

CVS commit: src/sys/dev/marvell

2011-01-28 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Fri Jan 28 16:12:23 UTC 2011 Modified Files: src/sys/dev/marvell: com_mv.c Log Message: Set mva_size in the console case. Addresses first portion of PR#43990. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5

CVS commit: [bouyer-quota2] src/sys/ufs/ufs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 18:36:06 UTC 2011 Modified Files: src/sys/ufs/ufs [bouyer-quota2]: quota2.h quota2_subr.c ufs_quota2.c Log Message: Introduce quota2_ufs_rwq2v() and quota2_ufs_rwq2e() functions, which byteswap a quota2_val or

CVS commit: src/sys

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 18:44:45 UTC 2011 Modified Files: src/sys/kern: init_main.c init_sysctl.c kern_descrip.c kern_proc.c kern_sysctl.c src/sys/sys: proc.h sysctl.h Log Message: Move sysctl routines from init_sysctl.c to

CVS commit: src/sys/rump/librump/rumpkern

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 18:45:52 UTC 2011 Modified Files: src/sys/rump/librump/rumpkern: rump.c Log Message: call procinit_sysctl to register the proc sysctl tree To generate a diff of this commit: cvs rdiff -u -r1.223 -r1.224

CVS commit: src/sys/rump/librump/rumpkern

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 18:48:21 UTC 2011 Modified Files: src/sys/rump/librump/rumpkern: lwproc.c rump.c Log Message: Don't NULL out l_cpu, l_stat is the new rumpkernel way too. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13

CVS commit: src

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 18:52:50 UTC 2011 Modified Files: src/distrib/sets/lists/base: mi src/distrib/sets/lists/comp: mi src/usr.bin/sockstat: Makefile sockstat.c Added Files: src/usr.bin/sockstat: prog_ops.h

CVS commit: src

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 19:21:29 UTC 2011 Modified Files: src/lib/librumpclient: rumpclient.c src/lib/librumpuser: rumpuser_sp.c src/sys/rump/include/rump: rumpuser.h src/sys/rump/librump/rumpkern: rump.c Log Message:

CVS commit: src/bin/date

2011-01-28 Thread Matthias Drochner
Module Name:src Committed By: drochner Date: Fri Jan 28 20:23:38 UTC 2011 Modified Files: src/bin/date: date.c netdate.c Log Message: roll back to 20101210 -- the current version just hung if one tried to set the date To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/ic

2011-01-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 28 20:36:06 UTC 2011 Modified Files: src/sys/dev/ic: bwi.c Log Message: Don't BWI_DEBUG by default + comment cleanup. requested by Taylor R. Campbell (driver submitter) To generate a diff of this commit: cvs rdiff -u

CVS commit: src/distrib/sets

2011-01-28 Thread Matt Thomas
Module Name:src Committed By: matt Date: Fri Jan 28 20:36:20 UTC 2011 Modified Files: src/distrib/sets: sets.subr Added Files: src/distrib/sets/lists/tests: md.evbppc Log Message: Add a method to a whiteout an entry thereby allowing a md/ad file to remove a file

CVS commit: src/sys/arch/sh3

2011-01-28 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Fri Jan 28 21:06:09 UTC 2011 Modified Files: src/sys/arch/sh3/include: ptrace.h userret.h src/sys/arch/sh3/sh3: db_interface.c exception.c exception_vector.S process_machdep.c sh3_machdep.c Log Message: Implement

CVS commit: src

2011-01-28 Thread Frank Wille
Module Name:src Committed By: phx Date: Fri Jan 28 22:15:36 UTC 2011 Modified Files: src/distrib/sandpoint: Makefile src/distrib/sets/lists/base: md.sandpoint src/sys/arch/sandpoint: Makefile src/sys/arch/sandpoint/stand/altboot: Makefile Added

CVS commit: [bouyer-quota2] src

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 22:15:36 UTC 2011 Modified Files: src/tests/fs/ffs/clients [bouyer-quota2]: Makefile src/usr.bin/quota [bouyer-quota2]: Makefile printquota.h quota.c Added Files: src/usr.bin/quota [bouyer-quota2]:

CVS commit: [bouyer-quota2] src/sys/ufs/ufs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 23:30:35 UTC 2011 Modified Files: src/sys/ufs/ufs [bouyer-quota2]: quota2_subr.c Log Message: Add RCSID To generate a diff of this commit: cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/ufs/ufs/quota2_subr.c Please note

CVS commit: [bouyer-quota2] src/sys/ufs/ufs

2011-01-28 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Fri Jan 28 23:31:16 UTC 2011 Modified Files: src/sys/ufs/ufs [bouyer-quota2]: quota1.h Added Files: src/sys/ufs/ufs [bouyer-quota2]: quota1_subr.c Log Message: Add conversion functions between old and new format. To

CVS commit: src/sys

2011-01-28 Thread Adam Hamsik
Module Name:src Committed By: haad Date: Fri Jan 28 23:54:28 UTC 2011 Modified Files: src/sys/dev/pud: pud.c Added Files: src/sys/modules/pud: Makefile Log Message: Add support for building pud as module. Do it in a same way how putter is done. To generate a

CVS commit: src/sys/kern

2011-01-28 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Jan 29 00:38:25 UTC 2011 Modified Files: src/sys/kern: kern_verifiedexec.c Log Message: allow get the size of the request sysctls to work. To generate a diff of this commit: cvs rdiff -u -r1.124 -r1.125

CVS commit: src/sys/dev/marvell

2011-01-28 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jan 29 01:53:19 UTC 2011 Modified Files: src/sys/dev/marvell: if_mvgbe.c Log Message: Use macros for ring position advances, assuming a power of two ring size. (Also, spelling correction in comment.) To generate a diff of

CVS commit: src/distrib/amd64/cdroms

2011-01-28 Thread Jean-Yves Migeon
Module Name:src Committed By: jym Date: Sat Jan 29 01:54:33 UTC 2011 Modified Files: src/distrib/amd64/cdroms: Makefile.cdrom Log Message: Mirror a change that was made on i386 by gdt@. XXX i386 and amd64 distrib have lots in common, maybe more files/logic could/should

CVS commit: src/bin/date

2011-01-28 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Jan 29 02:16:52 UTC 2011 Modified Files: src/bin/date: date.c netdate.c Log Message: revert the revert and fix the code properly. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/bin/date/date.c cvs rdiff

CVS commit: xsrc/external/mit/xf86-input-synaptics/dist

2011-01-28 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Sat Jan 29 02:17:22 UTC 2011 Update of /cvsroot/xsrc/external/mit/xf86-input-synaptics/dist In directory ivanova.netbsd.org:/tmp/cvs-serv17735 Log Message: initial import of xf86-input-synaptics-1.3.0 Status: Vendor Tag: xorg Release

CVS commit: src/lib/libc/arch/powerpc/string

2011-01-28 Thread Matt Thomas
Module Name:src Committed By: matt Date: Sat Jan 29 02:21:20 UTC 2011 Modified Files: src/lib/libc/arch/powerpc/string: bzero.S Log Message: Don't use r0 to restore LR, use r7 instead. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11

CVS commit: xsrc/external/mit/xf86-input-synaptics/include

2011-01-28 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Sat Jan 29 02:32:20 UTC 2011 Added Files: xsrc/external/mit/xf86-input-synaptics/include: config.h Log Message: add a config.h for xf86-input-synaptics 1.3.0. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \

CVS commit: src/external/mit/xorg/server/drivers/xf86-input-synaptics

2011-01-28 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Jan 29 02:32:36 UTC 2011 Added Files: src/external/mit/xorg/server/drivers/xf86-input-synaptics: Makefile Log Message: add a makefile to build xf86-input-synaptics. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \

CVS commit: src/crypto/dist/heimdal/kuser

2011-01-28 Thread John Nemeth
Module Name:src Committed By: jnemeth Date: Sat Jan 29 04:00:19 UTC 2011 Modified Files: src/crypto/dist/heimdal/kuser: kgetcred.1 Log Message: PR/44482 - Ryo HAYASAKA -- typo To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9