CVS commit: src
Module Name:src Committed By: tls Date: Sun Oct 26 18:22:32 UTC 2014 Modified Files: src/doc: CHANGES src/sys/dev: rndpseudo.c src/sys/kern: kern_rndq.c kern_rndsink.c src/sys/sys: rnd.h Log Message: Fixes and enhancements for polled entropy sources: Add explicit enable/disable hooks for callout-driven sources (be more power friendly). Make "skew" source polled so it runs only when there is entropy demand. Adjust entropy collection from polled sources so it's processed sooner. To generate a diff of this commit: cvs rdiff -u -r1.2003 -r1.2004 src/doc/CHANGES cvs rdiff -u -r1.22 -r1.23 src/sys/dev/rndpseudo.c cvs rdiff -u -r1.27 -r1.28 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.9 -r1.10 src/sys/kern/kern_rndsink.c cvs rdiff -u -r1.42 -r1.43 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: tls Date: Sun Oct 26 18:43:18 UTC 2014 Modified Files: src/doc: CHANGES src/sys/arch/amd64/conf: GENERIC src/sys/dev/pci: files.pci Added Files: src/share/man/man4: viornd.4 src/sys/dev/pci: viornd.c Log Message: Add viornd(4), a driver for the VirtIO entropy source available on QEMU, KVM, and Google Compute Engine. From OpenBSD. To generate a diff of this commit: cvs rdiff -u -r1.2004 -r1.2005 src/doc/CHANGES cvs rdiff -u -r0 -r1.1 src/share/man/man4/viornd.4 cvs rdiff -u -r1.400 -r1.401 src/sys/arch/amd64/conf/GENERIC cvs rdiff -u -r1.371 -r1.372 src/sys/dev/pci/files.pci cvs rdiff -u -r0 -r1.1 src/sys/dev/pci/viornd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: tls Date: Sun Oct 26 18:48:09 UTC 2014 Modified Files: src/distrib/sets/lists/man: mi src/share/man/man4: Makefile Log Message: Build and install virtio(4) manual page - missed in previous commit. To generate a diff of this commit: cvs rdiff -u -r1.1487 -r1.1488 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.617 -r1.618 src/share/man/man4/Makefile 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
Module Name:src Committed By: tls Date: Sun Mar 4 00:36:43 UTC 2012 Modified Files: src/lib/libc/gen: arc4random.c Log Message: Fix bug in previous: don't reinitialize on every call! Fix arc4random_buf so it actually ever initializes -- a security problem with revisions 1.9 and 1.10. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/lib/libc/gen/arc4random.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd
Module Name:src Committed By: tls Date: Mon Mar 5 20:13:36 UTC 2012 Modified Files: src/crypto/external/bsd/openssh/dist: sshd.c src/crypto/external/bsd/openssl/dist/crypto/rand: md_rand.c rand_unix.c Removed Files: src/crypto/external/bsd/openssh/dist: random.c Log Message: Patch OpenSSL RNG to allow explicit initial seeding. Patch OpenSSH to explicitly seed the OpenSSL RNG in each new process rather than letting it repeatedly open /dev/urandom to reseed, which depletes entropy severely. Note that the OpenSSH part of this fix works better on NetBSD than it would on many other platforms because on NetBSD, if you don't reopen /dev/urandom, repeated reads don't deplete entropy. On other platforms, some other approach might be required. Note also that this problem does not arise on OpenBSD because OpenBSD seems to have patched OpenSSL to seed the RAND functions from arc4random()! That seems dangerous, so I am not taking that approach here. To generate a diff of this commit: cvs rdiff -u -r1.2 -r0 src/crypto/external/bsd/openssh/dist/random.c cvs rdiff -u -r1.8 -r1.9 src/crypto/external/bsd/openssh/dist/sshd.c cvs rdiff -u -r1.1.1.3 -r1.2 \ src/crypto/external/bsd/openssl/dist/crypto/rand/md_rand.c cvs rdiff -u -r1.2 -r1.3 \ src/crypto/external/bsd/openssl/dist/crypto/rand/rand_unix.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/openssl/dist/crypto/rand
Module Name:src Committed By: tls Date: Wed Mar 7 10:17:48 UTC 2012 Modified Files: src/crypto/external/bsd/openssl/dist/crypto/rand: md_rand.c Log Message: Fix applications that call RAND_bytes() before any other RAND function. Last change was...a bit too simple. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 \ src/crypto/external/bsd/openssl/dist/crypto/rand/md_rand.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: tls Date: Tue Apr 10 14:02:28 UTC 2012 Modified Files: src/sys/kern: kern_rndq.c subr_cprng.c src/sys/lib/libkern: arc4random.c src/sys/sys: rnd.h Log Message: Add a spin mutex to the rndsink structure; it is used to avoid lock ordering and sleep-holding-locks problems when rekeying, and thus to avoid a nasty race between cprng destruction and reseeding. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.5 -r1.6 src/sys/kern/subr_cprng.c cvs rdiff -u -r1.31 -r1.32 src/sys/lib/libkern/arc4random.c cvs rdiff -u -r1.29 -r1.30 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: tls Date: Tue Apr 10 15:12:40 UTC 2012 Modified Files: src/sys/kern: subr_cprng.c Log Message: Fix LOCKDEBUG problems pointed out by drochner@ 1) Lock ordering in cprng_strong_destroy had us take a spin mutex then an adaptive mutex. Can't do that. Reordering this requires changing cprng_strong_reseed to tryenter the cprng's own mutex and skip the reseed on failure, or we could deadlock. 2) Can't free memory with a valid mutex in it. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/kern/subr_cprng.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: tls Date: Tue Apr 17 02:50:39 UTC 2012 Modified Files: src/share/man/man4: rnd.4 src/sys/dev: rndpseudo.c src/sys/kern: kern_rndpool.c kern_rndq.c subr_cprng.c src/sys/sys: cprng.h rnd.h Log Message: Address multiple problems with rnd(4)/cprng(9): 1) Add a per-cpu CPRNG to handle short reads from /dev/urandom so that programs like perl don't drain the entropy pool dry by repeatedly opening, reading 4 bytes, closing. 2) Really fix the locking around reseeds and destroys. 3) Fix the opportunistic-reseed strategy so it actually works, reseeding existing RNGs once each (as they are used, so idle RNGs don't get reseeded) until the pool is half empty or newly full again. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/share/man/man4/rnd.4 cvs rdiff -u -r1.7 -r1.8 src/sys/dev/rndpseudo.c cvs rdiff -u -r1.1 -r1.2 src/sys/kern/kern_rndpool.c cvs rdiff -u -r1.2 -r1.3 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.7 -r1.8 src/sys/kern/subr_cprng.c cvs rdiff -u -r1.4 -r1.5 src/sys/sys/cprng.h cvs rdiff -u -r1.30 -r1.31 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: tls Date: Fri Apr 20 21:57:34 UTC 2012 Modified Files: src/sys/dev: rndpseudo.c src/sys/sys: rnd.h Log Message: Fix a bug and a compilation problem. Bug: spin mutexes don't have owners, so KASSERT(!mutex_owned()) shouldn't be used to assert that the current LWP does not have the mutex. Compilation problem: explicitly include sys/mutex.h from rnd.h so evbarm builds again. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/dev/rndpseudo.c cvs rdiff -u -r1.31 -r1.32 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/openssh/dist
Module Name:src Committed By: tls Date: Fri Apr 27 15:45:37 UTC 2012 Modified Files: src/crypto/external/bsd/openssh/dist: readconf.c readconf.h sshconnect.c Log Message: Add new "SendVersionFirst" option to OpenSSH client. This option makes the client send its version string first if it is configured to speak v2 only (the old hack of waiting to see the server version is only really useful if you might be speaking v1 to some servers). The option is on by default but can be disabled from the config file. This aligns the OpenSSH client behavior with most other implementations and eliminates a major source of connection delays and failures when speaking SSH through particularly stupid proxies, of which, sadly, there are many. This change has also been submitted to OpenSSH as their bug #1999. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/crypto/external/bsd/openssh/dist/readconf.c \ src/crypto/external/bsd/openssh/dist/readconf.h \ src/crypto/external/bsd/openssh/dist/sshconnect.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: tls Date: Sat May 19 16:00:41 UTC 2012 Modified Files: src/sys/dev: rndpseudo.c src/sys/kern: subr_cprng.c Log Message: Fix two problems that could cause /dev/random to not wake up readers when entropy became available. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/rndpseudo.c cvs rdiff -u -r1.8 -r1.9 src/sys/kern/subr_cprng.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: tls Date: Wed Sep 5 18:06:52 UTC 2012 Modified Files: src/sys/kern: kern_rndq.c Log Message: Try to help embedded systems a _little_ bit: stir in the system boot time as early as possible. On systems with no cycle counter (or very very predictable cycle counts early in boot) at least this will cause some difference across boots. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/kern/kern_rndq.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: tls Date: Wed Sep 5 18:57:34 UTC 2012 Modified Files: src/sys/kern: kern_rndq.c subr_cprng.c src/sys/sys: rnd.h Log Message: Don't wait until the pool *fills* to rekey anything that was keyed with insufficient entropy at boot: key it as soon as it makes any request after we hit the minimum entropy threshold. This too should help avoid predictable output at boot time. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.9 -r1.10 src/sys/kern/subr_cprng.c cvs rdiff -u -r1.32 -r1.33 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: tls Date: Fri Sep 7 02:42:13 UTC 2012 Modified Files: src/sys/kern: subr_cprng.c Log Message: Fix kern/46911: note that we rekeyed the cprng so we don't keep doing so. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/kern/subr_cprng.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-maxphys] src
Module Name:src Committed By: tls Date: Wed Sep 12 06:15:36 UTC 2012 Modified Files: src/sys/arch/amd64/include [tls-maxphys]: param.h src/sys/arch/i386/pnpbios [tls-maxphys]: fdc_pnpbios.c lpt_pnpbios.c pciide_pnpbios.c pnpbios.c src/sys/dev/acpi [tls-maxphys]: acpi.c src/sys/dev/ic [tls-maxphys]: mpt_netbsd.c mpt_netbsd.h src/sys/dev/isa [tls-maxphys]: isa.c src/sys/dev/pci [tls-maxphys]: amr.c mlyvar.h mpt_pci.c pci.c pciide.c src/sys/dev/scsipi [tls-maxphys]: cd.c sd.c ss.c src/sys/kern [tls-maxphys]: kern_physio.c subr_autoconf.c subr_disk.c sys_descrip.c vfs_vnops.c vfs_wapbl.c src/sys/miscfs/genfs [tls-maxphys]: genfs_io.c src/sys/sys [tls-maxphys]: device.h disk.h mount.h src/sys/ufs/ffs [tls-maxphys]: ffs_vfsops.c src/sys/uvm [tls-maxphys]: uvm_io.c uvm_map.c uvm_readahead.c uvm_readahead.h Added Files: src [tls-maxphys]: MAXPHYS-NOTES Log Message: Initial snapshot of work to eliminate 64K MAXPHYS. Basically works for physio (I/O to raw devices); needs more doing to get it going with the filesystems, but it shouldn't damage data. All work's been done on amd64 so far. Not hard to add support to other ports. If others want to pitch in, one very helpful thing would be to sort out when and how IDE disks can do 128K or larger transfers, and adjust the various PCI IDE (or at least ahcisata) drivers and wd.c accordingly -- it would make testing much easier. Another very helpful thing would be to implement a smart minphys() for RAIDframe along the lines detailed in the MAXPHYS-NOTES file. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1.2.1 src/MAXPHYS-NOTES cvs rdiff -u -r1.18 -r1.18.2.1 src/sys/arch/amd64/include/param.h cvs rdiff -u -r1.17 -r1.17.6.1 src/sys/arch/i386/pnpbios/fdc_pnpbios.c cvs rdiff -u -r1.12 -r1.12.12.1 src/sys/arch/i386/pnpbios/lpt_pnpbios.c cvs rdiff -u -r1.30 -r1.30.2.1 src/sys/arch/i386/pnpbios/pciide_pnpbios.c cvs rdiff -u -r1.71 -r1.71.12.1 src/sys/arch/i386/pnpbios/pnpbios.c cvs rdiff -u -r1.254 -r1.254.2.1 src/sys/dev/acpi/acpi.c cvs rdiff -u -r1.18 -r1.18.2.1 src/sys/dev/ic/mpt_netbsd.c cvs rdiff -u -r1.10 -r1.10.2.1 src/sys/dev/ic/mpt_netbsd.h cvs rdiff -u -r1.138 -r1.138.18.1 src/sys/dev/isa/isa.c cvs rdiff -u -r1.55 -r1.55.2.1 src/sys/dev/pci/amr.c cvs rdiff -u -r1.5 -r1.5.44.1 src/sys/dev/pci/mlyvar.h cvs rdiff -u -r1.22 -r1.22.2.1 src/sys/dev/pci/mpt_pci.c cvs rdiff -u -r1.142 -r1.142.12.1 src/sys/dev/pci/pci.c cvs rdiff -u -r1.219 -r1.219.18.1 src/sys/dev/pci/pciide.c cvs rdiff -u -r1.309 -r1.309.2.1 src/sys/dev/scsipi/cd.c cvs rdiff -u -r1.298 -r1.298.2.1 src/sys/dev/scsipi/sd.c cvs rdiff -u -r1.84 -r1.84.2.1 src/sys/dev/scsipi/ss.c cvs rdiff -u -r1.92 -r1.92.14.1 src/sys/kern/kern_physio.c cvs rdiff -u -r1.223 -r1.223.2.1 src/sys/kern/subr_autoconf.c cvs rdiff -u -r1.100 -r1.100.18.1 src/sys/kern/subr_disk.c cvs rdiff -u -r1.27 -r1.27.2.1 src/sys/kern/sys_descrip.c cvs rdiff -u -r1.185 -r1.185.2.1 src/sys/kern/vfs_vnops.c cvs rdiff -u -r1.52 -r1.52.2.1 src/sys/kern/vfs_wapbl.c cvs rdiff -u -r1.55 -r1.55.2.1 src/sys/miscfs/genfs/genfs_io.c cvs rdiff -u -r1.142 -r1.142.2.1 src/sys/sys/device.h cvs rdiff -u -r1.57 -r1.57.2.1 src/sys/sys/disk.h cvs rdiff -u -r1.207 -r1.207.6.1 src/sys/sys/mount.h cvs rdiff -u -r1.278 -r1.278.2.1 src/sys/ufs/ffs/ffs_vfsops.c cvs rdiff -u -r1.27 -r1.27.6.1 src/sys/uvm/uvm_io.c cvs rdiff -u -r1.322 -r1.322.2.1 src/sys/uvm/uvm_map.c cvs rdiff -u -r1.8 -r1.8.12.1 src/sys/uvm/uvm_readahead.c cvs rdiff -u -r1.4 -r1.4.22.1 src/sys/uvm/uvm_readahead.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: tls Date: Sun Sep 16 18:56:13 UTC 2012 Modified Files: src/doc: CHANGES.prev Log Message: Add forgotten CHANGES entries for rndctl entropy save/load and all the kernel entropy changes. To generate a diff of this commit: cvs rdiff -u -r1.115 -r1.116 src/doc/CHANGES.prev Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: tls Date: Sun Sep 16 18:59:29 UTC 2012 Modified Files: src/distrib/sets/lists/base: ad.mips64eb ad.mips64el md.amd64 md.sparc64 mi shl.mi src/distrib/sets/lists/comp: ad.mips64eb ad.mips64el md.amd64 md.sparc64 shl.mi src/distrib/sets/lists/man: mi src/external/bsd/liblzf: Makefile Makefile.inc src/external/bsd/liblzf/dist: lzf.c lzf.h lzfP.h lzf_c.c src/external/bsd/liblzf/lib: Makefile Added Files: src/external/bsd/liblzf/usr.bin: Makefile Makefile.inc src/external/bsd/liblzf/usr.bin/lzf: Makefile lzf.1 Log Message: *Sigh* provide, by default, the dumb "allocate 64K on the stack" variant of the lzf_compress API by default. This is because there is evidently code floating around out there in the world with broken autoconf scripts that don't check for LZF_STATE_ARG in the lzf header files and just assume the dumb version of the API. We rename the sane API to lzf_compress_r and implement the dumb API in terms of it. Consequently, bump liblzf major version number. This is fine because nothing used our liblzf with the old API. Add lzf(1) utility from LZF distribution. Add manual page for lzf(1). To generate a diff of this commit: cvs rdiff -u -r1.100 -r1.101 src/distrib/sets/lists/base/ad.mips64eb cvs rdiff -u -r1.99 -r1.100 src/distrib/sets/lists/base/ad.mips64el cvs rdiff -u -r1.176 -r1.177 src/distrib/sets/lists/base/md.amd64 cvs rdiff -u -r1.165 -r1.166 src/distrib/sets/lists/base/md.sparc64 cvs rdiff -u -r1.1007 -r1.1008 src/distrib/sets/lists/base/mi cvs rdiff -u -r1.636 -r1.637 src/distrib/sets/lists/base/shl.mi cvs rdiff -u -r1.89 -r1.90 src/distrib/sets/lists/comp/ad.mips64eb cvs rdiff -u -r1.91 -r1.92 src/distrib/sets/lists/comp/ad.mips64el cvs rdiff -u -r1.176 -r1.177 src/distrib/sets/lists/comp/md.amd64 cvs rdiff -u -r1.156 -r1.157 src/distrib/sets/lists/comp/md.sparc64 cvs rdiff -u -r1.234 -r1.235 src/distrib/sets/lists/comp/shl.mi cvs rdiff -u -r1.1402 -r1.1403 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.1 -r1.2 src/external/bsd/liblzf/Makefile \ src/external/bsd/liblzf/Makefile.inc cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/liblzf/dist/lzf.c cvs rdiff -u -r1.3 -r1.4 src/external/bsd/liblzf/dist/lzf.h \ src/external/bsd/liblzf/dist/lzf_c.c cvs rdiff -u -r1.2 -r1.3 src/external/bsd/liblzf/dist/lzfP.h cvs rdiff -u -r1.1 -r1.2 src/external/bsd/liblzf/lib/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/liblzf/usr.bin/Makefile \ src/external/bsd/liblzf/usr.bin/Makefile.inc cvs rdiff -u -r0 -r1.1 src/external/bsd/liblzf/usr.bin/lzf/Makefile \ src/external/bsd/liblzf/usr.bin/lzf/lzf.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/liblzf/usr.bin/lzf
Module Name:src Committed By: tls Date: Sun Sep 16 22:08:17 UTC 2012 Modified Files: src/external/bsd/liblzf/usr.bin/lzf: lzf.1 Log Message: Take wiz's suggestion. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/liblzf/usr.bin/lzf/lzf.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-maxphys] src/sys/ufs/ufs
Module Name:src Committed By: tls Date: Sun Oct 14 14:33:32 UTC 2012 Modified Files: src/sys/ufs/ufs [tls-maxphys]: ufs_readwrite.c Log Message: In the FFS writebehind code (ufs_readwrite.c:WRITE()), use division and multiplication instead of shifts, to accomodate devices with MAXPHYS that is a multiple of the page size, but not a power of 2. MegaRAID neatly writes out 192k chunks now. An open question: is is really a good idea to always writebehind at the largest size supported by the device? Likely not, as this could have a major impact on I/O fairness. OS X and Solaris both seem to limit transfers to 128k likely for this reason (the same problem exists with the readahead code but since it is adaptive, it will not *always* do huge transfers). However, simply imposing a smallish limit like 128k here seems like a bad idea because then we cannot accomodate greedy devices like RAID, for which you want something like 128k * number of data components. Hmm. To generate a diff of this commit: cvs rdiff -u -r1.104 -r1.104.2.1 src/sys/ufs/ufs/ufs_readwrite.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-maxphys] src/sys/dev/raidframe
Module Name:src Committed By: tls Date: Wed Oct 17 01:36:13 UTC 2012 Modified Files: src/sys/dev/raidframe [tls-maxphys]: rf_netbsdkintf.c Log Message: Add a minphys routine for raidframe. For now, we will address the problem of someone adding, at runtime with a filesystem mounted, a drive to an existing RAID set, that drive being on a different controller or bus such that it has a smaller maximum transfer size than the smallest such size of any component previously in the set, by clamping RAIDframe's reported maximum transfer size at the old MAXPHYS value multiplied by the number of data disks in the set. In the future, we could either implement transfer-splitting to the device specific maxphys in a generic way for all disks (Manuel's proposal, and probably the best solution) or simply forbid adding new components to RAID sets while running if those new components have a smaller maxphys than that of any component already in the set (my proposal; less flexible but a lot less code to write). Anyway, now you should be able to see your 5 disk RAID5 set do 256k transfers through the filesystem -- 64k per component instead of 64K total. A win! To generate a diff of this commit: cvs rdiff -u -r1.298 -r1.298.2.1 src/sys/dev/raidframe/rf_netbsdkintf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: tls Date: Sat Oct 27 01:29:02 UTC 2012 Modified Files: src/sys/kern: kern_rndq.c Log Message: Fix hardware RNGs -- accept their entropy estimates *rather than* using timestamps to estimate the entropy of their input. I'd accidentally made it so no entropy was ever counted from them at all. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/kern/kern_rndq.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-maxphys] src/sys/dev/pci
Module Name:src Committed By: tls Date: Sun Dec 2 05:46:04 UTC 2012 Modified Files: src/sys/dev/pci [tls-maxphys]: arcmsr.c arcmsrvar.h Log Message: Areca controller maximum-transfer size limits -- looked up in FreeBSD driver. Actually exporting the per-volume transfer size for this driver will be quite hard; the controller firmware shows the host the configured volumes when the host probes the controller's "scsibus", and we can't really associate them with particular RAID volumes until later. I think we will have to intercept the SCSI inquiry commands -- yuck. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.30.12.1 src/sys/dev/pci/arcmsr.c cvs rdiff -u -r1.14 -r1.14.12.1 src/sys/dev/pci/arcmsrvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-maxphys] src/sys
Module Name:src Committed By: tls Date: Sun Dec 2 05:46:40 UTC 2012 Modified Files: src/sys/arch/hp300/dev [tls-maxphys]: rd.c src/sys/arch/vax/mba [tls-maxphys]: hp.c src/sys/arch/vax/vsa [tls-maxphys]: hdc9224.c src/sys/dev [tls-maxphys]: ccd.c ccdvar.h fss.c src/sys/dev/dkwedge [tls-maxphys]: dk.c src/sys/dev/gpib [tls-maxphys]: rd.c src/sys/kern [tls-maxphys]: subr_disk.c Log Message: Don't pass NULL struct dkdriver to disk_init. That's seriously bogus. To generate a diff of this commit: cvs rdiff -u -r1.92.6.1 -r1.92.6.2 src/sys/arch/hp300/dev/rd.c cvs rdiff -u -r1.48 -r1.48.18.1 src/sys/arch/vax/mba/hp.c cvs rdiff -u -r1.51 -r1.51.18.1 src/sys/arch/vax/vsa/hdc9224.c cvs rdiff -u -r1.143 -r1.143.10.1 src/sys/dev/ccd.c cvs rdiff -u -r1.32 -r1.32.14.1 src/sys/dev/ccdvar.h cvs rdiff -u -r1.83 -r1.83.2.1 src/sys/dev/fss.c cvs rdiff -u -r1.64.2.1 -r1.64.2.2 src/sys/dev/dkwedge/dk.c cvs rdiff -u -r1.30.6.1 -r1.30.6.2 src/sys/dev/gpib/rd.c cvs rdiff -u -r1.100.18.1 -r1.100.18.2 src/sys/kern/subr_disk.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: tls Date: Sat Jan 26 16:05:34 UTC 2013 Modified Files: src/sys/kern: subr_cprng.c Log Message: Fix a security issue: when we are reseeding a PRNG seeded early in boot before we had ever had any entropy, if something else has consumed the entropy that triggered the immediate reseed, we can reseed with as little as sizeof(int) bytes of entropy. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/kern/subr_cprng.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: tls Date: Sat Jan 26 19:05:12 UTC 2013 Modified Files: src/sys/kern: kern_rndq.c src/sys/sys: rnd.h Log Message: Rather than holding samples from each source until we have 64 at a time to process, process them ASAP for low-rate sources, and for all sources if we have not yet acquired initial entropy. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.34 -r1.35 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: tls Date: Sat Jan 26 22:22:07 UTC 2013 Modified Files: src/sys/kern: kern_rndq.c Log Message: Tweak the previous a little: don't be so hasty to declare sources "fast" and process them in bulk, but, always declare hardware RNGs and VM system sources as "fast" since in these cases efficiency is important and data will be abundant. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/kern/kern_rndq.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-maxphys] src/sys
Module Name:src Committed By: tls Date: Sun Feb 10 16:26:35 UTC 2013 Modified Files: src/sys/dev/raidframe [tls-maxphys]: rf_disks.c src/sys/kern [tls-maxphys]: subr_disk.c src/sys/sys [tls-maxphys]: disk.h mount.h src/sys/ufs/ffs [tls-maxphys]: ffs_vfsops.c src/sys/ufs/ufs [tls-maxphys]: ufs_bmap.c ufs_extern.h ufs_readwrite.c ufs_vfsops.c Log Message: Add an accessor -- ufs_maxphys() -- to check the maximum transfer size for a given UFS mountpoint, and move the code from mount that finds the underlying disk and resets the mountpoint max transfer size into a utility function, ufs_update_maxphys(). Add a global serial number that counts disk property changes to which filesystems are meant to accomodate themselves. Make ufs_maxphys() check it. This is a sort of flag-polling interface that avoids callbacks into the filesystem code, but will require freezing filesystems and draining in-flight transactions before a decrease in size that is mandatory (like attaching a disk with a smaller maximum transfer size as a spare in a RAIDframe set), rather than "advisory", like finding out set geometry from a RAID controller long after boot and deciding a smaller transfer size would be optimal, can be signalled. Still, the "advisory" case is the common one so this is progress. Make a bit of an example of RAIDframe by making it bump this new serial number when disks are added to the subsystem. I will attack one of the hardware RAID drivers (probably arcmsr) next. To generate a diff of this commit: cvs rdiff -u -r1.83 -r1.83.2.1 src/sys/dev/raidframe/rf_disks.c cvs rdiff -u -r1.100.18.2 -r1.100.18.3 src/sys/kern/subr_disk.c cvs rdiff -u -r1.57.2.1 -r1.57.2.2 src/sys/sys/disk.h cvs rdiff -u -r1.207.6.2 -r1.207.6.3 src/sys/sys/mount.h cvs rdiff -u -r1.278.2.2 -r1.278.2.3 src/sys/ufs/ffs/ffs_vfsops.c cvs rdiff -u -r1.49.14.1 -r1.49.14.2 src/sys/ufs/ufs/ufs_bmap.c cvs rdiff -u -r1.72 -r1.72.2.1 src/sys/ufs/ufs/ufs_extern.h cvs rdiff -u -r1.104.2.1 -r1.104.2.2 src/sys/ufs/ufs/ufs_readwrite.c cvs rdiff -u -r1.51 -r1.51.2.1 src/sys/ufs/ufs/ufs_vfsops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/arch/amd64/conf
Module Name:src Committed By: tls Date: Sun Apr 6 15:59:42 UTC 2014 Added Files: src/sys/arch/amd64/conf [tls-earlyentropy]: RNDVERBOSE Log Message: RNDVERBOSE kernel for testing. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1.2.1 src/sys/arch/amd64/conf/RNDVERBOSE Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src
Module Name:src Committed By: tls Date: Mon Apr 7 01:10:55 UTC 2014 Modified Files: src/external/bsd/liblzf/dist [tls-earlyentropy]: lzfP.h lzf_c.c lzf_d.c src/sys/lib/libkern [tls-earlyentropy]: Makefile.libkern libkern.h Log Message: LZF in the kernel. As an entropy estimator for now but it's very small, and we could use it for ipcomp, for hibernation, for paging, for core dumps, etc. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.3.8.1 src/external/bsd/liblzf/dist/lzfP.h cvs rdiff -u -r1.4 -r1.4.8.1 src/external/bsd/liblzf/dist/lzf_c.c cvs rdiff -u -r1.3 -r1.3.22.1 src/external/bsd/liblzf/dist/lzf_d.c cvs rdiff -u -r1.32 -r1.32.2.1 src/sys/lib/libkern/Makefile.libkern cvs rdiff -u -r1.113 -r1.113.2.1 src/sys/lib/libkern/libkern.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys
Module Name:src Committed By: tls Date: Mon Apr 7 02:00:00 UTC 2014 Modified Files: src/sys/kern [tls-earlyentropy]: kern_rndpool.c kern_rndq.c src/sys/sys [tls-earlyentropy]: rnd.h Log Message: Entropy estimation changes: 1) Avoid wraparound problems with delta estimator by making estimation framework 64-bit. 2) Adjust rnd_counter to always return a 64-bit value, accordingly. 3) Make delta estimator generic and create two instances: delta-time and delta-value. 4) Add LZF estimator -- used mostly to protect us against injection of bulk data we think is random but is really constant. 5) Allow value and time estimation/collection to be controlled separately. 6) Expose estimator performance to userspace. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.2.1 src/sys/kern/kern_rndpool.c cvs rdiff -u -r1.23 -r1.23.2.1 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.40 -r1.40.2.1 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys
Module Name:src Committed By: tls Date: Mon Apr 7 02:20:00 UTC 2014 Modified Files: src/sys/kern [tls-earlyentropy]: init_main.c kern_rndq.c kern_sysctl.c subr_autoconf.c subr_prf.c src/sys/sys [tls-earlyentropy]: kprintf.h Log Message: Get more entropy into the system early: 1) Add device attach timings from autoconf. 2) Accumulate the output of kernel printf (as well as the times when it's called) and add this periodically. To avoid issues with recursion through diagnostic printfs, we use SHA512 to accumulate the printf output, then mix in its output. 3) Add all sysctl settings -- mixes in the hostname and likely a bit more. To generate a diff of this commit: cvs rdiff -u -r1.454 -r1.454.2.1 src/sys/kern/init_main.c cvs rdiff -u -r1.23.2.1 -r1.23.2.2 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.249 -r1.249.2.1 src/sys/kern/kern_sysctl.c cvs rdiff -u -r1.230 -r1.230.2.1 src/sys/kern/subr_autoconf.c cvs rdiff -u -r1.153 -r1.153.2.1 src/sys/kern/subr_prf.c cvs rdiff -u -r1.11 -r1.11.26.1 src/sys/sys/kprintf.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/net
Module Name:src Committed By: tls Date: Mon Apr 7 02:24:31 UTC 2014 Modified Files: src/sys/net [tls-earlyentropy]: if_ethersubr.c Log Message: Increase unpredictability of early output: mix in the headers of the first 100 Ethernet packets received by the system (if we are really short of entropy, keep mixing them though we don't count any entropy from them; such systems are particularly likely to have guessable outputs). To generate a diff of this commit: cvs rdiff -u -r1.196 -r1.196.2.1 src/sys/net/if_ethersubr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sbin/rndctl
Module Name:src Committed By: tls Date: Mon Apr 7 02:49:52 UTC 2014 Modified Files: src/sbin/rndctl [tls-earlyentropy]: rndctl.8 rndctl.c Log Message: Update rndctl(8) to add the -v option, which gives us more robust information on entropy collection and estimation. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.20.16.1 src/sbin/rndctl/rndctl.8 cvs rdiff -u -r1.27 -r1.27.2.1 src/sbin/rndctl/rndctl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/dev
Module Name:src Committed By: tls Date: Mon Apr 7 02:54:53 UTC 2014 Modified Files: src/sys/dev [tls-earlyentropy]: rndpseudo.c Log Message: Whups. It'd help to check in the ioctl changes needed to support that rndctl change just prior... ;-) To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.19.2.1 src/sys/dev/rndpseudo.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src
Module Name:src Committed By: tls Date: Mon Apr 7 03:37:33 UTC 2014 Modified Files: src/share/man/man9 [tls-earlyentropy]: rnd.9 src/sys/arch/acorn26/ioc [tls-earlyentropy]: arckbd.c src/sys/arch/arm/at91 [tls-earlyentropy]: at91dbgu.c at91usart.c src/sys/arch/arm/broadcom [tls-earlyentropy]: bcm2835_rng.c bcm53xx_rng.c src/sys/arch/arm/clps711x [tls-earlyentropy]: clpscom.c src/sys/arch/arm/ep93xx [tls-earlyentropy]: epcom.c src/sys/arch/arm/imx [tls-earlyentropy]: imxuart.c src/sys/arch/arm/ixp12x0 [tls-earlyentropy]: ixp12x0_com.c src/sys/arch/arm/s3c2xx0 [tls-earlyentropy]: sscom.c src/sys/arch/arm/sa11x0 [tls-earlyentropy]: sa_kbc.c sa11x0_com.c src/sys/arch/arm/xscale [tls-earlyentropy]: ixp425_if_npe.c src/sys/arch/emips/ebus [tls-earlyentropy]: ace_ebus.c flash_ebus.c if_le_ebus.c src/sys/arch/epoc32/windermere [tls-earlyentropy]: wmcom.c src/sys/arch/evbarm/dev [tls-earlyentropy]: plcom.c src/sys/arch/hp300/dev [tls-earlyentropy]: rd.c src/sys/arch/hppa/gsc [tls-earlyentropy]: harmony.c src/sys/arch/i386/pci [tls-earlyentropy]: glxsb.c src/sys/arch/macppc/dev [tls-earlyentropy]: if_gm.c src/sys/arch/mips/alchemy/dev [tls-earlyentropy]: if_aumac.c src/sys/arch/mips/atheros/dev [tls-earlyentropy]: if_ae.c src/sys/arch/mips/sibyte/dev [tls-earlyentropy]: sbscn.c src/sys/arch/next68k/dev [tls-earlyentropy]: mb8795.c src/sys/arch/playstation2/dev [tls-earlyentropy]: if_smap.c src/sys/arch/sgimips/mace [tls-earlyentropy]: if_mec.c src/sys/arch/sun2/dev [tls-earlyentropy]: if_ec.c src/sys/arch/x68k/dev [tls-earlyentropy]: fd.c src/sys/arch/x86/pci [tls-earlyentropy]: fwhrng.c src/sys/arch/x86/x86 [tls-earlyentropy]: ipmi.c via_padlock.c viac7temp.c src/sys/arch/xen/xen [tls-earlyentropy]: if_xennet_xenbus.c xbd_xenbus.c src/sys/dev [tls-earlyentropy]: ld.c src/sys/dev/ata [tls-earlyentropy]: wd.c src/sys/dev/gpib [tls-earlyentropy]: rd.c src/sys/dev/i2c [tls-earlyentropy]: dbcool.c src/sys/dev/ic [tls-earlyentropy]: com.c cs89x0.c dp8390.c elink3.c elinkxl.c gem.c hme.c i82557.c lan9118.c lance.c lemac.c mb86950.c mb86960.c mtd803.c pckbc.c rtl8169.c rtl81x9.c seeq8005.c smc91cxx.c tulip.c src/sys/dev/isa [tls-earlyentropy]: fd.c if_eg.c if_el.c if_iy.c src/sys/dev/marvell [tls-earlyentropy]: if_gfe.c if_mvgbe.c src/sys/dev/mca [tls-earlyentropy]: ed_mca.c src/sys/dev/pci [tls-earlyentropy]: amdpm.c auich.c hifn7751.c if_bce.c if_bge.c if_cas.c if_de.c if_dge.c if_jme.c if_msk.c if_pcn.c if_sip.c if_sk.c if_tl.c if_vr.c if_vte.c if_wm.c ubsec.c viaenv.c src/sys/dev/pcmcia [tls-earlyentropy]: if_xi.c src/sys/dev/scsipi [tls-earlyentropy]: cd.c sd.c st.c src/sys/dev/sysmon [tls-earlyentropy]: sysmon_envsys.c sysmon_power.c src/sys/dev/usb [tls-earlyentropy]: if_aue.c if_axe.c if_axen.c if_cue.c if_kue.c if_smsc.c if_udav.c if_upl.c if_url.c ucom.c uhidev.c src/sys/rump/librump/rumpkern [tls-earlyentropy]: hyperentropy.c src/sys/uvm [tls-earlyentropy]: uvm.h uvm_fault.c uvm_page.c src/usr.bin/fstat [tls-earlyentropy]: misc.c Log Message: Be a little more clear and consistent about harvesting entropy from devices: 1) deprecate RND_FLAG_NO_ESTIMATE 2) define RND_FLAG_COLLECT_TIME, RND_FLAG_COLLECT_VALUE 3) define RND_FLAG_ESTIMATE_TIME, RND_FLAG_ESTIMATE_VALUE 4) define RND_FLAG_DEFAULT: RND_FLAG_COLLECT_TIME| RND_FLAG_COLLECT_VALUE|RND_FLAG_ESTIMATE_TIME 5) Make entropy harvesting from environmental sensors a little more generic and remove it from individual sensor drivers. 6) Remove individual open-coded delta-estimators for values from a few places in the tree (uvm, environmental drivers). 7) 0 -> RND_FLAG_DEFAULT, actually gather entropy from various drivers that had stubbed out code, other minor cleanups. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.22.8.1 src/share/man/man9/rnd.9 cvs rdiff -u -r1.22 -r1.22.20.1 src/sys/arch/acorn26/ioc/arckbd.c cvs rdiff -u -r1.10 -r1.10.2.1 src/sys/arch/arm/at91/at91dbgu.c cvs rdiff -u -r1.9 -r1.9.2.1 src/sys/arch/arm/at91/at91usart.c cvs rdiff -u -r1.9 -r1.9.2.1 src/sys/arch/arm/broadcom/bcm2835_rng.c cvs rdiff -u -r1.6 -r1.6.2.1 src/sys/arch/arm/broadcom/bcm53xx_rng.c cvs rdiff -u -r1.2 -r1.2.2.1 src/sys/arch/arm/clps711x/clpscom.c cvs rdiff -u -r1.26 -r1.26.2.1 src/sys/arch/arm/ep93xx/epcom.c cvs rdiff -u -r1.11 -r1.11.2.1 src/sys/arch/arm/imx/imxuart.c cvs rdiff -u -r1.43 -r1.43.2.1 src/sys/arch/arm/ixp12x0/ixp12x0_com.c cvs rdiff -u -r1.44 -r1.44.2.1 src/sys/arch/arm/s3c2xx0/sscom.c cvs rdiff -u -r1.16 -r1.16.10.1 src/sys/ar
CVS commit: [tls-earlyentropy] src/tests/kernel
Module Name:src Committed By: tls Date: Mon Apr 7 19:32:16 UTC 2014 Modified Files: src/tests/kernel [tls-earlyentropy]: Makefile gen_t_subr_prf Log Message: Fix t_subr_prf.c -- such as is possible. I am not so sure about the idea of tearing apart a source file with a script in order to "test" pieces of it... To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.33.4.1 src/tests/kernel/Makefile cvs rdiff -u -r1.3 -r1.3.6.1 src/tests/kernel/gen_t_subr_prf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/arch/xen/xen
Module Name:src Committed By: tls Date: Tue Apr 8 23:54:23 UTC 2014 Modified Files: src/sys/arch/xen/xen [tls-earlyentropy]: xbd_xenbus.c Log Message: Type fixo. To generate a diff of this commit: cvs rdiff -u -r1.62.2.1 -r1.62.2.2 src/sys/arch/xen/xen/xbd_xenbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/kern
Module Name:src Committed By: tls Date: Wed Apr 9 03:39:44 UTC 2014 Modified Files: src/sys/kern [tls-earlyentropy]: kern_rndq.c Log Message: Correct misplaced parenthesis on sizeof(cpu_counter()) expression. No security impact. Thanks rmind@, Dave Huang. To generate a diff of this commit: cvs rdiff -u -r1.23.2.2 -r1.23.2.3 src/sys/kern/kern_rndq.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/kern
Module Name:src Committed By: tls Date: Wed Apr 9 03:41:30 UTC 2014 Modified Files: src/sys/kern [tls-earlyentropy]: subr_prf.c Log Message: Skip mutex_tryenter() if !kprnd_added. To generate a diff of this commit: cvs rdiff -u -r1.153.2.1 -r1.153.2.2 src/sys/kern/subr_prf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/utils/sysinst
Module Name:src Committed By: tls Date: Wed Apr 9 03:54:17 UTC 2014 Modified Files: src/distrib/utils/sysinst [tls-earlyentropy]: util.c Log Message: Try to persistently gather some entropy at install time, to give the fresh system a better chance of not doing awful things like generating guessable SSH host keys. Handles both systems with /var on / and /var on its own filesystem. Tries to preserve old saved entropy when upgrading. To generate a diff of this commit: cvs rdiff -u -r1.184 -r1.184.2.1 src/distrib/utils/sysinst/util.c 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
Module Name:src Committed By: tls Date: Tue May 27 02:21:29 UTC 2014 Modified Files: src/sys/dev/pci: if_wm.c Log Message: >From dyoung@ -- bump max TX DMA size to avoid pathological condition with TSO. To generate a diff of this commit: cvs rdiff -u -r1.268 -r1.269 src/sys/dev/pci/if_wm.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: src/external/zlib/pigz/dist
Module Name:src Committed By: tls Date: Sun Jun 15 17:37:22 UTC 2014 Update of /cvsroot/src/external/zlib/pigz/dist In directory ivanova.netbsd.org:/tmp/cvs-serv11940 Log Message: pigz 2.3.1 Status: Vendor Tag: adler Release Tags: pigz-2-3-1 U src/external/zlib/pigz/dist/Makefile C src/external/zlib/pigz/dist/pigz.1 U src/external/zlib/pigz/dist/pigz.c U src/external/zlib/pigz/dist/pigz.pdf U src/external/zlib/pigz/dist/pigz.spec U src/external/zlib/pigz/dist/README U src/external/zlib/pigz/dist/yarn.c U src/external/zlib/pigz/dist/yarn.h N src/external/zlib/pigz/dist/zopfli/blocksplitter.c N src/external/zlib/pigz/dist/zopfli/blocksplitter.h N src/external/zlib/pigz/dist/zopfli/cache.c N src/external/zlib/pigz/dist/zopfli/cache.h N src/external/zlib/pigz/dist/zopfli/CONTRIBUTORS N src/external/zlib/pigz/dist/zopfli/COPYING N src/external/zlib/pigz/dist/zopfli/deflate.c N src/external/zlib/pigz/dist/zopfli/deflate.h N src/external/zlib/pigz/dist/zopfli/gzip_container.c N src/external/zlib/pigz/dist/zopfli/gzip_container.h N src/external/zlib/pigz/dist/zopfli/hash.c N src/external/zlib/pigz/dist/zopfli/hash.h N src/external/zlib/pigz/dist/zopfli/katajainen.c N src/external/zlib/pigz/dist/zopfli/katajainen.h N src/external/zlib/pigz/dist/zopfli/lz77.c N src/external/zlib/pigz/dist/zopfli/lz77.h N src/external/zlib/pigz/dist/zopfli/makefile N src/external/zlib/pigz/dist/zopfli/README N src/external/zlib/pigz/dist/zopfli/squeeze.c N src/external/zlib/pigz/dist/zopfli/squeeze.h N src/external/zlib/pigz/dist/zopfli/tree.c N src/external/zlib/pigz/dist/zopfli/tree.h N src/external/zlib/pigz/dist/zopfli/util.c N src/external/zlib/pigz/dist/zopfli/util.h N src/external/zlib/pigz/dist/zopfli/zlib_container.c N src/external/zlib/pigz/dist/zopfli/zlib_container.h N src/external/zlib/pigz/dist/zopfli/zopfli.h N src/external/zlib/pigz/dist/zopfli/zopfli_bin.c N src/external/zlib/pigz/dist/zopfli/zopfli_lib.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jadler:yesterday -jadler src/external/zlib/pigz/dist
CVS commit: src/external/zlib/pigz/dist
Module Name:src Committed By: tls Date: Sun Jun 15 17:53:19 UTC 2014 Modified Files: src/external/zlib/pigz/dist: pigz.1 Removed Files: src/external/zlib/pigz/dist: pigz.ps Log Message: Update pigz to 2.3.1 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/zlib/pigz/dist/pigz.1 cvs rdiff -u -r1.1.1.1 -r0 src/external/zlib/pigz/dist/pigz.ps Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/zlib/pigz/bin/pigz
Module Name:src Committed By: tls Date: Sun Jun 15 17:54:55 UTC 2014 Modified Files: src/external/zlib/pigz/bin/pigz: Makefile Log Message: Update pigz to 2.3.1 To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/zlib/pigz/bin/pigz/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: tls Date: Sun Jun 15 17:55:43 UTC 2014 Modified Files: src/doc: 3RDPARTY Log Message: Update pigz to 2.3.1 To generate a diff of this commit: cvs rdiff -u -r1.1122 -r1.1123 src/doc/3RDPARTY Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: tls Date: Sun Jul 13 22:06:56 UTC 2014 Modified Files: src/etc/rc.d: named src/external/bsd/bind/dist: configure configure.in src/external/bsd/bind/include: config.h Log Message: Make named and the rest of BIND seed their RNG from /dev/urandom, not /dev/random. Better would be to rip the enormous gonkulating RNG machinery out of libisc entirely. Later. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/etc/rc.d/named cvs rdiff -u -r1.1.1.13 -r1.2 src/external/bsd/bind/dist/configure cvs rdiff -u -r1.4 -r1.5 src/external/bsd/bind/dist/configure.in cvs rdiff -u -r1.13 -r1.14 src/external/bsd/bind/include/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src
Module Name:src Committed By: tls Date: Thu Jul 17 14:03:33 UTC 2014 Modified Files: src/sbin/rndctl [tls-earlyentropy]: rndctl.c src/sys/conf [tls-earlyentropy]: files src/sys/crypto/arc4 [tls-earlyentropy]: arc4.c arc4.h files.arc4 src/sys/dev [tls-earlyentropy]: rndpseudo.c src/sys/kern [tls-earlyentropy]: init_main.c kern_rndq.c subr_cprng.c subr_prf.c src/sys/lib/libkern [tls-earlyentropy]: Makefile.libkern src/sys/nfs [tls-earlyentropy]: nfs_subs.c src/sys/sys [tls-earlyentropy]: cprng.h rnd.h Added Files: src/sys/crypto/ccrand [tls-earlyentropy]: ccrand.h ccrand2.c ccrand32.c ccrand64.c ccrand_bytes.c ccrand_gen16.c ccrand_reseed.c ccrand_seed.c ccrand_seed32.c ccrand_seed64.c ccrand_use.c ccrand_var.h ccrand_words.c ccrandn.c files.ccrand Removed Files: src/sys/lib/libkern [tls-earlyentropy]: arc4random.c Log Message: Adjustments to the "earlyentropy" branch in response to the various discussions beginning with my initial proposal http://mail-index.netbsd.org/tech-kern/2014/04/08/msg016876.html and particularly the long discussion of cprng_fast() performance (e.g. https://mail-index.netbsd.org/tech-crypto/2014/04/21/msg000642.html). In particular: * Per-CPU, lockless cprng_fast replacement using Dennis Ferguson's "ccrand" implementation of ChaCha8. * libkern arc4random() is gone, gone, gone. * Entropy estimator reverted to 32-bit recordkeeping and timestamps per Dennis' comments and analysis. * LZF entropy estimator removed: it required a great deal of state, and rejected only truly pathological input. I have not yet reverted the changes that provide LZF in the kernel as generic functionality; I will likely revert those changes prior to any merge of this branch to HEAD. To generate a diff of this commit: cvs rdiff -u -r1.27.2.1 -r1.27.2.2 src/sbin/rndctl/rndctl.c cvs rdiff -u -r1.1090 -r1.1090.2.1 src/sys/conf/files cvs rdiff -u -r1.6 -r1.6.136.1 src/sys/crypto/arc4/arc4.c cvs rdiff -u -r1.4 -r1.4.136.1 src/sys/crypto/arc4/arc4.h cvs rdiff -u -r1.1 -r1.1.172.1 src/sys/crypto/arc4/files.arc4 cvs rdiff -u -r0 -r1.1.2.1 src/sys/crypto/ccrand/ccrand.h \ src/sys/crypto/ccrand/ccrand2.c src/sys/crypto/ccrand/ccrand32.c \ src/sys/crypto/ccrand/ccrand64.c src/sys/crypto/ccrand/ccrand_bytes.c \ src/sys/crypto/ccrand/ccrand_gen16.c \ src/sys/crypto/ccrand/ccrand_reseed.c src/sys/crypto/ccrand/ccrand_seed.c \ src/sys/crypto/ccrand/ccrand_seed32.c \ src/sys/crypto/ccrand/ccrand_seed64.c src/sys/crypto/ccrand/ccrand_use.c \ src/sys/crypto/ccrand/ccrand_var.h src/sys/crypto/ccrand/ccrand_words.c \ src/sys/crypto/ccrand/ccrandn.c src/sys/crypto/ccrand/files.ccrand cvs rdiff -u -r1.19.2.1 -r1.19.2.2 src/sys/dev/rndpseudo.c cvs rdiff -u -r1.454.2.1 -r1.454.2.2 src/sys/kern/init_main.c cvs rdiff -u -r1.23.2.3 -r1.23.2.4 src/sys/kern/kern_rndq.c cvs rdiff -u -r1.23 -r1.23.2.1 src/sys/kern/subr_cprng.c cvs rdiff -u -r1.153.2.2 -r1.153.2.3 src/sys/kern/subr_prf.c cvs rdiff -u -r1.32.2.1 -r1.32.2.2 src/sys/lib/libkern/Makefile.libkern cvs rdiff -u -r1.35 -r0 src/sys/lib/libkern/arc4random.c cvs rdiff -u -r1.225 -r1.225.2.1 src/sys/nfs/nfs_subs.c cvs rdiff -u -r1.9 -r1.9.2.1 src/sys/sys/cprng.h cvs rdiff -u -r1.40.2.1 -r1.40.2.2 src/sys/sys/rnd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src
Module Name:src Committed By: tls Date: Sat Aug 9 06:19:50 UTC 2014 Modified Files: src/sys/conf [tls-earlyentropy]: files src/sys/kern [tls-earlyentropy]: subr_cprng.c src/sys/rump/librump/rumpkern [tls-earlyentropy]: Makefile.rumpkern src/sys/sys [tls-earlyentropy]: cprng.h rnd.h src/usr.sbin/npf/npftest/libnpftest [tls-earlyentropy]: npf_test_subr.c Added Files: src/sys/crypto/cprng_fast [tls-earlyentropy]: cprng_fast.c cprng_fast.h files.cprng_fast Removed Files: src/sys/crypto/ccrand [tls-earlyentropy]: ccrand.h ccrand2.c ccrand32.c ccrand64.c ccrand_bytes.c ccrand_gen16.c ccrand_reseed.c ccrand_seed.c ccrand_seed32.c ccrand_seed64.c ccrand_use.c ccrand_var.h ccrand_words.c ccrandn.c files.ccrand Log Message: Replace "ccrand" ChaCha implementation of cprng_fast with Taylor's smaller and somewhat simpler one. Fix rump builds so we can build a distribution. To generate a diff of this commit: cvs rdiff -u -r1.1090.2.1 -r1.1090.2.2 src/sys/conf/files cvs rdiff -u -r1.1.2.1 -r0 src/sys/crypto/ccrand/ccrand.h \ src/sys/crypto/ccrand/ccrand2.c src/sys/crypto/ccrand/ccrand32.c \ src/sys/crypto/ccrand/ccrand64.c src/sys/crypto/ccrand/ccrand_bytes.c \ src/sys/crypto/ccrand/ccrand_gen16.c \ src/sys/crypto/ccrand/ccrand_reseed.c src/sys/crypto/ccrand/ccrand_seed.c \ src/sys/crypto/ccrand/ccrand_seed32.c \ src/sys/crypto/ccrand/ccrand_seed64.c src/sys/crypto/ccrand/ccrand_use.c \ src/sys/crypto/ccrand/ccrand_var.h src/sys/crypto/ccrand/ccrand_words.c \ src/sys/crypto/ccrand/ccrandn.c src/sys/crypto/ccrand/files.ccrand cvs rdiff -u -r0 -r1.1.2.1 src/sys/crypto/cprng_fast/cprng_fast.c \ src/sys/crypto/cprng_fast/cprng_fast.h \ src/sys/crypto/cprng_fast/files.cprng_fast cvs rdiff -u -r1.23.2.1 -r1.23.2.2 src/sys/kern/subr_cprng.c cvs rdiff -u -r1.143 -r1.143.2.1 \ src/sys/rump/librump/rumpkern/Makefile.rumpkern cvs rdiff -u -r1.9.2.1 -r1.9.2.2 src/sys/sys/cprng.h cvs rdiff -u -r1.40.2.2 -r1.40.2.3 src/sys/sys/rnd.h cvs rdiff -u -r1.9 -r1.9.2.1 \ src/usr.sbin/npf/npftest/libnpftest/npf_test_subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/sys/lib/libkern
Module Name:src Committed By: tls Date: Sat Aug 9 07:45:03 UTC 2014 Modified Files: src/sys/lib/libkern [tls-earlyentropy]: Makefile.libkern libkern.h Log Message: (Temporarily) disable LZF in libkern -- it introduces a dependency from src/sys to src/external which I'll need to fix by moving the LZF sources. To generate a diff of this commit: cvs rdiff -u -r1.32.2.2 -r1.32.2.3 src/sys/lib/libkern/Makefile.libkern cvs rdiff -u -r1.113.2.1 -r1.113.2.2 src/sys/lib/libkern/libkern.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/bin
Module Name:src Committed By: tls Date: Sun Aug 10 06:41:18 UTC 2014 Modified Files: src/bin/cat [tls-earlyentropy]: cat.1 src/bin/csh [tls-earlyentropy]: Makefile src/bin/csh/USD.doc [tls-earlyentropy]: Makefile src/bin/ls [tls-earlyentropy]: print.c src/bin/pax [tls-earlyentropy]: ar_io.c src/bin/ps [tls-earlyentropy]: extern.h print.c ps.c ps.h src/bin/sh [tls-earlyentropy]: Makefile alias.c alias.h eval.c eval.h histedit.c jobs.c main.c sh.1 src/bin/sh/USD.doc [tls-earlyentropy]: Makefile Added Files: src/bin/sh/USD.doc [tls-earlyentropy]: referargs Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.36.8.1 src/bin/cat/cat.1 cvs rdiff -u -r1.39 -r1.39.4.1 src/bin/csh/Makefile cvs rdiff -u -r1.7 -r1.7.48.1 src/bin/csh/USD.doc/Makefile cvs rdiff -u -r1.54 -r1.54.2.1 src/bin/ls/print.c cvs rdiff -u -r1.54 -r1.54.10.1 src/bin/pax/ar_io.c cvs rdiff -u -r1.34 -r1.34.2.1 src/bin/ps/extern.h cvs rdiff -u -r1.121 -r1.121.2.1 src/bin/ps/print.c cvs rdiff -u -r1.80 -r1.80.2.1 src/bin/ps/ps.c cvs rdiff -u -r1.26 -r1.26.60.1 src/bin/ps/ps.h cvs rdiff -u -r1.99 -r1.99.8.1 src/bin/sh/Makefile cvs rdiff -u -r1.14 -r1.14.20.1 src/bin/sh/alias.c cvs rdiff -u -r1.7 -r1.7.20.1 src/bin/sh/alias.h cvs rdiff -u -r1.108 -r1.108.2.1 src/bin/sh/eval.c cvs rdiff -u -r1.15 -r1.15.46.1 src/bin/sh/eval.h cvs rdiff -u -r1.46 -r1.46.2.1 src/bin/sh/histedit.c cvs rdiff -u -r1.72 -r1.72.2.1 src/bin/sh/jobs.c cvs rdiff -u -r1.57 -r1.57.20.1 src/bin/sh/main.c cvs rdiff -u -r1.112 -r1.112.2.1 src/bin/sh/sh.1 cvs rdiff -u -r1.1 -r1.1.24.1 src/bin/sh/USD.doc/Makefile cvs rdiff -u -r0 -r1.1.2.2 src/bin/sh/USD.doc/referargs Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/common/lib
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:06 UTC 2014 Modified Files: src/common/lib/libc/arch/arm/atomic [tls-earlyentropy]: Makefile.inc atomic_add_16.S atomic_add_32.S atomic_add_8.S atomic_and_16.S atomic_and_32.S atomic_and_8.S atomic_or_16.S atomic_or_32.S atomic_or_8.S atomic_swap.S atomic_swap_16.S atomic_swap_64.S atomic_xor_16.S atomic_xor_32.S atomic_xor_8.S sync_fetch_and_add_8.S sync_fetch_and_and_8.S sync_fetch_and_or_8.S sync_fetch_and_sub_8.S sync_fetch_and_xor_8.S src/common/lib/libc/arch/arm/quad [tls-earlyentropy]: __aeabi_ldivmod.S __aeabi_uldivmod.S src/common/lib/libc/arch/arm/string [tls-earlyentropy]: strcat_arm.S strlcat_arm.S strlen_arm.S src/common/lib/libc/arch/i386/atomic [tls-earlyentropy]: atomic.S src/common/lib/libc/arch/i386/gen [tls-earlyentropy]: byte_swap_2.S byte_swap_4.S src/common/lib/libc/arch/i386/string [tls-earlyentropy]: memset.S src/common/lib/libc/arch/i386/string/small [tls-earlyentropy]: memcpy.S src/common/lib/libc/arch/m68k/atomic [tls-earlyentropy]: atomic_add.S atomic_and.S atomic_or.S atomic_sub.S atomic_swap.S atomic_xor.S src/common/lib/libc/arch/x86_64/atomic [tls-earlyentropy]: atomic.S src/common/lib/libc/arch/x86_64/gen [tls-earlyentropy]: byte_swap_2.S byte_swap_4.S byte_swap_8.S src/common/lib/libc/arch/x86_64/string [tls-earlyentropy]: memset.S src/common/lib/libc/atomic [tls-earlyentropy]: atomic_add_16_cas.c atomic_add_32_cas.c atomic_add_64_cas.c atomic_add_8_cas.c atomic_and_16_cas.c atomic_and_32_cas.c atomic_and_64_cas.c atomic_and_8_cas.c atomic_or_16_cas.c atomic_or_32_cas.c atomic_or_64_cas.c atomic_or_8_cas.c atomic_sub_16_cas.c atomic_sub_32_cas.c atomic_sub_64_cas.c atomic_sub_8_cas.c atomic_swap_16_cas.c atomic_swap_32_cas.c atomic_swap_64_cas.c atomic_swap_8_cas.c atomic_xor_16_cas.c atomic_xor_32_cas.c atomic_xor_64_cas.c atomic_xor_8_cas.c src/common/lib/libc/stdlib [tls-earlyentropy]: random.c src/common/lib/libc/string [tls-earlyentropy]: bcopy.c consttime_memequal.c explicit_memset.c src/common/lib/libutil [tls-earlyentropy]: snprintb.c src/common/lib/libx86emu [tls-earlyentropy]: x86emu.c Added Files: src/common/lib/libc/atomic [tls-earlyentropy]: atomic_load.c atomic_store.c src/common/lib/libc/string [tls-earlyentropy]: strcspn.c strpbrk.c strspn.c Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.22.2.1 \ src/common/lib/libc/arch/arm/atomic/Makefile.inc cvs rdiff -u -r1.2 -r1.2.2.1 \ src/common/lib/libc/arch/arm/atomic/atomic_add_16.S \ src/common/lib/libc/arch/arm/atomic/atomic_add_8.S \ src/common/lib/libc/arch/arm/atomic/atomic_and_16.S \ src/common/lib/libc/arch/arm/atomic/atomic_and_8.S \ src/common/lib/libc/arch/arm/atomic/atomic_or_16.S \ src/common/lib/libc/arch/arm/atomic/atomic_or_8.S \ src/common/lib/libc/arch/arm/atomic/atomic_swap_16.S \ src/common/lib/libc/arch/arm/atomic/atomic_xor_16.S \ src/common/lib/libc/arch/arm/atomic/atomic_xor_32.S \ src/common/lib/libc/arch/arm/atomic/atomic_xor_8.S \ src/common/lib/libc/arch/arm/atomic/sync_fetch_and_add_8.S \ src/common/lib/libc/arch/arm/atomic/sync_fetch_and_and_8.S \ src/common/lib/libc/arch/arm/atomic/sync_fetch_and_or_8.S \ src/common/lib/libc/arch/arm/atomic/sync_fetch_and_sub_8.S \ src/common/lib/libc/arch/arm/atomic/sync_fetch_and_xor_8.S cvs rdiff -u -r1.7 -r1.7.2.1 \ src/common/lib/libc/arch/arm/atomic/atomic_add_32.S \ src/common/lib/libc/arch/arm/atomic/atomic_and_32.S \ src/common/lib/libc/arch/arm/atomic/atomic_or_32.S cvs rdiff -u -r1.10 -r1.10.2.1 \ src/common/lib/libc/arch/arm/atomic/atomic_swap.S cvs rdiff -u -r1.8 -r1.8.2.1 \ src/common/lib/libc/arch/arm/atomic/atomic_swap_64.S cvs rdiff -u -r1.12 -r1.12.2.1 \ src/common/lib/libc/arch/arm/quad/__aeabi_ldivmod.S cvs rdiff -u -r1.8 -r1.8.2.1 \ src/common/lib/libc/arch/arm/quad/__aeabi_uldivmod.S cvs rdiff -u -r1.5 -r1.5.2.1 src/common/lib/libc/arch/arm/string/strcat_arm.S \ src/common/lib/libc/arch/arm/string/strlcat_arm.S cvs rdiff -u -r1.8 -r1.8.2.1 src/common/lib/libc/arch/arm/string/strlen_arm.S cvs rdiff -u -r1.20 -r1.20.2.1 src/common/lib/libc/arch/i386/atomic/atomic.S cvs rdiff -u -r1.3 -r1.3.48.1 src/common/lib/libc/arch/i386/gen/byte_swap_2.S \ src/common/lib/libc/arch/i386/gen/byte_swap_4.S cvs rdiff -u -r1.4 -r1.4.40.1 src/common/lib/libc/arch/i386/string/memset.S cvs rdiff -u -r1.1 -r1.1.20.1 \ src/common/lib/libc/arch/i386/string/small/memcpy.S cvs rdiff -u -r1.9 -r1.9.2.1 \ src/common/lib/libc/arch/m68k/atomic/ato
CVS commit: [tls-earlyentropy] src/distrib/alpha
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:47 UTC 2014 Modified Files: src/distrib/alpha/floppy-GENERIC [tls-earlyentropy]: Makefile src/distrib/alpha/instkernel/ramdisk [tls-earlyentropy]: list src/distrib/alpha/rz25dist [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.21.2.1 src/distrib/alpha/floppy-GENERIC/Makefile cvs rdiff -u -r1.44 -r1.44.20.1 src/distrib/alpha/instkernel/ramdisk/list cvs rdiff -u -r1.30 -r1.30.2.1 src/distrib/alpha/rz25dist/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/crypto/dist/ipsec-tools/src/racoon
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:09 UTC 2014 Modified Files: src/crypto/dist/ipsec-tools/src/racoon [tls-earlyentropy]: grabmyaddr.c Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.33.2.1 \ src/crypto/dist/ipsec-tools/src/racoon/grabmyaddr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/bebox/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:52 UTC 2014 Modified Files: src/distrib/bebox/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.24.1 src/distrib/bebox/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/amd64
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:49 UTC 2014 Modified Files: src/distrib/amd64/cdroms [tls-earlyentropy]: Makefile.cdrom etc.rc src/distrib/amd64/installimage [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.8.8.1 src/distrib/amd64/cdroms/Makefile.cdrom cvs rdiff -u -r1.1 -r1.1.24.1 src/distrib/amd64/cdroms/etc.rc cvs rdiff -u -r1.3 -r1.3.8.1 src/distrib/amd64/installimage/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/cobalt
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:54 UTC 2014 Modified Files: src/distrib/cobalt [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.2.1 src/distrib/cobalt/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/ews4800mips/floppies/instkernel
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:04 UTC 2014 Modified Files: src/distrib/ews4800mips/floppies/instkernel [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.2.1 \ src/distrib/ews4800mips/floppies/instkernel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/i386
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:09 UTC 2014 Modified Files: src/distrib/i386/cdroms [tls-earlyentropy]: Makefile.cdrom etc.rc src/distrib/i386/installimage [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.28.8.1 src/distrib/i386/cdroms/Makefile.cdrom cvs rdiff -u -r1.1 -r1.1.24.1 src/distrib/i386/cdroms/etc.rc cvs rdiff -u -r1.3 -r1.3.8.1 src/distrib/i386/installimage/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/common
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:57 UTC 2014 Modified Files: src/distrib/common [tls-earlyentropy]: Makefile.bootcd Makefile.image Makefile.mdset Makefile.minirootkmod Makefile.tarfloppy list.sysinst list.sysinst.en src/distrib/common/bootimage [tls-earlyentropy]: Makefile.bootimage Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.24.2.1 src/distrib/common/Makefile.bootcd cvs rdiff -u -r1.33 -r1.33.2.1 src/distrib/common/Makefile.image cvs rdiff -u -r1.39 -r1.39.2.1 src/distrib/common/Makefile.mdset cvs rdiff -u -r1.2 -r1.2.2.1 src/distrib/common/Makefile.minirootkmod cvs rdiff -u -r1.17 -r1.17.2.1 src/distrib/common/Makefile.tarfloppy cvs rdiff -u -r1.12 -r1.12.64.1 src/distrib/common/list.sysinst cvs rdiff -u -r1.1 -r1.1.72.1 src/distrib/common/list.sysinst.en cvs rdiff -u -r1.8 -r1.8.2.1 src/distrib/common/bootimage/Makefile.bootimage Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/ibmnws/netboot/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:11 UTC 2014 Modified Files: src/distrib/ibmnws/netboot/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.11.10.1 src/distrib/ibmnws/netboot/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/evbppc
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:02 UTC 2014 Modified Files: src/distrib/evbppc/md-kernel [tls-earlyentropy]: Makefile src/distrib/evbppc/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.2.1 src/distrib/evbppc/md-kernel/Makefile cvs rdiff -u -r1.16 -r1.16.10.1 src/distrib/evbppc/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/hppa/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:07 UTC 2014 Modified Files: src/distrib/hppa/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.2.1 src/distrib/hppa/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/evbarm/gzboot/gzimg
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:00 UTC 2014 Modified Files: src/distrib/evbarm/gzboot/gzimg [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.26.2.1 src/distrib/evbarm/gzboot/gzimg/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/luna68k/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:13 UTC 2014 Modified Files: src/distrib/luna68k/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.2.1 src/distrib/luna68k/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/ofppc/ramdisks/common
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:23 UTC 2014 Modified Files: src/distrib/ofppc/ramdisks/common [tls-earlyentropy]: list.sysinst Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.50.1 src/distrib/ofppc/ramdisks/common/list.sysinst Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/macppc/floppies/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:17 UTC 2014 Modified Files: src/distrib/macppc/floppies/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.40.10.1 src/distrib/macppc/floppies/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/rs6000
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:27 UTC 2014 Modified Files: src/distrib/rs6000/bootfs [tls-earlyentropy]: Makefile src/distrib/rs6000/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.2.1 src/distrib/rs6000/bootfs/Makefile cvs rdiff -u -r1.6 -r1.6.24.1 src/distrib/rs6000/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/prep/floppies
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:25 UTC 2014 Modified Files: src/distrib/prep/floppies/kernel-generic [tls-earlyentropy]: Makefile src/distrib/prep/floppies/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.10.2.1 \ src/distrib/prep/floppies/kernel-generic/Makefile cvs rdiff -u -r1.20 -r1.20.24.1 src/distrib/prep/floppies/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/notes/common
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:19 UTC 2014 Modified Files: src/distrib/notes/common [tls-earlyentropy]: postinstall Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.78.2.1 src/distrib/notes/common/postinstall Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/sandpoint/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:29 UTC 2014 Modified Files: src/distrib/sandpoint/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.10.10.1 src/distrib/sandpoint/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/crypto/external/bsd
Module Name:src Committed By: tls Date: Sun Aug 10 06:47:41 UTC 2014 Modified Files: src/crypto/external/bsd/heimdal [tls-earlyentropy]: heimdal2netbsd src/crypto/external/bsd/heimdal/bin/krb5-config [tls-earlyentropy]: Makefile src/crypto/external/bsd/heimdal/dist [tls-earlyentropy]: Makefile.am NEWS autogen.sh configure.ac src/crypto/external/bsd/heimdal/dist/admin [tls-earlyentropy]: Makefile.am add.c change.c copy.c get.c ktutil.8 ktutil.c list.c purge.c remove.c rename.c src/crypto/external/bsd/heimdal/dist/base [tls-earlyentropy]: Makefile.am array.c baselocl.h dict.c heimbase.c heimbase.h json.c test_base.c src/crypto/external/bsd/heimdal/dist/cf [tls-earlyentropy]: check-compile-et.m4 check-getpwnam_r-posix.m4 check-man.m4 db.m4 install-catman.sh make-proto.pl pthreads.m4 roken-frag.m4 src/crypto/external/bsd/heimdal/dist/doc [tls-earlyentropy]: Makefile.am ack.texi copyright.texi heimdal.texi hx509.texi intro.texi kerberos4.texi setup.texi whatis.texi win2k.texi src/crypto/external/bsd/heimdal/dist/etc [tls-earlyentropy]: Makefile.am src/crypto/external/bsd/heimdal/dist/include [tls-earlyentropy]: Makefile.am NTMakefile bits.c heim_threads.h krb5-types.cross src/crypto/external/bsd/heimdal/dist/include/gssapi [tls-earlyentropy]: Makefile.am src/crypto/external/bsd/heimdal/dist/include/hcrypto [tls-earlyentropy]: Makefile.am src/crypto/external/bsd/heimdal/dist/include/kadm5 [tls-earlyentropy]: Makefile.am src/crypto/external/bsd/heimdal/dist/kadmin [tls-earlyentropy]: Makefile.am ank.c check.c cpw.c get.c kadm_conn.c kadmin.8 kadmin.c kadmind.8 kadmind.c load.c mod.c rpc.c server.c stash.c util.c src/crypto/external/bsd/heimdal/dist/kcm [tls-earlyentropy]: Makefile.am acquire.c cache.c client.c config.c connect.c events.c glue.c kcm.8 log.c main.c protocol.c renew.c sessions.c src/crypto/external/bsd/heimdal/dist/kdc [tls-earlyentropy]: Makefile.am announce.c config.c connect.c default_config.c digest-service.c digest.c hprop.8 hprop.c hpropd.8 hpropd.c kdc-replay.c kdc.8 kdc.h kerberos5.c krb5tgs.c kstash.8 kstash.c kx509.c log.c main.c misc.c mit_dump.c pkinit.c process.c set_dbinfo.c string2key.8 string2key.c windc.c windc_plugin.h src/crypto/external/bsd/heimdal/dist/kpasswd [tls-earlyentropy]: Makefile.am kpasswd-generator.c kpasswd.1 kpasswd.c kpasswdd.8 kpasswdd.c src/crypto/external/bsd/heimdal/dist/kuser [tls-earlyentropy]: Makefile.am copy_cred_cache.1 copy_cred_cache.c kcc.c kcpytkt.c kdeltkt.c kdestroy.1 kdestroy.c kdigest.8 kdigest.c kgetcred.1 kgetcred.c kimpersonate.8 kimpersonate.c kinit.1 kinit.c klist.1 klist.c kswitch.1 kswitch.c kverify.c kvno.c src/crypto/external/bsd/heimdal/dist/lib [tls-earlyentropy]: Makefile.am NTMakefile src/crypto/external/bsd/heimdal/dist/lib/asn1 [tls-earlyentropy]: Makefile.am asn1-common.h asn1_gen.c asn1_print.c asn1parse.y check-ber.c check-common.c check-der.c check-gen.c check-timegm.c der.c der_cmp.c der_copy.c der_format.c der_free.c der_get.c der_length.c der_put.c extra.c gen.c gen_copy.c gen_decode.c gen_encode.c gen_free.c gen_glue.c gen_length.c gen_seq.c gen_template.c hash.c krb5.asn1 lex.l main.c rfc2459.asn1 template.c test.asn1 timegm.c src/crypto/external/bsd/heimdal/dist/lib/com_err [tls-earlyentropy]: Makefile.am com_err.3 compile_et.c error.c parse.y src/crypto/external/bsd/heimdal/dist/lib/gssapi [tls-earlyentropy]: Makefile.am NTMakefile gen-oid.pl gss_acquire_cred.3 gssapi.3 gssapi_mech.h gsstool.c libgssapi-exports.def oid.txt test_acquire_cred.c test_common.c test_context.c test_cred.c test_kcred.c version-script.map src/crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi [tls-earlyentropy]: gssapi.h gssapi_oid.h src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5 [tls-earlyentropy]: 8003.c accept_sec_context.c acquire_cred.c add_cred.c aeap.c arcfour.c cfx.c compat.c context_time.c copy_ccache.c creds.c encapsulate.c external.c import_name.c init_sec_context.c inquire_cred.c inquire_names_for_mech.c inquire_sec_context_by_oid.c prf.c process_context_token.c sequence.c set_cred_option.c set_sec_context_option.c store_cred.c test_acquire_cred.c test_cfx.c test_cred.c test_kcred.c unwrap.c verify_mic.c wrap.c
CVS commit: [tls-earlyentropy] src/distrib/sparc/miniroot
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:42 UTC 2014 Modified Files: src/distrib/sparc/miniroot [tls-earlyentropy]: Makefile.inc Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.20.2.1 src/distrib/sparc/miniroot/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/zaurus/ramdisk
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:01 UTC 2014 Modified Files: src/distrib/zaurus/ramdisk [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.16.4.1 src/distrib/zaurus/ramdisk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/sets
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:36 UTC 2014 Modified Files: src/distrib/sets [tls-earlyentropy]: Makefile regpkg src/distrib/sets/lists/base [tls-earlyentropy]: ad.arm ad.mips ad.powerpc md.alpha md.amd64 md.amiga md.arc md.atari md.bebox md.cats md.emips md.hpcmips md.hppa md.i386 md.landisk md.mac68k md.macppc md.mipsco md.mmeye md.mvme68k md.mvmeppc md.news68k md.newsmips md.next68k md.ofppc md.pmax md.prep md.rs6000 md.sandpoint md.sbmips md.sgimips md.sparc md.sparc64 md.sun2 md.sun3 md.vax mi rescue.ad.m68k.shl rescue.i386 rescue.shark rescue.sparc rescue.vax shl.mi src/distrib/sets/lists/comp [tls-earlyentropy]: ad.arm ad.mips ad.powerpc md.amd64 md.amigappc md.bebox md.cobalt md.emips md.evbmips md.evbppc md.ews4800mips md.hpcmips md.i386 md.ibmnws md.macppc md.mipsco md.mvmeppc md.newsmips md.ofppc md.playstation2 md.pmax md.prep md.rs6000 md.sandpoint md.sbmips md.sgimips md.sparc md.sparc64 mi shl.mi src/distrib/sets/lists/debug [tls-earlyentropy]: ad.arm ad.mips ad.powerpc md.amd64 md.evbmips md.i386 md.sparc md.sparc64 mi shl.mi src/distrib/sets/lists/games [tls-earlyentropy]: mi src/distrib/sets/lists/man [tls-earlyentropy]: mi src/distrib/sets/lists/misc [tls-earlyentropy]: mi src/distrib/sets/lists/modules [tls-earlyentropy]: md.evbppc.powerpc mi src/distrib/sets/lists/tests [tls-earlyentropy]: mi src/distrib/sets/lists/text [tls-earlyentropy]: mi src/distrib/sets/lists/xbase [tls-earlyentropy]: mi src/distrib/sets/lists/xcomp [tls-earlyentropy]: md.amd64 md.i386 mi src/distrib/sets/lists/xdebug [tls-earlyentropy]: md.luna68k md.sparc md.x68k md.zaurus Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.94 -r1.94.2.1 src/distrib/sets/Makefile cvs rdiff -u -r1.20 -r1.20.8.1 src/distrib/sets/regpkg cvs rdiff -u -r1.41 -r1.41.2.1 src/distrib/sets/lists/base/ad.arm cvs rdiff -u -r1.37 -r1.37.2.1 src/distrib/sets/lists/base/ad.mips cvs rdiff -u -r1.6 -r1.6.2.1 src/distrib/sets/lists/base/ad.powerpc cvs rdiff -u -r1.40 -r1.40.20.1 src/distrib/sets/lists/base/md.alpha cvs rdiff -u -r1.231 -r1.231.2.1 src/distrib/sets/lists/base/md.amd64 cvs rdiff -u -r1.54 -r1.54.26.1 src/distrib/sets/lists/base/md.amiga cvs rdiff -u -r1.11 -r1.11.26.1 src/distrib/sets/lists/base/md.arc cvs rdiff -u -r1.52 -r1.52.24.1 src/distrib/sets/lists/base/md.atari cvs rdiff -u -r1.20 -r1.20.2.1 src/distrib/sets/lists/base/md.bebox cvs rdiff -u -r1.6 -r1.6.24.1 src/distrib/sets/lists/base/md.cats cvs rdiff -u -r1.1 -r1.1.24.1 src/distrib/sets/lists/base/md.emips cvs rdiff -u -r1.10 -r1.10.26.1 src/distrib/sets/lists/base/md.hpcmips \ src/distrib/sets/lists/base/md.next68k cvs rdiff -u -r1.1 -r1.1.2.1 src/distrib/sets/lists/base/md.hppa cvs rdiff -u -r1.141 -r1.141.10.1 src/distrib/sets/lists/base/md.i386 cvs rdiff -u -r1.5 -r1.5.24.1 src/distrib/sets/lists/base/md.landisk cvs rdiff -u -r1.42 -r1.42.10.1 src/distrib/sets/lists/base/md.mac68k cvs rdiff -u -r1.32 -r1.32.2.1 src/distrib/sets/lists/base/md.macppc cvs rdiff -u -r1.5 -r1.5.26.1 src/distrib/sets/lists/base/md.mipsco cvs rdiff -u -r1.9 -r1.9.2.1 src/distrib/sets/lists/base/md.mmeye cvs rdiff -u -r1.22 -r1.22.24.1 src/distrib/sets/lists/base/md.mvme68k cvs rdiff -u -r1.8 -r1.8.26.1 src/distrib/sets/lists/base/md.mvmeppc cvs rdiff -u -r1.7 -r1.7.26.1 src/distrib/sets/lists/base/md.news68k \ src/distrib/sets/lists/base/md.newsmips cvs rdiff -u -r1.12 -r1.12.2.1 src/distrib/sets/lists/base/md.ofppc cvs rdiff -u -r1.44 -r1.44.24.1 src/distrib/sets/lists/base/md.pmax cvs rdiff -u -r1.16 -r1.16.2.1 src/distrib/sets/lists/base/md.prep cvs rdiff -u -r1.1 -r1.1.26.1 src/distrib/sets/lists/base/md.rs6000 cvs rdiff -u -r1.8 -r1.8.22.1 src/distrib/sets/lists/base/md.sandpoint cvs rdiff -u -r1.4 -r1.4.26.1 src/distrib/sets/lists/base/md.sbmips cvs rdiff -u -r1.9 -r1.9.26.1 src/distrib/sets/lists/base/md.sgimips cvs rdiff -u -r1.81 -r1.81.2.1 src/distrib/sets/lists/base/md.sparc cvs rdiff -u -r1.218 -r1.218.2.1 src/distrib/sets/lists/base/md.sparc64 cvs rdiff -u -r1.11 -r1.11.2.1 src/distrib/sets/lists/base/md.sun2 cvs rdiff -u -r1.46 -r1.46.24.1 src/distrib/sets/lists/base/md.sun3 cvs rdiff -u -r1.28 -r1.28.26.1 src/distrib/sets/lists/base/md.vax cvs rdiff -u -r1.1065 -r1.1065.2.1 src/distrib/sets/lists/base/mi cvs rdiff -u -r1.2 -r1.2.80.1 src/distrib/sets/lists/base/rescue.ad.m68k.shl \ src/distrib/sets/lists/base/rescue.shark \ src/distrib/sets/lists/base/rescue.vax cvs rdiff -u -r1.3 -r1.3.66.1 src/distrib/sets/lists/base/rescue.i386 cvs rdiff -u -r1.3 -r1.3.24.1 src/distrib/sets/lists/base/rescue.sparc cvs rdiff -u -r1.697 -r1.697.2.1 src/distrib/sets/lists/base/shl.mi cvs rdiff -u -r1.55 -r1.55.2.1 src/distrib/sets/
CVS commit: [tls-earlyentropy] src/distrib/sparc64
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:45 UTC 2014 Modified Files: src/distrib/sparc64/bootfs [tls-earlyentropy]: boot.cfg src/distrib/sparc64/cdroms/installcd [tls-earlyentropy]: Makefile etc.rc src/distrib/sparc64/xminiroot [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.24.1 src/distrib/sparc64/bootfs/boot.cfg cvs rdiff -u -r1.16 -r1.16.8.1 src/distrib/sparc64/cdroms/installcd/Makefile cvs rdiff -u -r1.1 -r1.1.24.1 src/distrib/sparc64/cdroms/installcd/etc.rc cvs rdiff -u -r1.30 -r1.30.2.1 src/distrib/sparc64/xminiroot/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/x68k/floppies/bootfloppy.generic
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:57 UTC 2014 Modified Files: src/distrib/x68k/floppies/bootfloppy.generic [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.8.2.1 \ src/distrib/x68k/floppies/bootfloppy.generic/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/distrib/utils
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:53 UTC 2014 Modified Files: src/distrib/utils [tls-earlyentropy]: Makefile Removed Files: src/distrib/utils/sysinst [tls-earlyentropy]: Makefile Makefile.inc SPELLING.en TODO aout2elf.c bsddisklabel.c checkrc.c configmenu.c defs.h disks.c disks_lfs.c endian.h factor.c geom.c install.c label.c main.c mbr.c mbr.h menus.mbr menus.mi msg.mbr.de msg.mbr.en msg.mbr.es msg.mbr.fr msg.mbr.pl msg.mi.de msg.mi.en msg.mi.es msg.mi.fr msg.mi.pl msg_xlat.sh net.c run.c savenewlabel.c sizemultname.c target.c txtwalk.c txtwalk.h unif.awk upgrade.c util.c wskbd.c src/distrib/utils/sysinst/arch/acorn26 [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/acorn32 [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/alpha [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/amd64 [tls-earlyentropy]: Makefile md.c md.h src/distrib/utils/sysinst/arch/amiga [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr msg.md.de msg.md.en msg.md.es msg.md.fr src/distrib/utils/sysinst/arch/arc [tls-earlyentropy]: Makefile md.c md.h menus.md.en msg.md.en src/distrib/utils/sysinst/arch/atari [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es msg.md.de msg.md.en msg.md.es src/distrib/utils/sysinst/arch/bebox [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/cats [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/cobalt [tls-earlyentropy]: Makefile md.c md.h menus.md.en msg.md.en src/distrib/utils/sysinst/arch/emips [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/evbarm [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/evbmips [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/evbppc [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/evbsh3 [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/ews4800mips [tls-earlyentropy]: Makefile md.c md.h menus.md.en msg.md.en src/distrib/utils/sysinst/arch/hp300 [tls-earlyentropy]: Makefile md.c md.h menus.md.en msg.md.en src/distrib/utils/sysinst/arch/hpcarm [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/hpcmips [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/hpcsh [tls-earlyentropy]: Makefile md.c md.h menus.md.en msg.md.en src/distrib/utils/sysinst/arch/hppa [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/i386 [tls-earlyentropy]: Makefile md.c md.h menus.md msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/landisk [tls-earlyentropy]: Makefile md.c md.h menus.md.en menus.md.es menus.md.fr menus.md.pl msg.md.de msg.md.en msg.md.es msg.md.fr msg.md.pl src/distrib/utils/sysinst/arch/luna68k [tls-earlyentropy]: Makefile md.c md.h menus.md.en msg.md.en src/distrib/utils/sysinst/arch/mac68k [tls-earlyentropy]: Makefile md.c
CVS commit: [tls-earlyentropy] src/distrib/vax/cdroms/installcd
Module Name:src Committed By: tls Date: Sun Aug 10 06:48:55 UTC 2014 Modified Files: src/distrib/vax/cdroms/installcd [tls-earlyentropy]: Makefile Added Files: src/distrib/vax/cdroms/installcd [tls-earlyentropy]: etc.rc etc.ttys install.sh Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.18.1 src/distrib/vax/cdroms/installcd/Makefile cvs rdiff -u -r0 -r1.3.2.2 src/distrib/vax/cdroms/installcd/etc.rc cvs rdiff -u -r0 -r1.1.2.2 src/distrib/vax/cdroms/installcd/etc.ttys \ src/distrib/vax/cdroms/installcd/install.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/etc.macppc
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:15 UTC 2014 Modified Files: src/etc/etc.macppc [tls-earlyentropy]: Makefile.inc Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.8.56.1 src/etc/etc.macppc/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/etc.mac68k
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:08 UTC 2014 Modified Files: src/etc/etc.mac68k [tls-earlyentropy]: Makefile.inc Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.20.42.1 src/etc/etc.mac68k/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/etc.evbarm
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:05 UTC 2014 Modified Files: src/etc/etc.evbarm [tls-earlyentropy]: Makefile.inc Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.62.2.1 src/etc/etc.evbarm/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/defaults
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:03 UTC 2014 Modified Files: src/etc/defaults [tls-earlyentropy]: rc.conf Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.122 -r1.122.8.1 src/etc/defaults/rc.conf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/namedb
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:21 UTC 2014 Modified Files: src/etc/namedb [tls-earlyentropy]: root.cache Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.17.8.1 src/etc/namedb/root.cache Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/mtree
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:17 UTC 2014 Modified Files: src/etc/mtree [tls-earlyentropy]: NetBSD.dist.base NetBSD.dist.earm NetBSD.dist.mips64eb NetBSD.dist.mips64el NetBSD.dist.powerpc64 NetBSD.dist.sparc64 NetBSD.dist.tests NetBSD.dist.x86_64 special Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.135 -r1.135.2.1 src/etc/mtree/NetBSD.dist.base cvs rdiff -u -r1.1 -r1.1.8.1 src/etc/mtree/NetBSD.dist.earm cvs rdiff -u -r1.7 -r1.7.4.1 src/etc/mtree/NetBSD.dist.mips64eb cvs rdiff -u -r1.8 -r1.8.4.1 src/etc/mtree/NetBSD.dist.mips64el cvs rdiff -u -r1.1 -r1.1.2.1 src/etc/mtree/NetBSD.dist.powerpc64 cvs rdiff -u -r1.8 -r1.8.2.1 src/etc/mtree/NetBSD.dist.sparc64 cvs rdiff -u -r1.103 -r1.103.2.1 src/etc/mtree/NetBSD.dist.tests cvs rdiff -u -r1.7 -r1.7.2.1 src/etc/mtree/NetBSD.dist.x86_64 cvs rdiff -u -r1.146 -r1.146.4.1 src/etc/mtree/special Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/external/lgpl3/gmp
Module Name:src Committed By: tls Date: Sun Aug 10 06:50:49 UTC 2014 Modified Files: src/external/lgpl3/gmp/dist [tls-earlyentropy]: configfsf.guess src/external/lgpl3/gmp/lib/libgmp/arch/mips64eb [tls-earlyentropy]: Makefile.inc config.h src/external/lgpl3/gmp/lib/libgmp/arch/mips64el [tls-earlyentropy]: Makefile.inc config.h Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.1.1.2 -r1.1.1.2.2.1 \ src/external/lgpl3/gmp/dist/configfsf.guess cvs rdiff -u -r1.5 -r1.5.2.1 \ src/external/lgpl3/gmp/lib/libgmp/arch/mips64eb/Makefile.inc cvs rdiff -u -r1.4 -r1.4.2.1 \ src/external/lgpl3/gmp/lib/libgmp/arch/mips64eb/config.h cvs rdiff -u -r1.5 -r1.5.2.1 \ src/external/lgpl3/gmp/lib/libgmp/arch/mips64el/Makefile.inc cvs rdiff -u -r1.4 -r1.4.2.1 \ src/external/lgpl3/gmp/lib/libgmp/arch/mips64el/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/etc/rc.d
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:24 UTC 2014 Modified Files: src/etc/rc.d [tls-earlyentropy]: dhcpcd dhcpd mountall mountcritlocal mountcritremote named network random_seed Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.4.1 src/etc/rc.d/dhcpcd cvs rdiff -u -r1.6 -r1.6.70.1 src/etc/rc.d/dhcpd cvs rdiff -u -r1.8 -r1.8.24.1 src/etc/rc.d/mountall cvs rdiff -u -r1.13 -r1.13.24.1 src/etc/rc.d/mountcritlocal cvs rdiff -u -r1.8 -r1.8.70.1 src/etc/rc.d/mountcritremote cvs rdiff -u -r1.23 -r1.23.8.1 src/etc/rc.d/named cvs rdiff -u -r1.63 -r1.63.6.1 src/etc/rc.d/network cvs rdiff -u -r1.6 -r1.6.8.1 src/etc/rc.d/random_seed Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/external/broadcom/rpi-firmware/dist
Module Name:src Committed By: tls Date: Sun Aug 10 06:49:28 UTC 2014 Modified Files: src/external/broadcom/rpi-firmware/dist [tls-earlyentropy]: bootcode.bin fixup.dat fixup_cd.dat start.elf start_cd.elf Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.2.1 \ src/external/broadcom/rpi-firmware/dist/bootcode.bin \ src/external/broadcom/rpi-firmware/dist/fixup.dat \ src/external/broadcom/rpi-firmware/dist/fixup_cd.dat \ src/external/broadcom/rpi-firmware/dist/start.elf \ src/external/broadcom/rpi-firmware/dist/start_cd.elf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/external/cddl/osnet
Module Name:src Committed By: tls Date: Sun Aug 10 06:50:29 UTC 2014 Modified Files: src/external/cddl/osnet/dev/fbt [tls-earlyentropy]: fbt.c src/external/cddl/osnet/dev/sdt [tls-earlyentropy]: sdt.c src/external/cddl/osnet/dist/tools/ctf/cvt [tls-earlyentropy]: dwarf.c src/external/cddl/osnet/dist/uts/common/dtrace [tls-earlyentropy]: dtrace.c src/external/cddl/osnet/dist/uts/common/fs/zfs [tls-earlyentropy]: zfs_vfsops.c zfs_vnops.c zvol.c src/external/cddl/osnet/lib/libzpool [tls-earlyentropy]: Makefile atomic.c src/external/cddl/osnet/usr.bin/ctfdump [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.15.2.1 src/external/cddl/osnet/dev/fbt/fbt.c cvs rdiff -u -r1.8 -r1.8.18.1 src/external/cddl/osnet/dev/sdt/sdt.c cvs rdiff -u -r1.9 -r1.9.2.1 \ src/external/cddl/osnet/dist/tools/ctf/cvt/dwarf.c cvs rdiff -u -r1.27 -r1.27.2.1 \ src/external/cddl/osnet/dist/uts/common/dtrace/dtrace.c cvs rdiff -u -r1.10 -r1.10.2.1 \ src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vfsops.c cvs rdiff -u -r1.17 -r1.17.2.1 \ src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vnops.c cvs rdiff -u -r1.5 -r1.5.2.1 \ src/external/cddl/osnet/dist/uts/common/fs/zfs/zvol.c cvs rdiff -u -r1.8 -r1.8.2.1 src/external/cddl/osnet/lib/libzpool/Makefile cvs rdiff -u -r1.1 -r1.1.6.1 src/external/cddl/osnet/lib/libzpool/atomic.c cvs rdiff -u -r1.6 -r1.6.2.1 src/external/cddl/osnet/usr.bin/ctfdump/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/external/mit
Module Name:src Committed By: tls Date: Sun Aug 10 06:50:58 UTC 2014 Modified Files: src/external/mit/lua/dist [tls-earlyentropy]: Makefile README src/external/mit/lua/dist/doc [tls-earlyentropy]: contents.html lua.1 lua.css luac.1 manual.css manual.html readme.html src/external/mit/lua/dist/src [tls-earlyentropy]: Makefile lapi.c lapi.h lauxlib.c lauxlib.h lbaselib.c lcode.c lcode.h ldblib.c ldebug.c ldebug.h ldo.c ldo.h ldump.c lfunc.c lfunc.h lgc.c lgc.h linit.c liolib.c llex.c llex.h llimits.h lmathlib.c lmem.c lmem.h loadlib.c lobject.c lobject.h lopcodes.c lopcodes.h loslib.c lparser.c lparser.h lstate.c lstate.h lstring.c lstring.h lstrlib.c ltable.c ltable.h ltablib.c ltm.c ltm.h lua.c lua.h luac.c luaconf.h lualib.h lundump.c lundump.h lvm.c lvm.h lzio.c lzio.h src/external/mit/lua/lib/liblua [tls-earlyentropy]: Makefile shlib_version src/external/mit/lua/usr.bin/luac [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/glxgears [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/glxinfo [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xauth [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xkill [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xlsclients [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xrdb [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xset [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xterm [tls-earlyentropy]: Makefile src/external/mit/xorg/bin/xvinfo [tls-earlyentropy]: Makefile src/external/mit/xorg/etc/etc.dreamcast [tls-earlyentropy]: xorg.conf.jpkbd xorg.conf.uskbd src/external/mit/xorg/etc/etc.hpc [tls-earlyentropy]: xorg.conf.640x240-jp xorg.conf.640x240-us xorg.conf.640x480-jp xorg.conf.640x480-us xorg.conf.800x600-jp xorg.conf.800x600-us src/external/mit/xorg/etc/etc.hpcarm [tls-earlyentropy]: xorg.conf.ws003sh xorg.conf.ws007sh xorg.conf.ws011sh xorg.conf.ws020sh src/external/mit/xorg/etc/etc.zaurus [tls-earlyentropy]: xorg.conf.C3x00 xorg.conf.C7x0 src/external/mit/xorg/lib [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri [tls-earlyentropy]: dri.mk src/external/mit/xorg/lib/dri/i915 [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/i965 [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/libmesa [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/r128 [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/r200 [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/r300 [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/r600 [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/radeon [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/s3v [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/swrast [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/dri/tdfx [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/fontconfig/etc [tls-earlyentropy]: fonts.conf src/external/mit/xorg/lib/fontconfig/src [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/libGL [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/libGLU [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/libIntelXvMC [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/libOSMesa [tls-earlyentropy]: Makefile libmesa.mk src/external/mit/xorg/lib/libX11 [tls-earlyentropy]: Makefile.libx11 src/external/mit/xorg/lib/libXi [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/libdrm_intel [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/libdrm_radeon [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/pixman [tls-earlyentropy]: Makefile src/external/mit/xorg/lib/xkeyboard-config/rules [tls-earlyentropy]: base base.lst evdev evdev.lst src/external/mit/xorg/lib/xkeyboard-config/symbols [tls-earlyentropy]: Makefile src/external/mit/xorg/server/drivers/xf86-video-ati [tls-earlyentropy]: Makefile src/external/mit/xorg/server/drivers/xf86-video-intel [tls-earlyentropy]: Makefile src/external/mit/xorg/server/drivers/xf86-video-radeon [tls-earlyentropy]: Makefile src/external/mit/xorg/share/fonts [tls-earlyentropy]: Makefile.bdf src/external/mit/xorg/share/fonts/encodings [tls-earlyentropy]: Makefile.enc src/external/mit/xorg/tools [tls-earlyentropy]: Makefile src/external/mit/xorg/tools/glsl [tls-earlyentropy]: Makefile.glslsrcs Added Files: src/external/mit/lua/dist/doc [tls-earlyentropy]: alert.png
CVS commit: [tls-earlyentropy] src/external/public-domain
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:02 UTC 2014 Modified Files: src/external/public-domain [tls-earlyentropy]: Makefile Added Files: src/external/public-domain/tz [tls-earlyentropy]: Makefile Makefile.inc tzdata2netbsd src/external/public-domain/tz/dist [tls-earlyentropy]: Makefile NEWS README africa antarctica asia australasia backward etcetera europe factory iso3166.tab leap-seconds.list leapseconds leapseconds.awk northamerica pacificnew southamerica systemv yearistype.sh zone.tab zone1970.tab src/external/public-domain/tz/share [tls-earlyentropy]: Makefile src/external/public-domain/tz/share/zoneinfo [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.18.1 src/external/public-domain/Makefile cvs rdiff -u -r0 -r1.1.2.2 src/external/public-domain/tz/Makefile \ src/external/public-domain/tz/Makefile.inc cvs rdiff -u -r0 -r1.2.2.2 src/external/public-domain/tz/tzdata2netbsd cvs rdiff -u -r0 -r1.1.1.1.2.2 src/external/public-domain/tz/dist/Makefile \ src/external/public-domain/tz/dist/NEWS \ src/external/public-domain/tz/dist/README \ src/external/public-domain/tz/dist/africa \ src/external/public-domain/tz/dist/antarctica \ src/external/public-domain/tz/dist/asia \ src/external/public-domain/tz/dist/australasia \ src/external/public-domain/tz/dist/backward \ src/external/public-domain/tz/dist/etcetera \ src/external/public-domain/tz/dist/europe \ src/external/public-domain/tz/dist/factory \ src/external/public-domain/tz/dist/iso3166.tab \ src/external/public-domain/tz/dist/leap-seconds.list \ src/external/public-domain/tz/dist/leapseconds \ src/external/public-domain/tz/dist/leapseconds.awk \ src/external/public-domain/tz/dist/northamerica \ src/external/public-domain/tz/dist/pacificnew \ src/external/public-domain/tz/dist/southamerica \ src/external/public-domain/tz/dist/systemv \ src/external/public-domain/tz/dist/yearistype.sh \ src/external/public-domain/tz/dist/zone.tab \ src/external/public-domain/tz/dist/zone1970.tab cvs rdiff -u -r0 -r1.1.2.2 src/external/public-domain/tz/share/Makefile cvs rdiff -u -r0 -r1.2.2.2 \ src/external/public-domain/tz/share/zoneinfo/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/games/rogue
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:12 UTC 2014 Modified Files: src/games/rogue [tls-earlyentropy]: Makefile src/games/rogue/USD.doc [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.18.2.1 src/games/rogue/Makefile cvs rdiff -u -r1.5 -r1.5.6.1 src/games/rogue/USD.doc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/external/zlib/pigz
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:07 UTC 2014 Modified Files: src/external/zlib/pigz/bin/pigz [tls-earlyentropy]: Makefile src/external/zlib/pigz/dist [tls-earlyentropy]: Makefile README pigz.1 pigz.c pigz.pdf pigz.spec yarn.c yarn.h Added Files: src/external/zlib/pigz/dist/zopfli [tls-earlyentropy]: CONTRIBUTORS COPYING README blocksplitter.c blocksplitter.h cache.c cache.h deflate.c deflate.h gzip_container.c gzip_container.h hash.c hash.h katajainen.c katajainen.h lz77.c lz77.h makefile squeeze.c squeeze.h tree.c tree.h util.c util.h zlib_container.c zlib_container.h zopfli.h zopfli_bin.c zopfli_lib.c Removed Files: src/external/zlib/pigz/dist [tls-earlyentropy]: pigz.ps Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.7.20.1 src/external/zlib/pigz/bin/pigz/Makefile cvs rdiff -u -r1.1.1.1 -r1.1.1.1.22.1 src/external/zlib/pigz/dist/Makefile \ src/external/zlib/pigz/dist/README src/external/zlib/pigz/dist/pigz.c \ src/external/zlib/pigz/dist/pigz.pdf \ src/external/zlib/pigz/dist/pigz.spec src/external/zlib/pigz/dist/yarn.c \ src/external/zlib/pigz/dist/yarn.h cvs rdiff -u -r1.3 -r1.3.2.1 src/external/zlib/pigz/dist/pigz.1 cvs rdiff -u -r1.1.1.1 -r0 src/external/zlib/pigz/dist/pigz.ps cvs rdiff -u -r0 -r1.1.1.1.2.2 \ src/external/zlib/pigz/dist/zopfli/CONTRIBUTORS \ src/external/zlib/pigz/dist/zopfli/COPYING \ src/external/zlib/pigz/dist/zopfli/README \ src/external/zlib/pigz/dist/zopfli/blocksplitter.c \ src/external/zlib/pigz/dist/zopfli/blocksplitter.h \ src/external/zlib/pigz/dist/zopfli/cache.c \ src/external/zlib/pigz/dist/zopfli/cache.h \ src/external/zlib/pigz/dist/zopfli/deflate.c \ src/external/zlib/pigz/dist/zopfli/deflate.h \ src/external/zlib/pigz/dist/zopfli/gzip_container.c \ src/external/zlib/pigz/dist/zopfli/gzip_container.h \ src/external/zlib/pigz/dist/zopfli/hash.c \ src/external/zlib/pigz/dist/zopfli/hash.h \ src/external/zlib/pigz/dist/zopfli/katajainen.c \ src/external/zlib/pigz/dist/zopfli/katajainen.h \ src/external/zlib/pigz/dist/zopfli/lz77.c \ src/external/zlib/pigz/dist/zopfli/lz77.h \ src/external/zlib/pigz/dist/zopfli/makefile \ src/external/zlib/pigz/dist/zopfli/squeeze.c \ src/external/zlib/pigz/dist/zopfli/squeeze.h \ src/external/zlib/pigz/dist/zopfli/tree.c \ src/external/zlib/pigz/dist/zopfli/tree.h \ src/external/zlib/pigz/dist/zopfli/util.c \ src/external/zlib/pigz/dist/zopfli/util.h \ src/external/zlib/pigz/dist/zopfli/zlib_container.c \ src/external/zlib/pigz/dist/zopfli/zlib_container.h \ src/external/zlib/pigz/dist/zopfli/zopfli.h \ src/external/zlib/pigz/dist/zopfli/zopfli_bin.c \ src/external/zlib/pigz/dist/zopfli/zopfli_lib.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/games/phantasia
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:10 UTC 2014 Modified Files: src/games/phantasia [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.36.6.1 src/games/phantasia/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/games/tetris
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:14 UTC 2014 Modified Files: src/games/tetris [tls-earlyentropy]: screen.c shapes.c tetris.6 tetris.c tetris.h Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.27.18.1 src/games/tetris/screen.c cvs rdiff -u -r1.8 -r1.8.22.1 src/games/tetris/shapes.c cvs rdiff -u -r1.11 -r1.11.60.1 src/games/tetris/tetris.6 cvs rdiff -u -r1.24 -r1.24.18.1 src/games/tetris/tetris.c cvs rdiff -u -r1.12 -r1.12.22.1 src/games/tetris/tetris.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/external/realtek/urtwn
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:04 UTC 2014 Modified Files: src/external/realtek/urtwn [tls-earlyentropy]: Makefile Added Files: src/external/realtek/urtwn/dist [tls-earlyentropy]: rtl8188eufw.bin Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.12.1 src/external/realtek/urtwn/Makefile cvs rdiff -u -r0 -r1.1.2.2 src/external/realtek/urtwn/dist/rtl8188eufw.bin Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/gnu/lib
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:28 UTC 2014 Removed Files: src/gnu/lib/crtstuff4 [tls-earlyentropy]: Makefile crtbegin.c crtbeginS.c crtbeginT.c crtend.c crtendS.c src/gnu/lib/crtstuff4/arch [tls-earlyentropy]: alpha.mk arm.mk armeb.mk hppa.mk i386.mk ia64.mk m68000.mk m68k.mk mips64eb.mk mips64el.mk mipseb.mk mipsel.mk powerpc.mk powerpc64.mk sh3eb.mk sh3el.mk sparc.mk sparc64.mk vax.mk x86_64.mk src/gnu/lib/libgcc4 [tls-earlyentropy]: Makefile Makefile.inc Makefile.srcs Makefile.wrapper src/gnu/lib/libgcc4/arch [tls-earlyentropy]: alpha.mk arm.mk armeb.mk hppa.mk i386.mk ia64.mk m68000.mk m68k.mk mips64eb.mk mips64el.mk mipseb.mk mipsel.mk powerpc.mk powerpc64.mk sh3eb.mk sh3el.mk sparc.mk sparc64.mk vax.mk x86_64.mk src/gnu/lib/libgcc4/arch/mips64eb [tls-earlyentropy]: dp-bit.c fp-bit.c libs.libgcc.srcs.mk libs.libgcc.tmplsrcs.tmplasmsrcs.mk libs.libgcc.tmplsrcs.tmplfpsrcs.mk libs.libgcc.tmplsrcs.tmplsrcs.mk libs.libgcc_eh.srcs.mk libs.libgcc_eh.tmplsrcs.tmplasmsrcs.mk libs.libgcc_eh.tmplsrcs.tmplfpsrcs.mk libs.libgcc_eh.tmplsrcs.tmplsrcs.mk libs.libgcc_s.srcs.mk libs.libgcc_s.tmplsrcs.tmplasmsrcs.mk libs.libgcc_s.tmplsrcs.tmplfpsrcs.mk libs.libgcc_s.tmplsrcs.tmplsrcs.mk libs.libgcov.srcs.mk libs.libgcov.tmplsrcs.tmplasmsrcs.mk libs.libgcov.tmplsrcs.tmplfpsrcs.mk libs.libgcov.tmplsrcs.tmplsrcs.mk srcs.copts.mk srcs.cppflags.mk srcs.tmplsrcs.mk tp-bit.c src/gnu/lib/libgcc4/libgcc [tls-earlyentropy]: Makefile src/gnu/lib/libgcc4/libgcc_eh [tls-earlyentropy]: Makefile src/gnu/lib/libgcc4/libgcc_s [tls-earlyentropy]: Makefile src/gnu/lib/libgcc4/libgcov [tls-earlyentropy]: Makefile src/gnu/lib/libgcc4/libgcov/arch/alpha [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/arm [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/armeb [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/hppa [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/i386 [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/m68000 [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/m68k [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/mips64eb [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/mips64el [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/mipseb [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/mipsel [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/powerpc [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/powerpc64 [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/sh3eb [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/sh3el [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/sparc [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/sparc64 [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/vax [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libgcc4/libgcov/arch/x86_64 [tls-earlyentropy]: defs.mk gcov-iov.h src/gnu/lib/libobjc4 [tls-earlyentropy]: Makefile defs.mk src/gnu/lib/libobjc4/arch/alpha [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/arm [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/armeb [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/hppa [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/i386 [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/m68000 [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/m68k [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/mips64eb [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/mips64el [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/mipseb [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/mipsel [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/powerpc [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/powerpc64 [tls-earlyentropy]: config.h defs.mk src/gnu/lib/libobjc4/arch/sh3eb [tls-earlyentropy]: config.h defs.m
CVS commit: [tls-earlyentropy] src/games/trek
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:17 UTC 2014 Modified Files: src/games/trek [tls-earlyentropy]: Makefile src/games/trek/USD.doc [tls-earlyentropy]: Makefile Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.14.18.1 src/games/trek/Makefile cvs rdiff -u -r1.4 -r1.4.72.1 src/games/trek/USD.doc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/include/rpc
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:38 UTC 2014 Modified Files: src/include/rpc [tls-earlyentropy]: clnt.h Log Message: Rebase. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.21.18.1 src/include/rpc/clnt.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [tls-earlyentropy] src/gnu/usr.bin
Module Name:src Committed By: tls Date: Sun Aug 10 06:51:36 UTC 2014 Modified Files: src/gnu/usr.bin [tls-earlyentropy]: Makefile src/gnu/usr.bin/groff/contrib/mom/examples [tls-earlyentropy]: Makefile src/gnu/usr.bin/groff/contrib/mom/momdoc [tls-earlyentropy]: Makefile Removed Files: src/gnu/usr.bin/gcc4 [tls-earlyentropy]: Makefile Makefile.backend Makefile.frontend Makefile.inc Makefile.libcpp src/gnu/usr.bin/gcc4/arch/alpha [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/arm [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/armeb [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/hppa [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/i386 [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/m68000 [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/m68k [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/mips64eb [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/mips64el [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/mipseb [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/mipsel [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/powerpc [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/powerpc64 [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/sh3eb [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/sh3el [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/sparc [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/sparc64 [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/vax [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/arch/x86_64 [tls-earlyentropy]: auto-host.h bconfig.h config.h configargs.h defs.mk gencheck.h gthr-default.h multilib.h tm.h src/gnu/usr.bin/gcc4/backend [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/cc1 [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/cc1obj [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/cc1plus [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/cpp [tls-earlyentropy]: Makefile cpp-contrib.1 cpp.1 src/gnu/usr.bin/gcc4/frontend [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/g++ [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/gcc [tls-earlyentropy]: Makefile gcc-contrib.1 gcc.1 src/gnu/usr.bin/gcc4/gcov [tls-earlyentropy]: Makefile gcov-contrib.1 gcov.1 src/gnu/usr.bin/gcc4/host-libiberty [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/include [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/libcpp [tls-earlyentropy]: Makefile src/gnu/usr.bin/gcc4/libcpp/arch/alpha [tls-earlyentropy]: config.h src/gnu/usr.bin/gcc4/libcpp/arch/arm [tls-earlyentropy]: config.h src/gnu/usr.bin/gcc4/libcpp/arch/armeb [tls-earlyentropy]: config.h src/gnu/usr.bin/gcc4/libcpp/arch/