[>]
http://marc.info/?l=openbsd-cvs&m=140757754304969&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-09 13:55:10
Module name: src
Changes by: mpi@cvs.openbsd.org 2014/08/09 03:45:14
Modified files:
sys/dev/usb : uhub.c usb.c usb_subr.c usbdivar.h
Log message:
Do not store the whole USB hub descriptor in the "struct usbd_hub"
to help integrating super speed hubs that use a different descriptor.
[>]
http://marc.info/?l=openbsd-cvs&m=140757830805165&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-09 14:55:07
Module name: src
Changes by: mpi@cvs.openbsd.org 2014/08/09 03:58:11
Modified files:
sys/dev/usb : uhub.c
Log message:
Correctly recognize Super Speed devices, this is part of the work to
be able to use USB 3.0 devices behind an external hub.
This is a bit tricky because the SS status use a different power bit
that maps to the Low speed one. So no longer accept devices without
power bit and fallback to the parent hub's speed in case the status
does not report any particular speed.
Note that xhci(4) root hubs still set the traditionnal UPS_PORT_POWER
bit with the correct device speed.
[>]
http://marc.info/?l=openbsd-cvs&m=140758037505612&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-09 14:55:09
Module name: src
Changes by: mpi@cvs.openbsd.org 2014/08/09 04:32:36
Modified files:
sys/dev/usb : xhci.c
Log message:
Add support for non-root hubs now that uhub(4) can deal with them. For
the moment only Super and High Speed devices are properly recognized.
Some TT love is required for Full and Low speed devices.
[>]
http://marc.info/?l=openbsd-cvs&m=140758831707292&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-09 16:55:07
Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:45:03
Modified files:
usr.sbin/sysmerge: sysmerge.8 sysmerge.sh
Log message:
Initial support for handling configuration files from packages
(aka @sample) -- `sysmerge -p`
Worked done at g2k14.
Committing early so we have plenty of time for testing.
with help from espie@
thanks to landry@ for feedback on initial testing
[>]
http://marc.info/?l=openbsd-cvs&m=140760332011221&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-09 21:55:07
Module name: src
Changes by: tedu@cvs.openbsd.org 2014/08/09 10:54:58
Modified files:
lib/libssl/src/crypto/asn1: Tag: OPENBSD_5_5 a_object.c
lib/libssl/src/crypto/ec: Tag: OPENBSD_5_5 ec_lib.c ecp_smpl.c
lib/libssl/src/ssl: Tag: OPENBSD_5_5 d1_both.c d1_clnt.c
d1_srvr.c s23_lib.c s23_srvr.c s3_clnt.c
s3_enc.c s3_pkt.c s3_srvr.c ssl_lib.c
t1_lib.c
Log message:
backport relevant security fixes from openssl 1.0.1i
tested by bcook jsg
[>]
http://marc.info/?l=openbsd-cvs&m=140760336811231&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-09 21:55:08
Module name: src
Changes by: tedu@cvs.openbsd.org 2014/08/09 10:55:55
Modified files:
lib/libssl/src/crypto/asn1: Tag: OPENBSD_5_4 a_object.c
lib/libssl/src/crypto/ec: Tag: OPENBSD_5_4 ec_lib.c ecp_smpl.c
lib/libssl/src/ssl: Tag: OPENBSD_5_4 d1_both.c d1_clnt.c
d1_srvr.c s23_lib.c s23_srvr.c s3_clnt.c
s3_enc.c s3_pkt.c s3_srvr.c ssl_lib.c
t1_lib.c
Log message:
backport relevant security fixes from openssl 1.0.1i
tested by bcook jsg
[>]
http://marc.info/?l=openbsd-cvs&m=140761494814233&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-10 00:55:09
Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/09 14:08:44
Modified files:
gnu/usr.bin/binutils-2.17/binutils: dwarf.c
gnu/usr.bin/binutils/binutils: readelf.c
Log message:
Fix readelf --debug-dump=frames-interp output: once a register is given
a column, it needs to included in all rows, even after the register is
restored.
ok jsg@
[>]
http://marc.info/?l=openbsd-cvs&m=140762110615695&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-10 01:55:06
Module name: src
Changes by: halex@cvs.openbsd.org 2014/08/09 15:51:29
Modified files:
distrib/miniroot: install.sh install.sub
Log message:
After a cleanup by deraadt I noticed the four-space-indent had started
infesting the scripts. As we generally use a single tab for line
continuation indent in the scripts, let's reclaim 30 precious bytes!
ok rpe@ krw@
[>]
http://marc.info/?l=openbsd-cvs&m=140764121419669&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-10 07:55:09
Module name: src
Changes by: lteo@cvs.openbsd.org 2014/08/09 21:26:20
Modified files:
sys/netinet : ip_divert.c
Log message:
Fix the length check for reinjected ICMP packets: sizeof(struct icmp) is
28 but an ICMP packet can be as small as 8 bytes (e.g. an ICMP echo
request packet with no payload), so check against ICMP_MINLEN instead.
Prior to this fix, divert(4) would erroneously discard valid ICMP
packets that are shorter than 20 bytes.
ICMPv6 is not affected, so this change applies to ICMP over IPv4 only.
ok florian@ henning@