[odc] Daily src changes for 2004-09-20
ODC
auto at squish.net
Tue Sep 21 08:00:47 BST 2004
OpenBSD src changes summary for 2004-09-20
==========================================
distrib/notes sbin/isakmpd
share/man share/mk
sys/arch/amd64/amd64 sys/arch/amd64/stand/libsa
sys/arch/i386/stand/libsa sys/arch/mips64/conf
sys/arch/mips64/include sys/arch/mips64/mips64
sys/arch/sgi/conf sys/arch/sgi/include
sys/arch/sgi/localbus sys/arch/sgi/pci
sys/arch/sgi/sgi sys/dev/ic
sys/dev/mii sys/dev/pci
sys/dev/raidframe sys/dev/usb
sys/kern sys/net
sys/netipx sys/sys
usr.bin/compress usr.sbin/mopd
usr.sbin/pkg_add usr.sbin/pppoe
== distrib =========================================================== 01/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/distrib
notes
~ mvme68k/install ~ mvme88k/install
> Too much cut'n'paste in NIOT description cause confusion as the text
> refers to ;H but shows ;A in examples; spotted by nick@ (miod@)
== sbin ============================================================== 02/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/sbin
isakmpd
~ monitor_fdpass.c
> Remove __func__
> ok ho deraadt (hshoexer@)
~ virtual.c
> compile cleanly with -Wsign-compare
> ok ho (hshoexer@)
== share ============================================================= 03/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/share
man
~ man4/man4.hppa/uturn.4
> fix copyright year; pt out by miod@ (mickey@)
~ man9/vwakeup.9
> CAVEATS comes after HISTORY.
> from jmc (jaredy@)
~ man4/umct.4 ~ man4/uplcom.4
> more uplcom and umct; jsg at goblin.cxlled from netbsd (deraadt@)
mk
~ sys.mk ~ bsd.lib.mk
> pass CPPFLAGS to CLINT. ok deraadt@, millert@ (espie@)
== sys =============================================================== 04/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/sys
arch/amd64/amd64
~ vm_machdep.c
> addres -> address (miod@)
arch/amd64/stand/libsa
~ pxe.h
> addres -> address (miod@)
arch/i386/stand/libsa
~ pxe.h
> addres -> address (miod@)
arch/mips64/conf
~ files.mips64
> Add support for R10K cpu class (pefo@)
arch/mips64/include
~ cpu.h
> Add support for R10K cpu class (pefo@)
+ pte.h
> Move <machine/pte.h> to mips64 land. (miod@)
arch/mips64/mips64
+ cache_r10k.S
> R10K cpu class cache support (pefo@)
~ cache_r5k.S ~ cpu.c
~ interrupt.c ~ vm_machdep.c
> Add support for R10K cpu class (pefo@)
~ cache_r5k.S
> Some cleanups for RM52x0 cpus. (pefo@)
~ cache_r5k.S
> There was one CF_5_xx constant left in the 52xx code, change it to CF_52_xx
> (purely cosmetic, as these constant share the same values). (miod@)
arch/sgi/conf
~ Makefile.sgi
> Homogeneize with other platforms' Makefiles; mainly adds the ability to
> compile a kernel with propolice disabled, and only disable the log() and
> printf() gcc builtins. (miod@)
arch/sgi/include
~ autoconf.h ~ intr.h
> Add support for R10K cpu class (pefo@)
~ intr.h
> splraise can be inlined or not by define (pefo@)
~ intr.h
> // is not valid in asm. doh... (pefo@)
~ pte.h
> Move <machine/pte.h> to mips64 land. (miod@)
arch/sgi/localbus
~ macebus.c
> Add support for R10K cpu class (pefo@)
arch/sgi/pci
~ macepcibridge.c
> Add support for R10K cpu class (pefo@)
arch/sgi/sgi
~ machdep.c
> Add support for R10K cpu class (pefo@)
dev/ic
~ fxp.c
> remove software-based workaround for the resume issue.
> ok beck@ (brad@)
~ fxpvar.h
> meant to commit this too, remove old resume workaround flags (brad@)
dev/mii
~ amphy.c ~ bmtphy.c
~ exphy.c ~ icsphy.c
~ inphy.c ~ iophy.c
~ lxtphy.c ~ mtdphy.c
~ nsgphy.c ~ nsphy.c
~ nsphyter.c ~ qsphy.c
~ rgephy.c ~ rlphy.c
~ sqphy.c ~ tqphy.c
~ txphy.c ~ ukphy.c
~ ukphy_subr.c ~ urlphy.c
~ xmphy.c
> don't include sys/malloc.h, no memory management functions are used
> by any of the MII drivers.
> From NetBSD (brad@)
dev/pci
~ if_fxp_pci.c
> enable code to disable dynamic standby mode on 82550's
> ok beck@ (brad@)
~ pcidevs ~ auich.c
> Add nvidia nforce3 250 audio. From FreeBSD via deraadt at . > ``go for it'' deraadt@ (grange@)
~ pcidevs.h ~ pcidevs_data.h
> sync (grange@)
~ yukonreg.h
> addres -> address (miod@)
~ pcidevs
> hp pci bridge id (mickey@)
~ pcidevs.h ~ pcidevs_data.h
> regen (mickey@)
~ pcidevs
> IRE is really AD and thus rename those and add a few devices (mickey@)
~ pcidevs.h ~ pcidevs_data.h
> regen (mickey@)
dev/raidframe
~ rf_dagfuncs.c
> addres -> address (miod@)
dev/usb
~ usbdevs ~ uplcom.c
> another unit; http://www2.elecom.co.jp/products/UC-SGT.html (deraadt@)
~ usbdevs.h ~ usbdevs_data.h
> some people are just incapable of properly comitting to *devs files
> (mickey@)
~ umct.c ~ uplcom.c
~ usbdevs
> more uplcom and umct; jsg at goblin.cxlled from netbsd (deraadt@)
~ usbdevs.h ~ usbdevs_data.h
> sync (deraadt@)
kern
~ vfs_bio.c
> spl dance to protect buffer flags in a sensitive context
> ok millert@ tedu@ (pedro@)
net
~ pf.c
> pf_routable(), used for the no-route keyword, was a v4 only implementation,
> and behaved incorrectly when used with v6. impliment the v6 case too.
> ok canacar mcbride (henning@)
netipx
~ ipx_ip.c
> Fix order of operations for m_gethdr(), found a bit ago, commit after
> second
> prodding. (drahn@)
sys
~ sockio.h
> addres -> address (miod@)
== usr.bin =========================================================== 05/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin
compress
~ main.c
> Make "gunzip foo.bar" work when there is a foo.bar.gz file.
> OK otto@ (millert@)
== usr.sbin ========================================================== 06/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.sbin
mopd
~ common/common.h ~ common/print.c
> addres -> address (miod@)
pkg_add
~ pkg_add ~ pkg_delete
> use fullname() in sample, so that absolute names AND relative names work.
> problem noticed by sturm@ (espie@)
~ OpenBSD/PackingElement.pm ~ OpenBSD/PackingOld.pm
> old pkgcfl is dead. (espie@)
~ pkg_add
> deals with conflicts, must keep pkgcfl around a little while longer...
> (espie@)
~ pkg_add ~ pkg_create
~ OpenBSD/PackingElement.pm ~ OpenBSD/PackingOld.pm
> error out for pkgcfl in pkg_create, but don't warn if it's found in
> existing packages or installed packages. Too much noise for now. (espie@)
pppoe
~ pppoe.c
> addres -> address (miod@)
===============================================================================
More information about the odc
mailing list