OpenBSD src changes summary for 2016-05-01
==========================================

lib/libc                                regress/usr.bin
sys/arch/amd64/stand/efiboot            sys/arch/arm/xscale
sys/arch/armv7/armv7                    sys/arch/armv7/exynos
sys/arch/armv7/imx                      sys/arch/armv7/omap
sys/dev/ic                              sys/dev/sdmmc
sys/net                                 usr.bin/file
usr.bin/tmux                            usr.sbin/ldapctl
usr.sbin/ldapd                          

== lib =============================================================== 01/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/lib

libc

  ~ net/res_comp.c                        

  > Remove old NeXT-specific cruft.  From mmcc@ (millert@)

== regress =========================================================== 02/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/regress

usr.bin

  ~ file/Makefile                         + file/t31.in
  + file/t31.out                          

  > Test for default (RTF file with an unrecognized character set). (nicm@)

  ~ file/Makefile                         + file/t32.in
  + file/t32.out                          

  > Add a PPM file test (truncated to just the header so it is text only).
  > (nicm@)

  - file/t23.in                           - file/t23.out
  ~ file/Makefile                         

  > Remove some unnecessary comments and t23 which has been disabled forever.
  > (nicm@)

  ~ file/Makefile                         + file/t11.in
  + file/t11.out                          

  > pcap file test (header of file only). (nicm@)

  ~ file/Makefile                         ~ file/t18.in
  + file/t19.in                           + file/t19.out

  > BE ELF object (just the header); also trim the LE object to just the
  > header as well. (nicm@)

  ~ file/Makefile                         + file/t33.in
  + file/t33.out                          

  > Add a test for pstring (a QDOS executable header). (nicm@)

== sys =============================================================== 03/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys

arch/amd64/stand/efiboot

  ~ efidev.c                              

  > Shuffle gpt/mbr code around a bit to make it more like other searches
  > for the disklabel. Tweak a few comments to make it more clear what
  > is happening. No intentional functional change.
  > ok yasuoka@ (krw@)

arch/arm/xscale

  ~ pxa2x0_mmc.c                          

  > Add support for changing the bus width to the sdmmc subsystem and the
  > sdhc(4)
  > controller.  Use this to switch SD cards to a 4-bit bus if they support it.
  > ok deraadt@, jsg@ (kettenis@)

arch/armv7/armv7

  ~ armv7.c                               ~ armv7var.h

  > Remove unused match function.  The armv7 platforms implement their own,
  > which are more specific.
  > ok kettenis@ (patrick@)

arch/armv7/exynos

  ~ exesdhc.c                             

  > Add support for changing the bus width to the sdmmc subsystem and the
  > sdhc(4)
  > controller.  Use this to switch SD cards to a 4-bit bus if they support it.
  > ok deraadt@, jsg@ (kettenis@)

arch/armv7/imx

  ~ imxesdhc.c                            

  > Add support for changing the bus width to the sdmmc subsystem and the
  > sdhc(4)
  > controller.  Use this to switch SD cards to a 4-bit bus if they support it.
  > ok deraadt@, jsg@ (kettenis@)

arch/armv7/omap

  ~ ommmc.c                               

  > Add support for changing the bus width to the sdmmc subsystem and the
  > sdhc(4)
  > controller.  Use this to switch SD cards to a 4-bit bus if they support it.
  > ok deraadt@, jsg@ (kettenis@)

dev/ic

  ~ rtsx.c                                ~ w83l518d_sdmmc.c

  > Add support for changing the bus width to the sdmmc subsystem and the
  > sdhc(4)
  > controller.  Use this to switch SD cards to a 4-bit bus if they support it.
  > ok deraadt@, jsg@ (kettenis@)

dev/sdmmc

  ~ sdhc.c                                ~ sdmmc.c
  ~ sdmmc_mem.c                           ~ sdmmcchip.h
  ~ sdmmcreg.h                            ~ sdmmcvar.h

  > Add support for changing the bus width to the sdmmc subsystem and the
  > sdhc(4)
  > controller.  Use this to switch SD cards to a 4-bit bus if they support it.
  > ok deraadt@, jsg@ (kettenis@)

  ~ sdhc.c                                

  > Always write block count.  This fixes the DMA issues on Bay Trail.
  > (kettenis@)

  ~ sdmmc_mem.c                           

  > Add a small delay after switching an MMC card into high-speed mode to make
  > sure it has witched before changing the bus clock speed. (kettenis@)

  ~ sdhc.c                                ~ sdmmc_mem.c

  > Add bus width switching support for MMC.  Enable 8-bit bus support on
  > sdhc(4) controllers that support it.  Mostly from NetBSD.
  > This makes the raw transfer rate of the eMMC on the Lenovo Ideacentre
  > Stick 300 go up to 40 MB/s. (kettenis@)

  ~ sdhc.c                                

  > Print base clock frequency.
  > ok deraadt@, patrick@ (kettenis@)

  ~ sdmmc.c                               

  > Print some capabilities.
  > ok deraadt@, patrick@ (kettenis@)

net

  ~ if_spppsubr.c                         

  > Remove a bogus "else" that was causing breakage with LCP echoes,
  > bug introduced in r1.138.
  > Reported at https://twitter.com/DarkSoul4242/status/722365165262405633
  > (twitter is *NOT* the place to report bugs!) and in
  > https://marc.info/?l=openbsd-bugs&m=145988918010707&w=2,
  > pointed out by tb@ (sthen@)

== usr.bin =========================================================== 04/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin

file

  ~ magic-load.c                          ~ magic-test.c
  ~ magic.h                               

  > Add support for 'clear' test, and fix 'default' to expand the result
  > string if any (used by, for example, rtf). (nicm@)

  ~ magic-test.c                          

  > Remove __unused that are now lies. (nicm@)

  ~ magic-load.c                          

  > Trim = prefix from regex (it a noop). (nicm@)

  ~ magic-dump.c                          ~ magic-load.c
  ~ magic-test.c                          ~ magic.h

  > Add support for 'name' and 'use' which allows more of the latest magic
  > files to work unchanged. (We are still missing 'indirect' and a few
  > other bits.) (nicm@)

  ~ magic-test.c                          

  > Use the right size (include the length byte) when working out if a
  > pstring is too big. (nicm@)

  ~ magic-load.c                          

  > Exact match use and name with strcmp rather than prefix with strncmp.
  > (nicm@)

  ~ file.c                                ~ magic.h

  > Tidy up some #include lines. (nicm@)

tmux

  ~ tmux.1                                

  > Missing format (window_activity_flag) and a missing Ta. (nicm@)

  ~ cmd-copy-mode.c                       ~ tmux.h
  ~ window-copy.c                         

  > Use the same code for half page scrolling as full, from Michal Mazurek.
  > (nicm@)

== usr.sbin ========================================================== 05/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.sbin

ldapctl

  ~ Makefile                              

  > unbreak the tree:
  > after moving ldapd to the libtls api, ldapctl needs to link against
  > libtls instead of libcrypto
  > ok krw@, jmatthew@ (tb@)

ldapd

  - ssl.c                                 - ssl_privsep.c
  ~ Makefile                              ~ conn.c
  ~ ldapd.c                               ~ ldapd.h
  ~ ldape.c                               ~ parse.y
  + evbuffer_tls.c                        + evbuffer_tls.h

  > convert ldapd to use the libtls api, bringing in a copy of the evbuffer_tls
  > code from syslogd.
  > ok beck@ benno@ (jmatthew@)

===============================================================================
_______________________________________________
odc mailing list
[email protected]
http://www.squish.net/mailman/listinfo/odc

Reply via email to