=================================================================== RCS file: /cvsrepo/anoncvs/cvs/www/59.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- www/59.html 2016/02/28 01:54:57 1.45 +++ www/59.html 2016/03/01 22:51:15 1.46 @@ -75,6 +75,7 @@
  • The puc(4) driver now supports Moxa CP-168U, Perle Speed8 LE and QEMU PCI serial devices.
  • Intel 100 Series PCH Ethernet MAC with i219 PHY support has been added to the em(4) driver. +
  • The em(4) driver now processes packets without the kernel lock held.
  • RTL8168H/RTL8111H support has been added to re(4).
  • New asmc(4) driver for the Apple System Management Controller. @@ -88,6 +89,9 @@
  • inteldrm(4) has been updated to Linux 3.14.52 adding initial support for Bay Trail and Broadwell graphics.
  • New viocon(4) driver for the virtio(4) console interface provided by KVM, QEMU, and others. +
  • Support for audio in Thinkpad docks has been added to the azalia(4) driver. +
  • Support for Synaptic touchpads without W mode has been added to the pms(4) driver. +
  • Support for tap-and-drag detection with ALPS touchpads in the pms(4) driver has been improved.
  • ...

    @@ -117,7 +121,8 @@

  • Remove support for obsolete IPv6 socket options.
  • New etherip(4) pseudo-device for tunnelling Ethernet frames across IP[46] networks using RFC 3378 EtherIP encapsulation. -
  • New pair(4) pseudo-device for ... +
  • New pair(4) pseudo-device for creating paired virtual Ethernet interfaces. +
  • bpf(4) now runs without the kernel lock.
  • ...

    @@ -189,6 +194,10 @@

  • Handle intra-thread kills via new thrkill(2) system call to tighten pledge(2) restrictions and improve pthread_kill(3) and pthread_cancel(3) compliance.
  • Added getpwnam_shadow(3) and getpwuid_shadow(3) to permit tighter pledge(2) restrictions.
  • Added support to ktrace(1) the arguments to execve(2) and pledge(2). Removed support for tracing context switch points. kevent structures are now dumped. +
  • Disabled support for loading locales other than UTF-8. +
  • UTF-8 character locale data has been updated to Unicode 7.0.0. +
  • Added UTF-8 support to several utilities, including ls(1), calendar(1), colrm(1), cut(1), fmt(1), ps(1), rs(1), ul(1), uniq(1), and wc(1). +
  • Native language support (NLS) has been removed from libc.
  • ...