[odc] Daily src changes for 2005-11-11
ODC
auto at squish.net
Sat Nov 12 07:00:37 GMT 2005
OpenBSD src changes summary for 2005-11-11
==========================================
distrib/sets etc/security
share/man sys/arch/arm/xscale
sys/arch/i386/conf sys/arch/macppc/conf
sys/arch/macppc/dev sys/arch/sparc/dev
sys/arch/sparc64/dev sys/arch/sparc64/include
sys/arch/sparc64/sparc64 sys/arch/zaurus/dev
sys/arch/zaurus/zaurus sys/dev/i2c
sys/dev/ic sys/dev/sun
sys/kern sys/scsi
sys/ufs/ufs usr.bin/getent
usr.bin/mg usr.sbin/httpd
== distrib =========================================================== 01/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/distrib
sets
~ lists/base/mi ~ lists/man/mi
> sync (deraadt@)
== etc =============================================================== 02/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/etc
security
~ security
> do not scan afs/xfs directories; chris.kuethe (deraadt@)
== share ============================================================= 03/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/share
man
~ man7/packages.7
> kill trailing whitespace; (jmc@)
~ man4/ath.4
> IBM 11ABG WL LAN is supported by ath;
> from chris kuethe; (jmc@)
~ man4/bio.4
> - Xr only 1st reference to ioctl (kind of the opposite of what michael
> proposed)
> - uppercase `RAID' for consistency
> from michael knudsen; (jmc@)
~ man4/man4.zaurus/zkbd.4
> update timeouts in on/off key description to match zkbd (uwe@)
== sys =============================================================== 04/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/sys
arch/arm/xscale
~ pxa2x0.c
> round clock up (deraadt@)
arch/i386/conf
~ GENERIC ~ RAMDISK
~ RAMDISK_CD
> disable ahc0 at isa until we find the bugs that cause this to blow up
> on a few rare machines. of course, by the time we do, they might all
> have lots their smoke anyways. it is probably because of the vlbus/eisa
> addressing it tries to do. ok krw (deraadt@)
arch/macppc/conf
~ files.macppc
> Add maciic(4), an OpenFirware aware version of iic(4). (kettenis@)
~ GENERIC
> Add i2c controller support. (kettenis@)
arch/macppc/dev
~ smu.c
> Switch to sensors thread. (kettenis@)
+ maci2c.c + maci2cvar.h
> Add maciic(4), an OpenFirware aware version of iic(4). (kettenis@)
~ smu.c
> Add i2c controller support. (kettenis@)
arch/sparc/dev
~ z8530tty.c ~ zs_kgdb.c
> fix kgdb compilation; input and ok miod at .gsch@)
~ z8530kbd.c
> Enable or disable keyclick on attach, based upon the PROM keyboard-click?
> property.
> Tested with type 3 and type 4 keyboards. (miod@)
arch/sparc64/dev
~ comkbd_ebus.c ~ z8530kbd.c
> Enable or disable keyclick on attach, based upon the PROM keyboard-click?
> property.
> Tested with type 3 and type 4 keyboards. (miod@)
arch/sparc64/include
~ cpu.h
> Remove machdep.booted_kernel sysctl of questionable usefulness.
> ok deraadt@ (miod@)
arch/sparc64/sparc64
~ pmap.c
> Simplify a computation in a can't happen diagnostic message. (miod@)
~ machdep.c
> Remove machdep.booted_kernel sysctl of questionable usefulness.
> ok deraadt@ (miod@)
arch/zaurus/dev
~ zaurus_kbd.c
> make power button cause suspend after .25 seconds (was 3 seconds)
> and safe-shutdown after 3 seconds (was 6 seconds)
> ok uwe semi-ok drahn
> we will see if anyone wants these numbers fudged more in the future
> (deraadt@)
~ zaurus_kbd.c
> first key is scanned based on interrupt. but if a key is held down
> (ie. shift) then we cound on timeouts to re-scan the keyboard. 8 scans a
> second was too slow. change to 20 scans a second, which makes (hit the
> keys repeatedly, do not use auto-repeat) NNNNNN work just like nnnnnn does.
> ok drahn, sort of ok-chatter from miod (deraadt@)
arch/zaurus/zaurus
~ zaurus_machdep.c
> remove old debug code in boot() (deraadt@)
dev/i2c
~ lm75.c ~ lm75reg.h
> Use sensors thread instead of timeouts.
> ok dlg@, "slap it in" deraadt@ (kettenis@)
dev/ic
~ ath.c
> more verbose error message for the "bogus xmit rate" problem (reyk@)
~ com.c
> fix kgdb compilation; input and ok miod at .gsch@)
dev/sun
~ sunkbd.c ~ sunkbdvar.h
> Enable or disable keyclick on attach, based upon the PROM keyboard-click?
> property.
> Tested with type 3 and type 4 keyboards. (miod@)
kern
~ exec_elf.c
> Allow binaries to run if all sections are marked writable
> (some unusual linux binaries), ok deraadt. (drahn@)
scsi
~ safte.c
> include sys/device.h. builds on sparc. dlg@ ok. (fgsch@)
ufs/ufs
~ ufs_quota.c ~ ufs_readwrite.c
~ ufs_vfsops.c ~ ufs_vnops.c
> Use ANSI function declarations and deregister, no binary change.
> Diff from Rui Reis <rui at rui.cxthanks. (pedro@)
== usr.bin =========================================================== 05/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin
getent
~ getent.1
> remove nsswitch.conf stuff, and explain how lookup order is handled;
> couple more tweaks;
> ok otto@ (jmc@)
mg
~ echo.c
> Enable some of the more common editing keybindings in the minibuffer.
> i.e. left, right, ^B, ^F, ^Y, ^K, ^A, ^E
> Also, make completions work as you would expect them to
> i.e. a *Completions* buffer pops up with your choices in it
> when you hit a second TAB or SP.
> It's ugly, but it works. ok deraadt. (kjell@)
~ echo.c ~ fileio.c
~ grep.c ~ word.c
> spacing (deraadt@)
~ fileio.c
> Now that we have an editable minibuffer, revert parsing of
> "//" and "/~" as '/' and '~' respectively. I know emacs does it,
> but it is weird, and breaks things that foolishly use filenames
> like "/tmp//crontab.xxxx".
> Proddings from matthieu and deraadt. Error report from Bernd Ahlers.
> (kjell@)
== usr.sbin ========================================================== 06/06 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.sbin
httpd
~ src/main/http_protocol.c
> Disable the TRACE method completely. It is a security risk and is not
> that useful for debugging.
> OK henning, deraadt (cloder@)
===============================================================================
More information about the odc
mailing list