[odc] Daily src changes for 2008-04-19
ODC
auto at squish.net
Sun Apr 20 07:00:01 BST 2008
OpenBSD src changes summary for 2008-04-19
==========================================
share/man sys/arch/amd64/conf
sys/arch/amd64/stand/boot sys/arch/amd64/stand/cdboot
sys/arch/amd64/stand/pxeboot sys/arch/armish/stand/boot
sys/arch/hppa/stand/boot sys/arch/hppa64/stand/boot
sys/arch/i386/conf sys/arch/i386/stand/boot
sys/arch/i386/stand/cdboot sys/arch/i386/stand/pxeboot
sys/arch/landisk/stand/boot sys/arch/macppc/stand
sys/arch/sparc64/conf sys/dev/pci
sys/dev/usb sys/lib/libsa
sys/nfs usr.bin/sendbug
usr.sbin/config
== share ============================================================= 01/04 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/share
man
~ man4/ahci.4
> add a driver flag to force the negotiation of SATA 1 transfers
> (1.5Gb/s). Useful where faster speeds are unstable; ok dlg@ (djm@)
== sys =============================================================== 02/04 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/sys
arch/amd64/conf
~ GENERIC
> add a driver flag to force the negotiation of SATA 1 transfers
> (1.5Gb/s). Useful where faster speeds are unstable; ok dlg@ (djm@)
arch/amd64/stand/boot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/amd64/stand/cdboot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/amd64/stand/pxeboot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/armish/stand/boot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/hppa/stand/boot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/hppa64/stand/boot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/i386/conf
~ GENERIC
> add a driver flag to force the negotiation of SATA 1 transfers
> (1.5Gb/s). Useful where faster speeds are unstable; ok dlg@ (djm@)
arch/i386/stand/boot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/i386/stand/cdboot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/i386/stand/pxeboot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/landisk/stand/boot
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/macppc/stand
~ conf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
arch/sparc64/conf
~ GENERIC
> add a driver flag to force the negotiation of SATA 1 transfers
> (1.5Gb/s). Useful where faster speeds are unstable; ok dlg@ (djm@)
dev/pci
~ ahci.c
> add a driver flag to force the negotiation of SATA 1 transfers
> (1.5Gb/s). Useful where faster speeds are unstable; ok dlg@ (djm@)
dev/usb
~ uvideo.c
> Sort functions and remove obsolete bits. (mglocker@)
lib/libsa
~ loadfile_elf.c
> Change ELF loader to use the LMA as the load address for the
> various segments. Hopefully this will help remove various
> hacks in the boot loader in the future. This should have no
> effect on most architectures (as we tend to have LMA == VMA).
> ok drahn@, soft ok's various others. (weingart@)
nfs
~ nfs_subs.c
> in nfsm_reqh(), only allocate an mbuf cluster if the
> len exceeds MLEN, not MINCLSIZE; inspired by a similar
> commit from damien.
> ok damien@, blambert@ (thib@)
== usr.bin =========================================================== 03/04 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin
sendbug
~ sendbug.c
> Decrement len variable after removing newline, prevents copying the
> NUL at the end of a string into the mail. Discovered by dasn.
> Move newline printing into outer loop, prevents multiple newlines
> from appearing if there are multiple comments in a line. Discovered
> by okan.
> OK okan. (ray@)
== usr.sbin ========================================================== 04/04 ==
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.sbin
config
~ mkmakefile.c
> remove build warnings:
> - unused variables
> - missing return
> ok espie@ (chl@)
===============================================================================
More information about the odc
mailing list