Skip to content
  1. Mar 30, 2017
  2. Mar 29, 2017
    • Patrick Williams's avatar
      phosphor-logging.bb: bump version · 4f658a4c
      Patrick Williams authored
      
      
      Change-Id: I51423a8daf73494ea62458c91fb69d37d423dd3c
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      4f658a4c
    • Patrick Williams's avatar
      phosphor-software-manager.bb: bump version · 528b36a1
      Patrick Williams authored
      
      
      Change-Id: I7579e2ae1ee3354ca6ad0e030bf554a1dc72342f
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      528b36a1
    • Patrick Williams's avatar
      phosphor-ipmi-host.bb: bump version · 5ff90f82
      Patrick Williams authored
      
      
      Change-Id: I387cce1b32d42986a9a13e46d95f6a8bdd9b5052
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      5ff90f82
    • Patrick Williams's avatar
      pyphosphor.bb: bump version · 4f2d8523
      Patrick Williams authored
      
      
      Change-Id: I736d64b864cf11297349478b100fd28795a46fd1
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      4f2d8523
    • Patrick Williams's avatar
      skeleton-rev.bbclass: bump version · d0ad494e
      Patrick Williams authored
      
      
      Change-Id: I701bebd5622f63d916599df4799e146250ad250d
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      d0ad494e
    • Patrick Williams's avatar
      phosphor-led-manager.inc: bump version · b0405965
      Patrick Williams authored
      
      
      Change-Id: I0d0caa5fcf4e67a80eed34f430649d090a17847e
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      b0405965
    • Matt Spinler's avatar
      phosphor-hwmon-config-mrw: avoid relative path in recipe · 6fb9ddb3
      Matt Spinler authored
      
      
      This path can be different on different build systems.
      Instead, use WORKDIR as the path.
      
      Change-Id: I11f91087c62174e1f700c7c7d7d4618a4c0b47df
      Signed-off-by: default avatarMatt Spinler <spinler@us.ibm.com>
      6fb9ddb3
    • Patrick Williams's avatar
      binutils: allow build on RHEL6 · e6870323
      Patrick Williams authored
      
      
      The gcc in RHEL6 does not support a compiler warning enabled
      by binutils.  The 'target' compiler generated by Yocto does.
      
      When cross-compiling or creating the SDK, binutils autoconf
      detects that the cross-compiler for the 'target' supports this
      and then enables it for both 'target' and 'host' compile
      invocations.
      
      Since we do not care about compile warnings of a fundamental
      package like binutils, disable it via patch.
      
      See openbmc/openbmc#1407 to track removal.
      
      Change-Id: I006ec35fe5b9d67ef4752b66e703f2fd79b46714
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      e6870323
    • Patrick Williams's avatar
      meta-phosphor: disable 'uninative' for RHEL6 support · c83cf1ce
      Patrick Williams authored
      
      
      The uninative stub from Yocto-2.2 includes a glibc that
      no longer has legacy kernel support for the kernel in
      RHEL6.  We need to disable uninative and set OLDEST_KERNEL
      to enable backwards compatibility.
      
      See openbmc/openbmc#1407 to track removal of this.
      
      Change-Id: I6352514016d803b7b77d483425b3f080eef896c0
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      c83cf1ce
    • Patrick Williams's avatar
      qemu: remove unsupported linker option for RHEL6 · 94ac41b1
      Patrick Williams authored
      
      
      RHEL6's native gcc does not support this option and
      removing it seems to have no effect.  Remove to
      allow compiles on RHEL6.
      
      See openbmc/openbmc#1407 to track removal.
      
      Change-Id: I073efde520740c57d9a5b51c19092dd74f532c1d
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      94ac41b1
    • Patrick Williams's avatar
      python-mako: remove unneeded fixup · 5aa3473b
      Patrick Williams authored
      
      
      Upstream python-mako included in Yocto 2.2 doesn't seem to have
      this problem.  Remove the sed patch.
      
      Change-Id: If967c04d04b19afba175f86f3afac22df694c019
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      5aa3473b
    • Saqib Khan's avatar
      meta-openpower: fix iicmaster and pflash warning · bc03e88a
      Saqib Khan authored
      
      
      In order to fix GNU_HASH warning in the elf binary
      we need to add the LDFLAGS to the TARGET_CC_ARCH.
      
      Opened issues openbmc/openbmc#1361 and
      openbmc/openbmc#1362 to track removal.
      
      Change-Id: Ia6e4ad69c7f3e2c272146e39512400a19b44d760
      Signed-off-by: default avatarSaqib Khan <khansa@us.ibm.com>
      bc03e88a
    • Saqib Khan's avatar
      meta-phosphor: missing space on CFLAG_append · c8afc6a4
      Saqib Khan authored
      
      
      FOO_append is effectively an alias for 'FOO=FOO+FOO_append',
      so it is a common pattern to preceed the FOO_append string
      with a space.
      
          Right: FOO_append = " bar"
              Results in FOO="foo bar"
          Wrong: FOO_append = "bar"
              Results in FOO="foobar"
      
      Fix incorrect CFLAG_append entries in recipes to avoid
      compile errors like:
      
          Error: configure: error: C compiler cannot create
              executables
      
      Change-Id: Id81af5666b173aca35eb28f541a8325db1d438fd
      Signed-off-by: default avatarSaqib Khan <khansa@us.ibm.com>
      c8afc6a4
    • Saqib Khan's avatar
      obmc-phosphor-debug-tarball: yocto2.2 var name change · 0f38f855
      Saqib Khan authored
      
      
      DEPLOY_DIR_IMAGE has been replaced by IMGDEPLOYDIR in
      the latest yocto version.
      
      Change-Id: Id89dd8f03e9d97509adea88ad06a84193e92002e
      Signed-off-by: default avatarSaqib Khan <khansa@us.ibm.com>
      0f38f855
    • Saqib Khan's avatar
      openssl: remove unused patch · 83d5e75f
      Saqib Khan authored
      
      
      configure flags no longer require openssl to be built
      with make depend && make. Thus removing it.
      
      Change-Id: I31c3a03b04bd52db6f3e500622eb197afacd2fe1
      Signed-off-by: default avatarSaqib Khan <khansa@us.ibm.com>
      83d5e75f
    • Saqib Khan's avatar
      obmc-phosphor-systemd: use new configparser · c1401580
      Saqib Khan authored
      
      
      ConfigParser has been renamed to configparser in python3
      for PEP 8 compliance.
      
      Change-Id: I3d95329ea1adcdeb02b83245e7d13f5bf1d7de58
      Signed-off-by: default avatarSaqib Khan <khansa@us.ibm.com>
      c1401580
    • Ross Burton's avatar
      gnomebase: remove gnome-common-native DEPENDS · 66b2b7df
      Ross Burton authored
      
      
      gnome-common is deprecated upstream and an increasingly smaller fraction of
      GNOME packages still use it.  To avoid adding it redundantly to DEPENDS, remove
      it from the class.
      
      (From OE-Core rev: 1d18c2b7bfaed77b30e02d14ae581d920e4eb446)
      
      Change-Id: I5c5149f99fd17d74060dbdd56de3431a0d1e4b7b
      Signed-off-by: default avatarRoss Burton <ross.burton@intel.com>
      Signed-off-by: default avatarRichard Purdie <richard.purdie@linuxfoundation.org>
      Signed-off-by: default avatarSaqib Khan <khansa@us.ibm.com>
      66b2b7df
    • Patrick Williams's avatar
      Squashed 'import-layers/meta-virtualization/'. · e69d235b
      Patrick Williams authored
      
      
      5cacf86 containerd: Fix build on 386
      120745a xen: add a README to provide info for users
      1249508 xen: remove unused patch
      b99f54e xen: update license checksum
      36db755 xen: ensure we build release builds
      358c14b xen: make it easy to override hypervisor config
      beadd3a xen: add gnu-efi to DEPENDS
      bec00eb docker: cosmetic - fix indentation
      2307ad4 docker: use a switch to set GOARCH based on TARGET_ARCH value
      629b6bb docker: update description
      23eb02c docker: update to docker 1.12.5 release
      20c1905 xen-image-minimal: if DISTRO_FEATURES is missing xen error
      7946a48 README: make it easier to copy and paste send command
      923bf51 xen: bump to version 4.8.0
      1f3d204 xen: switch to updated download URL
      f364321 xen: add extra generated file to package
      ada27ac kernel: add linux-yocto-4.8 bbappend
      2d00a79 protobuf: ptest: Fix QA file-rdep warning
      b2f3852 protobuf: Fix QA error for GNU_HASH
      d55a579 go-cross: Fix failure if building go-cross first
      c3d8676 go-native: Add work around for binutils >= 2.27
      d866c43 containerd: use the target toolchain to build cgo components
      58bc830 go-cross: Fix host contamination for x86_64 host to x86_64 target
      5caa9ba lxc: add glibc-utils to rdepend
      05d080d Revert "go-cross: Fix host contamination for x86_64 host to x86_64 target"
      b25af25 libvirt: remove .o files for ptest
      7ff08e5 go-cross: Fix host contamination for x86_64 host to x86_64 target
      1bf8c77 multipath-tools: Drop recipe
      b9b7ece criu: uprev to 2.5
      c415f97 protobuf-c: uprev to 1.2.1 from 0.15
      5e5e09a protobuf: uprev 3.0.0 from 2.6.1
      222f8d4 kvmtool: add lightweight hypervisor native Linux KVM tool
      a3766e4 go-distribution-digest: Fix do_package failure
      548c88a libvirt: Add missing test helpers and remove windows 1252
      c46b790 protobuf: fix source location
      84a1671 custom-licenses: add NewRelic license
      bc4459e cgroup-lite: update to version 1.11
      db5ef80 docker: update license md5sum
      951c83c docker: cgroup-lite is not required with systemd
      3907b09 libvirt: update list of licenses
      aeb1763 openvswitch: add missing python modules to execute ovs-test program
      42af8a1 libvirt: fix CVE-2016-5008
      bdcf476 libvirt: fix build error for arm
      af2948e libvirt: upgrade 1.3.2 -> 1.3.5
      357ca45 libvirt: fix python install in multilib case.
      f7fd448 xen: uprev to 4.7.0
      9179537 libvirt: add missing configuration file
      1fd5a59 containers: uprev docker (1.12.0), runc (1.0.0-rc) and containerd (0.2.2)
      7d41ad1 docker: fix GNU hash QA warning
      59c338a iasl: Upgrade to 20160527 from 20120215
      b657b65 lxc: fixes lxc segment fault issue on arm if it is compiled with GCC 5.2
      cb16321 base-files: remove bbappend hacking on fstab
      f53bca5 netns: New recipe
      0ce0b5c runc: Use go-osarchmap to set GOARCH
      6b656b8 runc: Backport fix for building against musl
      7605443 docker-registry: Make version dependence compatible with opkg
      06dccfa criu: fix build-deps qa warning
      01aa8f1 docker: override GOROOT at build time
      313b06b go-cross: allow tmp directory to already exist
      da1e90e protobuf: Add RDEPENDS for ptest
      dc7ab5b libvirt-python: backport a patch to fix crash in getAllDomainStats
      16a31ef containerd: replace deprecated base_contains
      0afa6e1 protobuf: add protobuf-2.5.0 into devtool
      823c8cf criu: remove protobuf-2.6.1 and the related
      3c3293e go-native: don't use host /var/tmp for temp build artifacts
      77e846b docker: drop obselete dependencies
      6f1ea8b lxc: workaround to ignore deprecated
      fd94b3f openvswitch: Fix rootfs creation errors
      7e2ad37 go-cross: don't use host /var/tmp for temporary build artifacts
      a3617f2 globally replace 'base_contains' calls with 'bb.utils.contains'
      1fd94d8 criu: Fix QA warning
      6f17a76 docker: uprev to 1.11.1
      fd1a6d1 runc: initial recipe
      e919b64 containerd: initial recipe
      79654fc go: add go-cross 1.6
      5dedd39 lxc: update configuration to include all required options
      REVERT: c4a1711 docker-registry: Make version dependence compatible with opkg
      REVERT: b6b8885 docker: drop obselete dependencies
      REVERT: 44440d7 go-cross: allow tmp directory to already exist
      REVERT: 7f3cc50 go-native: don't use host /var/tmp for temp build artifacts
      REVERT: 25ee1f1 go-cross: don't use host /var/tmp for temporary build artifacts
      REVERT: a9a9fc0 go: add go-cross 1.6
      
      Change-Id: Ic4431940d01a4c0ec113786583c6e09cec88fb03
      git-subtree-dir: import-layers/meta-virtualization
      git-subtree-split: 5cacf8632da2c20dc994c3b33608f0d3cea9df13
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      e69d235b
    • Patrick Williams's avatar
      Squashed 'import-layers/meta-raspberrypi/'. · b2e6a9b5
      Patrick Williams authored
      
      
      cce6292 linux-raspberrypi_4.9.bb: Upgrade to 4.9.10
      c34a6b0 linux-raspberrypi_4.4: Update to 4.4.48
      7398030 Revert "u-boot: drop patch to include lowlevel_init"
      69c5675 README: Mention CM1 and CM3 support
      56b0c59 rpi-base.inc: Include dtb file for CM1 and CM3
      a735477 raspberrypi*.conf: Minor tweaks
      9923618 raspberrypi-cm3.conf: Add dummy machine for CM3 (alias for RPi2)
      d5aa048 raspberrypi-cm.conf: Add dummy machine for CM1 (alias for RPi1)
      5b5c4d9 linux-raspberrypi_4.9: Update to 4.9.4
      f81f022 linux-raspberrypi_4.4: Update to 4.4.43
      263e6bd linux-raspberrypi: Drop v4.8
      121e200 linux-raspberrypi: Drop v4.7
      cb7068a linux-raspberrypi: Upgrade to v4.4.39
      38bc324 linux-raspberrypi: Drop v4.1
      e1f69da linux-raspberrypi_4.9.bb: Add recipe for 4.9 release
      02c0d41 linux-raspberrypi_4.8.bb: Upgrade to 4.8.16
      031e2695 u-boot: drop patch to include lowlevel_init
      c405581 rpi-base.inc: remove input modules form XSERVER
      d77f3d4 rpi-base.inc: add xserver-xorg-extension-glx to XSERVER for vc4 enabled
      672e025 linux-raspberrypi-4.8: Upgrade to 4.8.15
      1bf09a4 userland: Fix building on aarch64
      22fb2b4 linux-raspberrypi-4.8: Upgrade to 4.8.13
      90c45b4 userland: Update to latest
      96b9c63 linux-raspberrypi-base.bbclass: remove version hack
      17f0c23 linux-rpi.inc: Do not rely on DISTRO_TYPE to enable/disable kernel debug
      064aa0a u-boot: Simplify boot script
      0e66d69 linux-raspberrypi_4.8.bb: upgrade to 4.8.12
      18cf04d firmware: Update to 20161125
      1f64604 linux-raspberrypi_4.4.bb: upgrade to 4.4.35
      44d41bf raspberrypi3.conf: fix typo for BCM43430
      6bd1bfe linux-raspberrypi: remove not needed bundle_initramfs_append()
      b030814 u-boot: Fix appending to RDEPENDS
      9c12ac8 linux-raspberrypi_4.8.bb: Upgrade to 4.8.6
      380740d linux-firmware_git.bbappend: Delete
      a5f95f4 userland: Bump to latest and add ASNEEDED = ""
      716b6a9 firmware: Use release tarballs
      6c755af weston: Unify bbappends for weston into single file
      b9e6f04 userland: Update to latest master tip
      00300d9 firmware: Update to 20161030
      3e6e890 linux-raspberrypi-4.4: Update to 4.4.28
      12aa27d gstreamer1.0-plugins-bad_%.bbappend: Set PACKAGECONFIG_GL for RPi
      ab39653 rpi-base.inc: Include pi3-disable-bt-overlay.dtb
      17a6933 linux-raspberrypi: Update to 4.8.4
      ddc9390 linux-firmware: Fix "No generic license file exists" warning
      d51a8a7 linux-raspberrypi_4.8.bb: Update to 4.8.2
      e991148 firmware: Update to latest
      ed54bd3 linux-firmware: Correct the LICENSE for brcm43430-license
      3360f98 sdcard_image-rpi.bbclass: Include boot script when using u-boot
      1d629b1 u-boot: Add RDEPENDS on rpi-u-boot-scr
      56047ad rpi-u-boot-scr: Add recipe to create u-boot boot script
      1f24992 rpi-base.inc: Don't install kernel image into rootfs
      c62e088 eglinfo-x11: align to VC4
      1ebb370 vc4: why no framebuffer device?
      8d17669 xorg align for vc4
      3b9aebd mesa: align for vc4
      de016ce bluez5: correctly append brcm43438 service
      b6c954d Fix DISPMANX_OFFLINE variable typo
      d778d0a README: Replace references to Redmine with Github Issues
      1e3983f linux-raspberrypi_4.7.bb: Update to 4.7.7
      ecd8875 linux-raspberrypi: Add recipe for 4.8 release
      05be947 firmware: Upgrade to latest
      585838e userland: Upgrade to latest
      41689e8 sdcard_image-rpi.bbclass: Remove redundant RPI_KERNEL_VERSION
      5697e77 linux-raspberrypi_4.4: Upgrade to 4.4.23
      4817e2c sdcard_image-rpi.bbclass: avoid corrupted images with latest oe-core
      ac6f357 weston: Fix typo with override
      760ddd0 Switch to using 4.4 as default kernel
      ed84c2c vc4graphics: Support X11 with the VC4 driver.
      55388a5 firmware, userland: Bump to latest
      b24afdc linux-raspberrypi_3.18: Remove
      e993bdc linux-raspberrypi: Add recipe for 4.7 release
      c2f7643 linux-raspberrypi_4.4: upgrade to 4.4.16
      d511c7c linux-raspberrypi-4.4: add patch to enable proper operation of renderD128 device
      ef22ff4 linux-rpi.inc: add the configuration options required to support vc4graphics
      6b4de2b mesa_%.bbappend: new file to add the correct configuration options to support vc4graphics
      bee7643 weston/weston_%.bbappend: modify configuration options to support vc4graphics
      72b9635 wayland/weston_%.bbappend: modify configuration options to support vc4graphics
      ba9c466 rpi-config_git.bb: add v4c overlay to config.txt to support vc4graphics
      5d2722c raspberrypi3.conf: set the default value of VC4_CMA_SIZE to support vc4graphics
      824b78c raspberrypi2.conf: set the default value of VC4_CMA_SIZE to support vc4graphics
      dfce95f raspberrypi0.conf: set the default value of VC4_CMA_SIZE to support vc4graphics
      224b9e9 raspberrypi.conf: set the default value of VC4_CMA_SIZE to support vc4graphics
      0035bc8 rpi-base.inc: add vc4-kms-v3d to the overlays to support vc4graphics
      6e535dd rpi-default-providers.inc: change default providers to support vc4graphics
      1a32817 sdcard_image-rpi.bbclass: support for .dtbo files for dtb overlays
      d98f2a7 linux-raspberrypi-base.bbclass: support for .dtbo files for dtb overlays
      09b76a4 rpi-base.inc: support for .dtbo files for dtb overlays
      18a2fb6 linux-raspberrypi_4.4.bb: support for .dtbo files for dtb overlays
      a5f9b07 bcm2835: Compile examples correct LDFLAGS to avoid HASH errors
      8c5eba1 bcm2835: Update to 1.50
      5229f75 wiringPi: Fix compilation of libraries
      5771c7f wiringpi: Fix prepend space
      1b2c25e wiringpi: Update to 2.32
      4c02c7c sdcard_image-rpi.bbclass: remove redundant IMAGEDATESTAMP
      cc64d63 userland: Add bash to RDEPENDS
      
      Change-Id: Ic9e50299fcba012068cea0c0a971c48c6da4138f
      git-subtree-dir: import-layers/meta-raspberrypi
      git-subtree-split: cce6292e41493158c26f5b1b7fded97faacf10d7
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      b2e6a9b5
    • Patrick Williams's avatar
      Squashed 'import-layers/meta-openembedded/'. · ddad1a15
      Patrick Williams authored
      
      
      1efa5d6 gpsd: fix multilib build
      97b82f3 exo: unbreak Thunar's detailed file view
      5829238 modemmanager: Fix build with clang
      9dc61c3 libmad: Fix build with clang
      3cb5bcd fribidi: Fix build with security flags turned on
      c6bb220 flashrom: Remove redundant const qualifier
      7ac8ead md5deep: Fix build with clang
      6a08999 openldap: Fix Build error due to missing -fPIC
      ae254b4 libqmi: Fix build with clang
      1ae5293 android-tools: fix do_install
      a67677b rsnapshot: fix host path in rsnapshot.conf.default
      f98f05a xfwm4: add x11 to REQUIRED_DISTRO_FEATURES
      0913142 xfdesktop: add x11 to REQUIRED_DISTRO_FEATURES
      4abb9bd xfce4-settings: add x11 to REQUIRED_DISTRO_FEATURES
      fbb8993 xfce4-session: add x11 to REQUIRED_DISTRO_FEATURES
      a7033bf xfce4-power-manager: add x11 to REQUIRED_DISTRO_FEATURES
      c628fef xfce4-panel: add x11 to REQUIRED_DISTRO_FEATURES
      d6ff552 xfce4-appfinder: add x11 to REQUIRED_DISTRO_FEATURES
      f470662 thunar-volman: add x11 to REQUIRED_DISTRO_FEATURES
      a905a4b thunar: add x11 to REQUIRED_DISTRO_FEATURES
      4898fc6 libxfce4ui: add x11 to REQUIRED_DISTRO_FEATURES
      4ea40f3 gtk-xfce-engine: add x11 to REQUIRED_DISTRO_FEATURES
      57faeed garcon: add x11 to REQUIRED_DISTRO_FEATURES
      af6a177 exo: add x11 to REQUIRED_DISTRO_FEATURES
      0b91d71 xfce-app.bbclass: add x11 to REQUIRED_DISTRO_FEATURES
      33055f8 xfce-panel-plugin.bbclass: add x11 to REQUIRED_DISTRO_FEATURES
      17c9299 thunar-plugin.bbclass: add x11 to REQUIRED_DISTRO_FEATURES
      e3cc8a1 xfce4-pulseaudio-plugin: add x11 to REQUIRED_DISTRO_FEATURES
      968e99e packagegroup-xfce-base: add x11 to REQUIRED_DISTRO_FEATURES
      3a2f97e libxklavier: add x11 to REQUIRED_DISTRO_FEATURES
      7a557a2b libwnck: add x11 to REQUIRED_DISTRO_FEATURES
      179bcb1 gtksourceview2: add x11 to REQUIRED_DISTRO_FEATURES
      eea7d0b gnome-disk-utility: add x11 to REQUIRED_DISTRO_FEATURES
      bc9450c evince: add x11 to REQUIRED_DISTRO_FEATURES
      121a333 dconf: add x11 to REQUIRED_DISTRO_FEATURES
      74ee171 libunique: add x11 to REQUIRED_DISTRO_FEATURES
      258f4f3 pavucontrol: add x11 to REQUIRED_DISTRO_FEATURES
      c30411d gtkmm: add x11 to REQUIRED_DISTRO_FEATURES
      d08864a opencv: checking existence of /usr/lib
      cb24773 libeigen: set tarball name as ${BP}.tar.bz2
      00b89f2 opencv: fix QA issue
      d8d90a6 openjpeg: rename the download file
      dcfb513 apache2: include .load files in modules.d
      0ec9cb2 asio: fix a musl compilation warning
      c840f78 asio: DEPENDS on openssl
      d2a990b lockdev: Pretend GNU libc on musl
      02bca9e libplist: Remove rpaths surgically
      45c2854 augeas: fix QA warning
      ebc3e16 edac-utils: fix systemd service
      54b566a mariadb: use faster download URL
      4ef0a72 krb5: Add -fPIC to compile flags
      976fccd meta_oe_security_flags.inc: Add libcec, libmodplug, libcdio
      2c3aaa7 meta_oe_security_flags: Disable PIE for s3c64xx-gpio/s3c24xx-gpio/cpufrequtils
      9869a2d python-m2crypto: inherit siteinfo
      f169b40 ttf-abyssinica: update SRC_URI
      cce0d82 xterm: package /usr/lib/X11 to avoid installed-vs-shipped error on ppc64
      2e71e6a fftw: Remove the fftw-dev package dependency on non-existent fftw package.
      14c4d27 Revert "physfs: move to sources found at github/supertux"
      24c9c2b wireshark: install missing header files
      b840fce tunctl: fix QA warning for GNU_HASH
      705a4c1 vblade: fix QA warning for GNU_HASH
      a3d23d2 tsocks: fix QA warning for GNU_HASH
      35dfe1a zeroconf: fix QA warning for GNU_HASH
      052fe5e nuttcp: fix QA warning for GNU_HASH
      b6d9486 aoetools: fix QA warning for GNU_HASH
      6ea4941 iscsi-initiator-utils: fix postinstall and systemd service file
      dbabbd8 lftp: fix PACKAGECONFIG[readline]
      6f06d75 drbd-utils: 8.9.3 -> 8.9.6
      5336366 lksctp-tools: 1.0.16 -> 1.0.17
      659d9d3 meta-openembedded: Add me to morty maintainer's list
      6e91977 c-ares: update 1.11.0 -> 1.12.0
      406ca64 libmnl, nftables: Update versions
      dce441f openl2tp: Fix build with clang
      aebf681 lowpan-tools: Fix errors found with clang
      c8f78ec linux-atm: fix do_compile error
      7a491f3 nodejs: update to 4.6.1
      2396e30 openldap: use recommended backend mdb
      ce2b1ac rsyslog: upgrade to 8.22.0
      ca3a032 librelp: add recipe
      2f7c00b libfastjson: add recipe
      9af1859 vim: Update to v8.0.0022
      b096119 glmark2: Enabling c++ 11 features
      3587696 android-tools: fix native build
      e63aa5b dhcp_%.bbappend: fix replaces original key warning
      51867d2 rsnapshot: update to 1.4.2
      a4f713b python-unidiff: python module for parsing diff data
      b6f38dd mg: Update to 20161005
      9db48dc joe: Fix build with clang
      cc5414c glcompbench: Demand c++11 explicitly
      b8ecf24 flashrom: Fix build with clang and aarch64
      2449866 gpm: Remove nested functions
      09ac7a6 libdc1394: Upgrade to 2.2.4
      71670ff python-greenlet: Rename register from rX to xX for aarch64
      73c6871 frame: Fix build with clang
      2280f69 libplist: Squash warnings found by clang
      577604b libmbim: Fix build with clang
      558d935 libbonobo: Fix missing dep on orbit2-native and build with clang
      3fd6133 libndp: 1.5 -> 1.6
      ccec146 adduser: always add -M option for useradd
      dd2748d dvb-apps: fix recipe, and update to the latest version
      d0b44b7 v4l-utils: add support for "native" build
      74d5222 inotify-tools: add recipe
      00ba3c8 nodejs: update to 4.6.0
      a87270e postgresql.inc: Fix do_configure error (could not find Python.h)
      887cdc7 mpich: update to version 3.2
      8cefb2e libsoc: update to version 0.8.2
      1872a8a libsodium: update to version 1.0.11
      a5bc9e9 python-evdev: update to version 0.6.4
      d4185c6 python-dbusmock: update to version 0.16.7
      ecc78a9 python-cmd2: update to version 0.6.9
      c8f992c python-bcrypt: update to version 3.1.1
      e15a35a python-werkzeug: update to version 0.11.11
      2810af5 python-urllib3: update to version 1.18
      40efc44 python-rfc3987: update to version 1.3.7
      3f000b5 python-pytest: update to version 3.0.1
      f35e4e6 nginx: update to version 1.11.5
      951d31e python-pyopenssl: update to version 16.1.0
      0a812a0 python-pymongo: update to version 3.3.0
      96819dd python-pymisp: update to version 2.4.51.1
      13e2470 python-prompt-toolkit: update to version 1.0.7
      ee0f810 python-lxml: update to version 3.6.4
      47d12fe python-cffi: update to version 1.8.3
      b7ae781 python-certifi: update to version 2016.9.26
      4faba62 libsocketcan: upgrade to 0.0.10
      2acaa8f tipcutils: upgrade to 2.2.0
      8ba31c9 gpsd, mongodb: use PACKAGECONFIG_CONFARGS instead of now empty EXTRA_OECONF
      f882db6 ipmiutil: uncomment PARALLEL_MAKE
      fb6585f jansson: update to 2.9
      54c7e78 pcsc-lite: Seperate GPLV3 portions from BSD
      fded4cf opencv: fix packaging and install
      df9dac1 xdg-user-dirs: initial add 0.15
      2846999 a2jmidid: initial add v8
      d6cd37b jack: remove portaudio PACKAGECONFIG
      0f8f197 jack: swap to jack2
      a7e7ecc python-pybind11: add pybind11 for operability between C++11 and Python
      7f5236b alsa-equal: Add recipe for version 0.6
      def0e38 caps: Add recipe for version 0.9.24
      1c072cb gvfs: fix fetch error
      3796741 tesseract: upgrade to 3.04
      0cc3d06 leptonica: add PACKAGECONFIG for giflib
      b850fda phytool: Add recipe
      8eef5ab wireshark: update to 2.2.1
      5dbbc99 nfacct: added nfacct recipe to meta-networking
      dd77c3d libnetfilter-acct: added new recipe for libnetfilter-acct 1.0.3
      812e940 ntp : Add openssl to default PACKAGECONFIG options
      8760099 atftp: fixes musl libc build
      af864a7 geoip-perl: upgrade to 1.50
      5abe6ea arptables: add the directory for default /etc/sysconfig/arptables
      a0e2240 arptables: add arptables systemd service file
      93b0d65 iscsitarget: resolve build error with linux kernel 4.8
      9e8d127 squid: fix ptest failure
      6f54f29 squid: specify sysconfdir and logdir
      307d1c9 libtdb: fixes for deterministic builds
      5175c03 libldb: fixes for deterministic builds
      5291715 libtevent: fixes for deterministic builds
      778a2b6 libtalloc: fixes for deterministic builds
      fe652f8 libldb: fix for LIC_FILES_CHKSUM
      f25aa3d libtdb: fix for LIC_FILES_CHKSUM
      d4a36f6 libtevent: fix for LIC_FILES_CHKSUM
      0014397 libtalloc: fix for LIC_FILES_CHKSUM
      1a5ae6a mbedtls: upgrade to 1.3.17
      a95726d samba: replace pam packageconfig by hard dependency
      3fdfdd8 samba: un-blacklist
      f604ee6 mariadb: update to version 5.5.52
      6d8cbfa gmock: fixed installing pkgconfig file and libraries on x86_64 architecture
      63707b5 gst-plugins-base: fix rare but annoying build errors
      8b68ed9 jq: add support for jq-native + misc minor fixes
      dacf9a8 onig: update 5.9.3 -> 5.9.6
      a6ad786 onig: add support for orig-native + misc minor fixes
      ea21a3f mpd: disable automatic start at boot - service is activated on demand by socket
      c7f39c7 thrift: disable java
      39b03b0 libsmi: rdepends on wget and set WGET as target path
      a0ef440 mariadb: replace the CC with CC_VERSION and CXX with CXX_VERSION
      b23da47 webmin: ensure correct PERLLIB path
      42f52f5 ttf-lklug: use fedora24 for source
      ba54b98 edac-utils: add systemd support and required dependencies for edac
      6ee4e53 haveged: don't compile in mips16e mode
      3e4a0e2 lvm2: enable option o_direct
      3c56c4f multipath-tools: Obey exported LDFLAGS
      5e17038 pam-passwedqc: Obey exported LDFLAGS
      aba02d7 libnet: fixes musl libc build
      08b315e rsyslog: fixes musl libc build
      5a9b947 Remove bashisms
      3bbec2b physfs: move to sources found at github/supertux
      a0c3cea poppler: update to 0.47.0
      b77869a xfce4-clipman-plugin: update to 1.4.0
      81e5975 xfce4-notifyd: update to 0.3.2
      13975d3 xfce4-calculator-plugin: update to 0.6.0
      9e36ee0 xfce4-weather-plugin: update to 0.8.8
      86fcbf9 xfce4-whiskermenu-plugin: update to 2.0.1
      8d6f8cc exo: update to 0.11.1
      a60b025 xfce4-power-manager: update to 1.6.0
      bf02c16 php: update 5.6.25
      335ea17 layer.conf: add LAYERVERSION and LAYERDEPENDS
      47ab72f hostapd: Security Advisory-CVE-2016-4476
      510bcc8 gperftools: fix to work on aarch64
      6ba3b30 xfsprogs, xfsdump, dmapi: blacklist, needs upgrade to stay compatible with default kernel
      754111f mariadb: add libdbd-mysql-perl to RDEPENDS
      aad32cf mariadb: add libdbi-perl to RDEPENDS
      934104c libdbd-mysql-perl: add new recipe
      67d6ed4 p7zip: do not hardcode path in native wrapper script
      93d85f6 mpich: fix QA issue and remove blacklist
      520dee9 evince: add intltool-native to DEPENDS
      b187e7c logwatch: 7.4.1 -> 7.4.3
      076b261 gthumb, libgnomekbd, gnome-desktop: add dependency on intltool-native
      18b35eb vboxguestdrivers: upgrade to 5.1.6 to fix build with default kernel from oe-core 4.8
      b70d4e2 p7zip, mce-inject: update LIC_FILES_CHKSUM
      bfa1054 mozjs: fix crash on non-x86 64 bit systems
      7742daa fftw: fix native build
      4e84633 fftw: fix reconfigure error introduced in previous patch
      4703a3d lirc: Fix build with clang
      b18ac6d gpsd: Fix build with musl
      7b05caa net-snmp: Fix build issue found with musl
      f4ed1bc rtmpdump: fix QA warning for GNU_HASH
      c5bd43a cdparanoia: fix QA warning for GNU_HASH
      b2d3dac rsyslog: upgrade to 7.6.7
      0de66c2 openl2tp: Obey LDFLAGS in Makefile
      9c9cee6 crash: Enforce use of LDFLAGS during make
      be8aa13 grubby: add bash to RDEPENDS_grubby-ptest
      dfcb67a imagemagick: depend on fftw not virtual/fftw
      395cb2d fftw: build all configurations by one recipe
      1edf97a ristretto: have tumbler back - it builds fine and is an important feature
      64a63fc gvfs: update to 1.28.3
      e3a2814 gimp: update to 2.8.18
      4618962 upower: don't start on boot by default - dbus does that on demand
      c1a6b86 jack: update to 0.125.0rc1
      df0c384 tslib: move recipe from oe-core
      fe249f8 xtscal: move recipe from oe-core
      0d103ba pointercal: move recipe from oe-core
      dd01b4b portaudio: upgrade to latest release
      0feb5f7 poco: update to 1.7.5
      82f2e2b chrony: add PACKAGECONFIG for nss, libcap
      e05536c mpv: include PACKAGECONFIG_CONFARGS in EXTRA_OECONF
      5d131fd libgit2: add dependency on libssh2
      4f3ae98 gammu: add dependency on unixodbc
      7be1355 jasper: add PACKAGECONFIG for opengl
      24e387a openldap: fix CVE-2015-3276
      14a532d imsettings: 1.6.8 -> 1.7.1
      a3cdf02 networkmanager: Fix package splitting and systemd service issue
      a617fdc minini: update SRC_URI with new download path
      02f77f7 snort: Add lzma to PACKAGECONFIG
      4fde248 syslog-ng: remove unused patches
      c8c68fb ttf-dejavu
      870df18 iscsitarget,netmap-moduls,vboxguestdrivers: Blacklist, not compatible with default kernel version 4.8
      85b5755 xterm: 320 -> 325
      e05f59e geoclue: Update to 2.4.4
      2ed5ad2 krb5: upgrade to 1.13.6
      dd0f1ad ttf-dejavu: 2.35 -> 2.37
      0836228 packagegroup-xfce-base: add librsvg-gtk
      39be411 python-pyyaml: 3.11 -> 3.12
      94a6bb9 python-dbus: 1.2.0 -> 1.2.4
      29a6cb6 tk: 8.6.4 -> 8.6.6
      3b675cb thrift: fix build on gcc-6
      170b5ea abiword: unblacklist and fix
      3e9313c geany-plugins: unblacklist / fix known bugs / update to 1.28
      d70ccec geany: update to 1.28
      a0fdd7f zile: uprev from 2.4.9 to 2.4.11 and add acl support
      ee23e9d python-pylint: python source code analyzer
      5641b25 Revert "gpsd, foxtrotgps: blacklist, fails to build with new binutils-2.27"
      c7137fd gpsd: make sure the recipe uses LDFLAGS
      a231c43 android-tools: add recipe from AOSP tag android-5.1.1_r37
      4fad615 collectd: CVE-2016-6254
      2f15702 libqmi: fix floating dependencies
      d505a7a lmsensors: sensors-detect: print a special message when there isn't enough cpu info
      35ee0a0 xpext-dev: Remove RDEPEND on empty xpext package.
      5b4a557 glcompbench: Fix issues causing failures in GCC6
      f3cd93f glade: fix typo introduced in last patch
      098d32e tcpreplay: upgrade to 4.1.1
      12a1189 waf-samba.bbclass: Add PACKAGECONFIG_CONFARGS to CONFIGUREOPTS
      3a436ad wireshark: update to 2.2
      554bbfb traceroute: update to 2.1.0
      467dc1f dhcpcd: update to 6.11.3
      fbffcf3 vsftpd: allow sysinfo() in the seccomp sandbox
      e4365a2 proftpd: remove the script ftpmail
      10abb68 stunnel: 5.28 -> 5.35
      b60c608 samba: fix build by linking with bfd instead of gold
      365fd1e strongswan: 5.3.2 -> 5.5.0
      b4b6465 samba: fix to package pidl in samba-pidl
      dd1ddae lvm2: add PACKAGECONFIG for lvm thin provisioning
      07c1512 glade3: unbreak, unblacklist and other fixes
      e9b5fc1 gtkmathview: unbreak gcc-6 build and unblacklist
      0368f99 libgnome: add intltool-native to DEPENDS
      1b6ee01 libgsf: add intltool-native to DEPENDS
      d55334c pavucontrol: replace intltool by intltool-native in DEPENDS
      8f6a485 p7zip: update to version 16.02
      0a5c689 upower: add systemd support
      11178d1 openjpeg: uprev from 2.1.0 to 2.1.1
      83bb725 rdfind: add initial recipe, rdfind 1.3.4
      c0e0c77 glmark2: Fix build error due a missing space before a macro
      ce01b0a imagemagick: upgrade patchset
      c4ff1c9 smartmontools: 6.4 -> 6.5
      84e0dbe sg3-utils: 1.41 -> 1.42
      f2f1b91 rrdtool: 1.5.4 -> 1.6.0
      1cb3cdc python-six: Add native and nativesdk to BBCLASSEXTEND
      c0fe31f python-certifi: Add native and nativesdk to BBCLASSEXTEND
      88d9c59 python-pyopenssl: Extend recipe to support Python 3
      80b2d4d samba: blacklist, fails to build with new binutils-2.27
      df531c5 accel-ppp: blacklist, fails to build with new binutils-2.27
      d0f90f8 crda: fix QA Issue: No GNU_HASH in the elf binary
      fab248a openvpn: 2.3.8 -> 2.3.9
      3143193 squid: don't do squid-conf-tests at build time
      615872a inetutils: fixes for ipv6 feature
      20681ef znc: control ipv6 support based on DISTRO_FEATURES
      940a621 wolfssl: control ipv6 support based on DISTRO_FEATURES
      59a9d6f tnftp: control ipv6 support based on DISTRO_FEATURES
      513ae03 tftp-hpa: control ipv6 support based on DISTRO_FEATURES
      bbba35e stunnel: control ipv6 support based on DISTRO_FEATURES
      020db7d squid: control ipv6 support based on DISTRO_FEATURES
      23b7656 ntp: control ipv6 support based on DISTRO_FEATURES
      823570b mtr: control ipv6 support based on DISTRO_FEATURES
      021e60b daq: control ipv6 support based on DISTRO_FEATURES
      2e10d8f cyrus-sasl: control ipv6 support based on DISTRO_FEATURES
      d4b6c7d chrony: control ipv6 support based on DISTRO_FEATURES
      c13a706 iscsitarget: fix QA warning for GNU_HASH
      1157490 ipvsadm: fix QA warning for GNU_HASH
      490d792 yp-tools: fix compile errors
      c7e8da3 squid: add missing patch header
      e3a0a0b postfix: 3.0.3 -> 3.1.1
      908a27c lftp: 4.6.3a -> 4.7.3
      215740d ifenslave: upgrade to 2.7
      13434cb wireshark: update to 2.0.5
      291946d directfb: add PACKAGECONFIG for inputdrivers
      0d4f922 geany-plugins: blacklist because of QA issues
      e19c4ab tracker: blacklist, fails to build with new binutils-2.27
      939b83a gnome-menus, gnome-panel3, gnome-control-center: blacklist, gnome-menus fails to build because of python
      8c29023 gpsd, foxtrotgps: blacklist, fails to build with new binutils-2.27
      c63f9c4 openwsman: 2.6.2 -> 2.6.3
      bb7101e lua: 5.3.2 -> 5.3.3
      038a6e7 thin-provisioning-tools: add version 0.6.3
      2e386b7 lvm2: tweak MODPROBE_CMD for cross compile
      99d4505 php: update to 5.5.38 and 5.6.25
      cfbbe3f gnome-keyring: Turn off QA check dev-elf
      40a075a python3-jsonschema: set dependency to vcversioner
      2cdd3d6 python3-vcversioner: add recipe
      2fe1b29 asio: fix musl compilation (strerror_r)
      cc9b89f networkmanager: 1.0.10 -> 1.0.12
      353a8c3 mcelog: 1.09 -> 1.40
      709bd23 mailcap: 2.1.45 -> 2.1.46
      f119c2a gtk-doc: disable where necessary
      13b511c gnome-control-center, gthumb: correctly remove a file from the source tree
      3b0093c libglade: add a recipe from oe-core
      19dc711 krb5: Fix S4U2Self KDC crash when anon is restricted
      0887841 vim: split tools directory into vim-tools package
      ac960a6 openldap: 2.4.43 -> 2.4.44
      bf918d5 libhugetlbfs: add libhugetlbfs-perl to RDEPENDS
      aedcb85 gitpkgv: Fix $GITPKV for a single named git source
      996f296 nodejs: update to 4.5.0
      5dbdf0c xfce4-mailwatch-plugin: control ipv6 support based on DISTRO_FEATURES
      20d4b5c cherokee: control ipv6 support based on DISTRO_FEATURES
      a37ad37 php: control ipv6 support based on DISTRO_FEATURES
      07539fb iperf: control ipv6 support based on DISTRO_FEATURES
      ad30a26 geis: Add python3-argparse module to RDEPENDS
      010d99d efivar: fix PIC not found
      26b1013 python-requests, python3-requests: Update to version 2.11.1
      ed70cd5 python-pysocks, python3-pysocks: Add recipe for version 1.5.7
      43895d9 python-prompt-toolkit, python3-prompt-toolkit: Add recipe for version 1.0.6
      97691e5 python-ndg-httpsclient, python3-ndg-httpsclient: Add recipe for version 0.4.2
      70978e3 python-wcwidth, python3-wcwidth: Add recipe for version 0.1.7
      83fb5cc python-py: Extend recipe to support Python 3
      9dda623 python-pytest: Extend support to python 3
      1d68def python-pretend: Extend recipe to support Python 3
      7d5ec62 python-iso8601: Extend recipe to support Python 3
      c4728e0 python-cryptography-vectors: Extend recipe to support Python 3
      2eb51b6 python-urllib3: Extend recipe to support Python 3
      6a144af python-pyopenssl: Extend recipe to support Python 3
      775a576 python-pycparser: Extend recipe to support Python 3
      96b1670 python-pyasn1: Extend recipe to support Python 3
      57ce75d python-idna: Extend recipe to support Python 3
      559ec40 python-cryptography: Extend recipe to support Python 3
      445e595 python-cffi: Extend recipe to support Python 3
      90eedcc core-image-minimal-xfce: add kernel modules to image
      2892bd6 vboxguestdrivers: Add recipe for vbox 5.x
      fef7b1f libqb: 0.17.1 -> 0.17.2
      7e8eb9a yaffs2-utils: fix QA warning for GNU_HASH
      62799e1 libnet-dns-perl: 0.81 -> 1.06.
      c0e4ad7 nodejs, arm: map TUNE_FEATURES to --with-arm-fpu parameters
      dcba10c nodejs: use shared zlib instead of bundled one
      0a2bd4f poco: update to 1.7.4
      bd9f653 Revert "testfloat: Fix No GNU_HASH in the elf binary warnings"
      8579f18 testfloat: Fix No GNU_HASH in the elf binary warnings
      dc48e76 meta-oe: remove trailing spaces
      303a585 meta-oe: remove PR = "r0"
      289217b meta-oe: fix indentation
      f2bec07 nginx.inc: use 4 spaces for indentation
      8e6425c nginx: optimize systemd unit file
      6c7c69c spitools: bump git revision (SRCREV)
      7988dfe collectd: make /etc/collectd.conf a CONFFILE
      8885e4a testfloat: Fix No GNU_HASH in the elf binary warnings
      c4ea812 wipe: fix QA warning for GNU_HASH
      7fdf353 libx86-1: fix QA warning for GNU_HASH
      107689a meta-oe: Standardize use of "_append" versus use of "+="
      1a2cfa6 libdbi-perl: 1.634 -> 1.636
      3c598be libedit: 20150325-3.1 -> 20160618-3.1
      60b675a hwdata: 0.288 -> 0.291
      b7ab152 python-jsonschema, python3-jsonschema: Add recipe for version 2.5.1
      25b5e35 python-strict-rfc3339, python3-strict-rfc3339: Add recipe for version 0.7
      9756c90 python-functools32: Add recipe for version 3.2.3-2
      6713a6b python-webcolors, python3-webcolors: Add recipe for version 1.5
      06b06a3 python3-requests: Add native and nativesdk to BBCLASSEXTEND
      7fdedb7 python3-click: Add native and nativesdk to BBCLASSEXTEND
      f0c1242 python-rfc3987, python3-rfc3987: Add recipe for version 1.3.6
      6e17cf0 python-progress, python3-progress: Add recipe for version 1.2
      4efb76b gperftools: upgrade to 2.5
      41abb7e dialog: 1.2-20150920 -> 1.3-20160424
      c7419bb ctapi-common: 1.1-11 -> 1.1-14
      1c080cc corosync: 2.3.5 -> 2.4.0
      0ebc756 python-requests: update to version 2.11.0
      ccae17a python-monotonic: fix RDEPENDS for minimal python install
      6fea657 python-monotonic: update to version 1.2
      52cb4d5 python-jsonpatch: Fix RDEPENDS to work on minimal python install
      3c20885 python-jsonpatch: update to version 1.14
      7cf433a python-daemonize: update to version 2.4.7
      7d12dd4 opensc: update to version 0.16.0
      30ef6ad libp11: update to version 0.4.0
      1aaa57e engine-pkcs11: update to version 0.2.2
      dcf56c9 utouch-mtview: remove blacklist
      0fcdae1 utouch-frame: fix build errors associated with xmllint
      469a6ca nginx: PACKAGECONFIG for httpv2
      9e78e4b thunar-volman: Fix build with clang
      b415e2a udisks2: Update to 2.1.7
      30eb09f libgphoto2: Fix build when security flags are enabled with clang
      46248dc php: fix aclocal-copy aclocal-copy
      63d1973 python-pymisp: Update to version 2.4.49
      1df4b34 python-lxml: update to version 3.6.1
      622788e python-cython: update to version 0.24.1
      e38635e python-certifi: update to version 2016.8.8
      d1ebcbc gd: update to version 2.2.3
      bb689de imagemagick: Add new PACKAGECONFIG for graphviz
      8900925 libp11: fix fetch error.
      ec66063 imagemagick: upgrade from 6.9.2 to 7.0.2
      02a390b tnftp: tnftp20130505 -> tnftp20151004
      5fdc25a proftpd: 1.3.5a -> 1.3.5b
      5793d60 libnftnl: 1.0.5 -> 1.0.6
      af7893c radvd: 2.11 -> 2.14
      4c8b9e1 geoipupdate: 2.2.1 -> 2.2.2
      999f6c4 geoip: 1.6.6 -> 1.6.9
      617d495 dovecot: 2.2.21 -> 2.2.25
      10a1066 dnsmasq: update to version 2.76
      e86c7ef opensaf: make sure /etc/init.d/opensafd exist
      35326fa samba: upgrade to 4.4.5
      6555c34 libldb: upgrade to 1.1.27
      174a083 ctdb: upgrade to 2.5.6
      e37d93f libtdb: upgrade to 1.3.10
      80d23a2 libtevent: upgrade to 0.9.29
      4e0bc78 libtalloc: upgrade to 2.1.8
      fcdd7e2 quagga: 0.99.24.1 -> 1.0.20160315
      74d994e samba: remove ${localstatedir}/log
      2cf000c wireless-regdb: update 2014.11.18 -> 2016.06.10
      2ea482d crda: split wireless-regdb out into own recipe
      1ea6e9a proftpd: fix system account login failure
      4307c6a squid: fix configure host contamination
      f849b9f utouch-frame,utouch-mtview: Blacklist
      b76cee6 ninja: update to version 1.7.1
      10670f5 xf86-video-ati: Set RRECOMMENDS to linux-firmware-radeon
      894f7ce gateone: remove custom prefix for /var
      fdeb947 glog: Update to version 0.3.4
      32e7012 gflags: New recipe
      6752cba python-pygobject: update to version 3.20.1
      66e6830 hiawatha: update to version 10.3
      1a8e7aa hiawatha-init: create log directory during init
      3146e64 evtest: update to version 1.33
      f1dcff4 espeak: fix package for gcc6
      42dd9f3 pidgin: upgrade to 2.11.0
      7f30230 efivar: 0.23 -> 0.24
      2ad60db nginx: update to version 1.11.3
      ea75c65 nginx: add the LDFLAGS to the link arguments
      2646e97 epeg: update to the latest version
      5a81915 dstat: update to version 0.7.3
      355cdb7 libmbim: update to 1.14.0
      e22b9e0 upower: update to version 0.99.4
      d95a980 devicekit-power: remove obsolete package that was migrated to upower in 2010
      7c25fa4 daemonize: update to version 1.7.7
      5f9728d cryptsetup: update to version 1.7.2
      7151a9d breakpad: disable ppc from being built.
      7e2e442 mongodb: failes to build on ppc
      8ddc1b0 concurrencykit: fix fetch errors.
      ff38717 openwsman: fix fetch error.
      87cc923 engine-pkcs11: fix fetch error
      35d56a1 libmicrohttpd: update 0.9.49 -> 0.9.50
      03220d6 ttf-lklug: add version 0.6-14.20090803cvs.fc24 to support Sinhala language
      185f576 ttf-lohit: add version 2 to support Indian languages
      8cb799e fontforge-native: support python module
      59d7086 ttf-abyssinica: add version 1.500 to support Amharic language
      98c0577 glmark2: Fix gcc 6 deprecated declaration error
      c29c7ed glmark2: Fix gcc 6 configure error
      9405f93 libmodbus: update to upstream develop version 3.1.4
      886a5da opencv: Fix build with gcc 6.0
      2e0332c rygel: add intltool-native dependency
      ed969f3 gparted: add intltool-native dependency
      c598865 libgxim: add intltool-native dependency
      0cd0b09 networkmanager-openvpn: add intltool-native dependency
      6a6438b gnome-bluetooth: add intltool-native dependency
      9dd576b dconf: add intltool-native dependency
      3d0ca85 gupnp-tools: add intltool-native dependency
      9e92fdc gegl: add intltool-native dependency
      c16a8d6 gtksourceview2: add intltool-native dependency
      8d84f58 geoclue: add missing intltool-native dependency
      5f7fc33 gnokii: add missing intltool-native dependency
      e231b02 libgit2: add a recipe for libgit2 version 0.24.1
      fdb1bbe daemontools: fix QA Issues for daemontools and fix a warning for daemontools-native
      92c500e postgresql: 9.4.5 -> 9.4.8
      aff7b7e ccid: update to version 1.4.24
      5d05955 asio: update to version 1.10.6
      8bed54a Revert "gnome-disk-utility: blacklist because of avahi-ui"
      70e7f34 meta-gnome/layer.conf: enable gtk for avahi-ui
      4947695 xerces-c: upgrade to 3.1.4
      b0ae995 ninja: support target builds
      41414e0 adduser: upgrade to 3.115
      7f4f2d7 grubby: fix no GNU_HASH warning
      e48d02b network-manager-applet: addmissing intltool-native dependency
      1d41fe4 mozjs: Fix incorrect usage of PN.
      db97c32 gedit: remove blacklist caused by gtksourceview2 / fix/cleanup build
      2ed31c7 modemmanager: update to 1.6.0 and unblacklist - libqmi was fixed
      5b5bad7 libqmi: update to 1.16.0
      2c86452 libgnomeui: update to 2.24.5 / fix build on gcc6 / cleanup
      e9bf73f nostromo: add dependency for nroff used during compile phase
      aac86aa nostromo: remove useradd of a user already provided by base-passwd
      da81d9e proftpd: return stderr to syslog
      bc8fd52 ntp: make ntp and alternative for ntpd
      32a6fd4 samba: inherit update-rc.d to manage init script
      8b28f07 bridge-utils: various build fixes (musl & CFLAGS)
      9fb484e proftpd: clean the host path in prxs
      85d96d1 proftpd: fix PACKAGECONFIG settings
      f8dd8cd proftpd: start at boot time
      4c854d2 wireshark: inherit perlnative
      03b76ca squid: upgrade to 3.5.20
      fa2c10c curlpp: fix QA issue for cav-octeon3
      3683e46 snort: fix to remove from blacklist
      b2eae93 meta_networking_security_flags.inc: add weak assignment for lcl_maybe_fortify
      abf5445c meta-networking: override SECURITY_CFLAGS for c-ares
      6204c13 c-ares: use our compilation flags
      53794a7 atftp: do not create user nobody
      7e4f225 python-mccabe: Remove unnecessary setup_requires pytest-runner
      6cb4eb3 mercurial-native: upgrade to 3.8.4
      7482f2d libssh2: Add native to BBCLASSEXTEND
      cfdf135 nostromo: update to version 1.9.6
      181f5f8 webmin: upgrade to version 1.801
      df5141a libssh2: upgrade to 1.7.0
      d71cccd libssh: upgrade to 0.7.3
      d98b1a3 sysbench: add new recipe
      a720b93 libnih: add new recipe to meta-oe
      26fbc9b libebml: fix do_unpack failure
      8f4c447 packagegroup-tools-bluetooth: Fix incorrect LIC_FILES_CHKSUMs
      30eab2d xfce4-vala: unbreak by telling configure new vala API version
      6255219 mariadb: upgrade to 5.5.50
      4b24a6c psqlodbc: Add the new recipe
      8bb4a8b unixodbc: Add the new recipe
      f9f8578 efivar: add COMPATIBLE_HOST item
      f5da671 x11vnc: fix do_patch failed
      292d8f1 Revert "postgresql: blacklist because tcl in oe-core is broken for last month"
      b142ab5 python-imaging: Fix CVE-2016-2533
      6398643 juce: Improved juce class and recipes
      3bbc28d juce: Added support for JUCE framework
      ca6edca python-pygpgme: update tests
      8dca4ab python-pygpgme: update ptest output format
      9bf3e36 collectd: replace deprecated readdir_r() with readdir()
      5ed0925 makedumpfile: add makedumpfile 1.6.0
      a63b404 minicoredumper: add the recipe
      014c361 grubby: add grubby 8.40-1
      520610b xfce4-terminal: add dependency on vte9-termcap
      1a6e6a9 phpmyadmin: upgrade to 4.6.3
      aa01ab9 php: update to 5.5.37 and 5.6.23
      0b6853f ttf-vlgothic: add a ttf font
      5a319d3 ttf-liberation-sans-narrow: add a ttf font
      06e58b6 cfengine: add recipe and base policy
      898b397 tokyocabinet: add recipe
      00f6dc9 poco: update to 1.7.3
      958bfe3 contrib: add MIPS_INSTRUCTION_SET
      ba733d1 klibc: fix install destination in 64bit env
      eeaf3dd uw-imap: use cross-tools to create static library
      4c03228 augeas: Move from oe-core
      74466fc libsodium: Update to 1.0.10.
      d0c4bdc zeromq: Update to version 4.1.5.
      7707dd5 apache2: update to version 2.4.23
      97e2e15 freeglut: add opengl to REQUIRED_DISTRO_FEATURES
      9efd12b nginx: update to version 1.11.2
      96fd3c5 mousepad: remove blacklist caused by gtksourceview2
      ca36344 gtksourceview2: fix build with gcc6
      a1647ea Mpd: use libsystemd
      273be2e directfb: move recipe to meta-oe
      37e1dd1 sshfs-fuse: update to 2.8
      20df863 nodejs: update to 4.4.7
      d209e32 x11vnc: remove redundant RPATH to fix QA issue
      e7aeb11 libxfce4ui: Use native intltool for building the lib
      b813911 cpuset: add new python package
      ecf41ac libmad: add the recipe
      1f87c7f mpg123: remove the recipe
      5c69367 python-flask-bootstrap: update to version 3.3.6.0 and fix RDEPENDS
      9d1d1e8 python-flask-navigation: update package RDEPENDS
      06c87ef python-flask-bcrypt: update package RDEPENDS
      01b7c1d python-flask: update RDEPENDS to include python-click
      d070f5a python-click: add recipe for the python click package required by the new version of flask
      a7195fc python-feedformatter: add package RDEPENDS
      7ebe715 python-evdev: update to version 0.6.1 and add package RDEPENDS
      18d5f11 python-feedparser: add package RDEPENDS
      878ec0c python-epydoc: add package RDEPENDS
      2daf0b0 python-dominate: update to version 2.2.1 and fix RDEPENDS
      786b54e python-flufl-enum: remove deprecated package
      468e565 python-django-south: add package RDEPENDS
      795dc3f python-django: update to version 1.9.7 and add the required RDEPENDS
      ac2336f python-dbusmock: update to version 0.16.6 and update required RDEPENDS
      3cac200 python-cmd2: update RDEPENDS to pull in required packages
      ae9a0c5 python-cryptography: update to version 1.4 and remove patches now available with the latest release
      d212af4 lirc: inherit python3native instead of pythonnative
      5e18b65 python-cffi: update to version 1.7.0
      ca90791 python-decorator: add package RDEPENDS
      9a3bf8e python-backports-ssl: add package RDEPENDS
      8cde32a python-bcrypt: update to version 3.1.0
      9c00cf3 python-six: update RDEPENDS to work on both python2.7 and python3
      8d55746 python-werkzeug: update RDEPENDS to work for minimal python2.7 and python3
      df36dff pyrtm: Add RDEPENDS to the package
      04923b4 pyrtm: update to version 0.4.2
      97f8a24 python-pyephem: add RDEPENDS to package
      d27ad56 python-ujson: correct RDEPENDS to pull in needed python packages
      63ebe28 python-urllib3: correct RDEPENDS to work on a minimal python instance
      aa16b31 python-urllib3: update to version 1.16
      b7efea7 python-vcversioner: add RDEPENDS for the package
      bc892fb python-vcversioner: update to version 2.16.0.0
      045d79e python-visitor: update to version 0.1.3
      569cab0 python-vobject: add RDEPENDS for the package
      5b4b806 python-vobject: update to version 0.9.2
      f8ccd64 python-werkzeug: update to version 0.11.10
      39fdd2e python-wtforms: add RDEPENDS to work correctly in minimal python environment
      8f85bf0 python-wtforms: update to version 2.1
      53f8a49 python-yappi: correct RDEPENDS to work on a minimal python install
      d04adba python-zopeinterface: update to version 4.1.1
      4e52a2e python-tornado: remove deprecated version 2.2.1
      001dad1 python-xlrd: add RDEPENDS to allow module import with a minimal python install
      5cfe9e7 python-xlrd: update to version 1.0.0
      812162c meta-python: Add Derek Straka as a maintainer
      4b65102 python-imaging: Add patch to fix host sysroot fails
      f735a9c python-setuptools-scm: Add python-setuptools-scm bb
      a9b7ae5 python-pytest-runner: Add python-pytest-runner bb
      45baacb python-mccabe: Add python-pytest-runner dependency
      8027e53 python-mock: Add python-pbr-native dependency
      093d271 python-pbr: Add python-pbr bb
      4fbb4d2 net-snmp: initscripts are located in net-snmp-server-snmp package
      582eddb net-snmp: fix snmpd crash via AgentX connection
      a27d4a7 openconnect: PACKAGECONFIG certain dependencies
      303d9ea python-pyserial: update to version 3.1.1
      e4691bb python-pymisp: update to version 2.4.48.1
      116d715 python-flask: upgrade to version 0.11.1
      0f89c4b python-decorator: update to version 4.0.10
      5f92f38 python-yappi: add a recipe for a python profiler
      45fc7c1 python-pyephem: update recipe to use the pypi class
      1bef833 python-m2crypto: update recipe to use the pypi class
      14e11e7 python-pyro4: update recipe to use the pypi class
      7edad4d pypi: update the base pypi url to use the package info without requiring the hash
      216e956 netmap: blacklist
      b6e805c Samba: use only libsystemd
      6b2fc93 lftp: fix issues with multiple signbit definitions and remove from the blacklist
      3647a2c crda: fix errors about unused variables and remove from the blacklist
      1cb7275 gnome-terminal, toscoterm, vala-terminal, xfce4-terminal: use vte9
      ce37942 vte9: Add old vte into meta-oe
      377d67a gtest: fix installation in multilib
      5cdb839 gnome-disk-utility: blacklist because of avahi-ui
      7a925f7 analyze-suspend: Bump to latest Git version
      0e10dc7 efl e-module.inc: fix fetching in multi-lib configs
      c29c8e3 krb5: add systemd support
      016e748 Revert "python-pygobject, python-cloudeebus, python-dbusmock: Blacklist because of python-pygobject is broken"
      0963084 python-cloudeebus: fix do_compile failure
      c06411f python-pygobject: fix do_configure failed
      64d874f libebml: don't rely on make -e, obey LDFLAGS
      cff7a47 vboxguestdrivers: obey LDFLAGS
      55dfb1b epdf, evince, tracker, gimp, tumbler: Remove blacklist caused by poppler build failures
      979760c evince: fix build errors with gcc-6
      675d1df poppler: fix ambiguity on math functions related to gcc-6
      9b9eb83 faac: address gcc-6 narrowing errors via an explicit cast
      d516719 libqmi: update to version 1.14.2
      559c14a crash: update to version 7.1.5
      80def85 geis: add a patch to fix incorrect indentation issues and remove -Wno-error=misleading-indentation
      90488aa tvheadend: add a patch to fix issues with gcc 6 and drop the -Wno-error=misleading-indentation
      d24e984 p7zip: update to version 15.14.1
      0647b7d iperf: resolve issues with gcc6
      e092a95 v4lutils: Update to latest upstream
      9222832 libgphoto2: correct compatibility issues with libjpeg-turbo-1.5.0
      7e8e0fb python-pyephem_3.7.6.0.bb: Add new recipe.
      19ef3af gtk-engines: Move from oe-core
      9cd117a chrony: Versatile implementation of NTP
      5c8efcc curlpp: fix build with gcc-6 and remove blacklist
      f316c4a wireshark: update to 2.0.4
      13db3c6 ntp: Security fixes via Upgrade to 4.2.8p8
      f0756d1 crda, lftp, curlpp: blacklist, fails to build with gcc-6
      0561402 libgphoto2, v4l-utils: blacklist, not compatible with libjpeg-turbo-1.5.0
      c119940 grail: update to version 3.1.1
      ee42aeb fwts: add CFLAG to ignore misleading indentations
      629d67a geis: add CFLAG to ignore misleading indentations
      0aac049 tvheadend: add CFLAG to ignore misleading indentations
      baa1ab2 fbreader: fix return code issue on gcc6
      47e84b3 tcsh: fix the wait definition to support gcc6
      87fc6bb geos: use std::isnan to support gcc6
      aebac65 libeigen: update to 3.2.8
      03f0be6 mpv: use waf.bbclass
      7d399ca mpv: add DESCRIPTION
      431ec7e libcgi-perl: add version 4.28 to provide perl-module-cgi
      af6af86 redis: fix hiredis build so it's less failure-prone and links properly
      548effe ruby.bbclass: Fix usage with python3
      44ea80d postgresql: blacklist because tcl in oe-core is broken for last month
      b0fae32 python-pygobject, python-cloudeebus, python-dbusmock: Blacklist because of python-pygobject is broken
      33fc64c faac, iperf, crash, espeak, open-vcdiff: blacklist, fails to build with gcc-6
      25a78e5 abiword, fbreader, tvheadend, glmark2, libqmi, modemmanager, thrift, wvdial, wvstreams, dt, collectd, gtkmathview, tcsh, glcompbench, geos, libspatialite, geis, grail, opencv, openwbem, fwts: blacklist, fails to build with gcc-6 or glibc-2.24
      d78c521 evince, epdf, gdm, gnumeric, libgnomeprint, tumbler, gedit, gnome-panel, gnome-session, gnome-terminal, libgnomecups, gtksourceview2, libgweather, libgnomeui, tracker, gimp, poppler, mousepad, goffice, tasks: blacklist, fails to build with gcc-6
      25e9400 fwts: Remove 14.09.00, newer 14.12.00 is in recipes-test
      6dcee71 elementary, evas-generic-loaders: Drop poppler dependency
      5221399 mpv: Media Player
      1847d0b libass: add newer version
      e781f8e mpd: update to 0.19.15
      d609617 meta-oe: override SECURITY_CFLAGS for llvm3.3
      f90b8d3 toybox: Upgrade to 0.7.1
      3ff2e22 libftdi: update to 1.3
      8b32e60 nginx: update to version 1.11.1
      98c4e4f nginx: update stable version to 1.10.1
      b5091a1 python-tornado: add missing python2 runtime deps
      7650008 python-singledispatch: initial recipe for version 3.4.0.3
      4c110ff python-backports-abc: initial recipe for version 0.4
      4594d24 syslog-ng: expand service file @variables@ earlier
      b27938b opencv: Reorder PACKAGES variable
      d0952ad opencv: Make gphoto2 dep optional via PACKAGECONFIG
      24fe575 abiword, gnome-vfs: Use print as a function
      80cf5e0 netmap-modules: Avoid type warning with python v3
      55cb2ec gitkpkgv: Ensure files are closed
      b4d7caa gnome-doc-utils-stub: add a recipe
      f0de8ed cmpi-bindings: fix build with python 3
      a18991d python-pygobject: add a recipe
      4f93338 python-pyrex: add a recipe
      56a4d21 python-imaging: add a recipe
      25a0003 python-dbus: add a recipe
      f9ce43c Remove unnecessary exports of HOST_SYS and BUILD_SYS in python-based recipes
      e5f01ca nano: fix license to GPLv3.
      240e2eb plymouth: allow disabling the dracut dep
      852cd67 luajit: fix build issues, obey more vars
      0cce9fe efivar-native: fix compile failure with older host gcc (<=4.6)
      25f31a5 nodejs: update to 4.4.5
      ff41698 gnome-menus: Fix QA warnings.
      c2c895e python-simplejson: change to setuptools
      350bd0b dvd-apps: Fix several QA WARNINGS
      6de06e4 geany-plugins: fix build
      7be16bc libldb: add missing libaio dependency
      126e48c libtalloc: add missing libaio dependency
      81f3fb0 libtdb: add missing libaio dependency
      18a1d69 libtevent: add missing libaio dependency
      a6a3671 cifs-utils: make samba conditional dependency
      d765990 netcat-openbsd: fix qa warning
      a2256bb esmtp: Fix rootfs creation errors
      7832c67 postfix: Fix rootfs creation errors
      62e3df2 netkit-rsh: fix build issue.
      880c3dc opensaf: update to 5.0.0
      d46c89a squid: CVE-2016-4553
      9a13040 ntp: avoid floating dependency on mdns (aka mDNSResponder)
      387824f openct: Fix rootfs creation errors
      e49c2c2 iptraf: Fix rootfs creation errors
      5ec8663 fontforge: add back gnulib to DEPENDS
      5adc7db florence: move to latest GTK2 version 0.5.4
      5cc904b python-thrift: update to version 0.9.3
      ad7fb0f python-urllib3: update to version 1.15.1
      9a527fc python-pyudev: update to version 0.20.0
      79174d7 python-pytz: update to version 2016.4
      2383776 python-pyroute2: update to version 0.3.22
      9e37a25 python-pyparsing: update to version 2.1.4
      faa6511 python-pyopenssl: update to version 16.0.0
      b1ca690 python-pyflakes: update to version 1.2.3
      00ec1d5 python-psutil: update to version 4.2.0
      3fe43f5 python-pip: update to version 8.1.2
      b031bef python-monotonic: update to version 1.1
      852f2a7 python-mock: update to version 2.0.0
      81b3aa3 python-greenlet: update to version 0.4.9
      beb3060 python-enum34: update to version 1.1.6
      80517d2 python-cffi: update to version 1.6.0
      87c914b python-backports-ssl: update to version 3.5.0.1
      ab22ea3 sthttpd: update to 2.27.0
      02b52ee freeglut: Add a recipe freeglut to replace mesa-glut
      bb26012 mesa-glut: Remove the recipe
      b917018 assimp: Add recipe for Open Asset Import Library
      21a9e43 initramfs-kexecboot-klibc-image: Skip for nios2
      f6db877 x11vnc: remove old libtool macros from acinclude.m4
      a3d4309 networkmanager: add missing dep on dbus-glib-native
      0839562 networkmanager: add missing dep on intltool-native
      b22c290 openlmi-networking: add missing dep on konkretcmpi-native
      4972132 mg: stop relying on make -e
      2318f8e llvm: make llvm-config wrapper error message more understandable
      4ff633a uim: Fix Warning
      35c3f12 geany-plugins: initial add 1.27
      1d4d6e7 geany: update to 1.27
      5ce609f poppler: update to 0.43.0
      207e971 python-cryptography: fix compile issue with openssl 1.0.2h
      33f5a5b apache2: fix libtool's path in apxs
      5e5e66d python-requests: update to version 2.10.0
      319bbc1 python-pymisp: update to version 2.4.36
      9aa6735 python-flask-login: update to 0.3.2
      ae20c6d python-flask-pymongo: update to 0.4.1
      daf619e rrdtool: only unset PERLHOSTLIB in do_configure
      5ad18c4 pytest: fix runtime issues.
      569b11c obexftp: mark as compatible with bluez5
      5da9408 krb5: fix uninitialized variable warning
      87084fe libhugetlbfs: enable build for x86-32
      c9c82d3 efivar: fix unknown option while gold linker used
      beac69f efibootmgr: sync with upstream while efivar upgraded to 0.23
      f0a1e61 efivar: fix do_install failed
      d68c687 efibootmgr: update and unblacklist
      fe4cb8b efivar: update to 0.23
      bee16ff gnulib: bump git revision
      44a13e6 libsoc: update to 0.8.1
      901b9a2 libxkbui: Fix license WARNING
      09ccbeb python-numeric: Add LLNL license
      df2e3bb netcf: unconditionally remove gnulib dir to support reconfigure
      8fe7d1e proftpd: fix mod_tls build issue
      37297c3 nbd: fix LIC_FILES_CHKSUM
      23ce88c znc: fix QA issue and remove from blacklist
      0939421 netcf: fix mishandling of gnulib submodule causing build fail
      00ec8bc autotools-bootstrap: make bootstrap package specific.
      273d797 wireshark: Fix new QA Error
      8b5662b curlpp: fix recipe
      2f3a499 nodejs: update to 4.4.4
      3384b41 upower: fix WARNING
      76754d0 libwnck: fix WARNING
      631efea python-dateutil: update to version 2.5.3
      e62215e pypi: update the pypi class to support the updated URL scheme
      ef735bb acpitests: Fix license issue
      c45e8a3 tracker: update run-time dependencies
      0f808a9 tracker: add missing depends for intltool-native
      aebbd94 tracker: add a patch to support giflib 5
      1bc1405 libnice, farsight2: unblacklist as libnice's nice.pc issue fixed.
      786ab84 wvstreams: fixing segfault with new gcc optimizations
      102e699 llvm3.3: Disable auto -dbg packages
      5397ae5 packagegroup-tools-bluetooth: Selects the tools appropriate for the version of bluez being used.
      4adec18 lmbench: avoid gcc optimize-away multiplication
      35c7a5b leptonica: add PACAKGECONFIG for openjpeg
      f347220 leptonica: update to version 1.73
      904fd8d giflib: update to version 5.1.4
      a6c172e poppler: add --std=c++11 to fix build with Qt 5.7
      9087a59 pidgin: use pkg-config instead of hardcoded paths or python-config
      fc1ee27 pidgin: add PACKAGECONFIGs
      2ff8e7e pidgin: Update to 2.10.12
      0980690 toybox: Upgrade to 0.7.0
      3391c2e toybox: Remove out-of-date patch
      be3d4c0 rrdtool: fix do_configure failure on some hosts
      b957e27 python-pyparsing: modify build to correctly use setuptools rather than distutils
      3132af1 opencv: Fix metapkg dependencies for opencv-java and opencv-locales
      5bece73 fbreader: add cflags fix for fribidi 0.19.7
      821414a protobuf: split package to main and compiler packages
      3bae88a protobuf: add protobuf-c recipe
      a78aebb packagegroup-tools-bluetooth.bb: Selects the tools appropriate for the version of bluez being used.
      c7265a6 glmark2: wl_surface should be destoryed after destroying wl_window
      f4ee554 xfce4-eyes-plugin: update to 4.4.5
      d2e10b7 xfce4-cpufreq-plugin: update to 1.1.3
      e211113 fluidsynth: set correct portaudio packageconfig dependency
      7632939 xfce-polkit: fix warning not able to copy license
      b86f2fa meta-xfce: add intltool-native to DEPENDS
      c31ccab vim: Upgrade to v7.4.1689
      6c0caad tinymembench: update to version 0.4.0 plus bug fixes
      72c6229 nginx: update to version 1.9.15
      e7ead2b nginx: update stable version to 1.10.0
      c1ede48 iperf3: update to version 3.1.2 plus bug fixes
      3df0760 iozone3: update to version 434
      a29cece fio: update to version 2.9
      4a47738 fribidi: update to version 0.19.7
      7af4e55 sox: dep on ffmpeg, not libav
      0307151 syslog-ng.inc: fix prerm script & class includes
      1bd027e sblim-sfcb: add missing dependency on unzip-native
      c22af99 libmicrohttpd: update to 0.9.49
      c16b6e6 fluentbit: add new recipe
      cdd326f fbida: use separate builddir
      e03e5d6 netdata: replace deprecated 'base_contains' with 'bb.utils.contains'
      546d55d netdata: fix whitespace in the patch that caused failures when applying
      23a1c2e netdata: add new recipe
      831f710 ltrace: Remove deprecated readdir_r()
      a61cb51 ltrace: Error Fix for ARM
      53adf32 thrift: Add recipe for Apache Thrift.
      f79a851 squid: CVE-2016-3947
      275b6c3 meta-networking: use bb.utils.contains() instead of base_contains()
      7a9c626 wireshark: update package to 2.0.3
      abc6e49 rp-pppoe: Fix rootfs creation errors
      1296817 openconnect: add missing dependencies
      6830c3b proftpd: CVE-2016-3125
      f59daf6 samba: remove dependency on ctdb
      8cd5bc5 ntp: Security fixes via update to 4.2.8p7
      ce61eea dovecot: fix QA issue and remove from blacklist
      73fa6a9 net-snmp: enable ipv6 support
      aa8e156 samba: fix paths in sysv initscript
      ffeb84e samba: fix QA warnings.
      6fbaf07 mozjs: fix configure host contamination
      b5a7dfb mariadb: Fix rootfs creation errors
      d1be64c wayland-fits: update, get out of PNBLACKLIST
      0d857a1 hwdata: add new recipe
      98951db rsnapshot: use ${bindir} as rsync location
      1e17ae1 mozjs_17.0.0.bb: Fix do_srpm error
      4d6c013 krb5-CVE-2016-3119.patch
      c16d59f xfce4-weather-plugin: update to 0.8.7
      18e5f63 xfce4-whiskermenu-plugin: update to 1.5.3
      eeac9ad poppler: update to 0.4.1
      dad9a78 meta-initramfs: use bb.utils.contains() instead of base_contains()
      aa72c9e meta-gnome: use bb.utils.contains() instead of base_contains()
      0d7c615 meta-efl: use bb.utils.contains() instead of base_contains()
      ab9f4d9 meta-multimedia: use bb.utils.contains() instead of base_contains()
      f08b75f meta-xfce: use bb.utils.contains() instead of base_contains()
      e5c807b meta-webserver: use bb.utils.contains() instead of base_contains()
      21f10c1 meta-oe: use bb.utils.contains() instead of base_contains()
      723b55f libubox: update to the latest git version for bug fixes
      b188239 concurrencykit: update to version 0.5.1
      2675ade bootchart: update to 1.17
      08f7d59 libgee: update to the latest stable version (0.18.0)
      819f73f log4cplus: update to version 1.2.0
      3be4e86 libio-pty-perl: update to version 1.12
      5d67ab6 libxml++: update to the latest stable version (2.38.1)
      85c72f4 python-parted: update to version 3.10.7
      d95712f mozjs: fix armeb builds
      63606ed initramfs-{debug,kexecboot}-image: zero out the rootfs_extra_space in initramfs images
      33fc545 gtest, gmock: allow building gtest-native and gmock-native
      969cd47 crash: add cross package
      ff70a60 Add simple-mtpfs recipe
      834392b python-visitor: Add recipe for version 0.1.2
      d3767d9 python-netaddr: Add recipe for version 0.7.18
      5a20e87 python-dominate: Add recipe for version 2.2.0
      71dcf41 flite: fix license issue.
      7a7863b xcursorgen: fix License issue
      40d7128 udisk2: fix build issue with missing depends
      fb30db6 nodejs: update to 4.4.3
      6475f14 apache2: update to 2.4.20
      1eac35d libmodbus: add support for the libmodbus development release
      9676ebb python-wtforms: Add recipe for version 2.0.2
      49b3517 python-pam: Add recipe for version 1.8.2
      4be7006 python-flask-wtf: Add recipe for version 0.12
      3e4ecdd python-flask-sqlalchemy: Add recipe for version 2.1
      381d498 python-flask-navigation: Add recipe for version 0.2.0
      962e2ab python-flask-bootstrap: Add recipe for version 3.3.5.7
      00d5837 python-flask-bcrypt: Add recipe for version 0.7.1
      5a7f267 python-blinker: Add recipe for version 1.4
      cb95c5e python-bcrypt: Add recipe for version 2.0.0
      bfa6d1c umip: unblacklist and disable parallel make
      bbb8373 nginx: update to 1.9.14
      d436de8 llvm: correct fix for the multilib libdir
      6336472 python-whoosh: update to 2.7.4
      fdb2b66 python-decorator: update to 4.0.9
      3fa8c30 python-dateutil: update to 2.5.2
      4a90cbc python-cython: update to 0.24
      ead0d3b krb5: add native and nativesdk extend
      c073b9a ne10: use bb.debug for debug messages
      54a18a0 libbonobo.inc: add libbonobo-bin package by lib_package class
      d5e7b4b libhtml-parser-perl: update to 3.72
      591cd39 libextutils-installpaths-perl: update to 0.011
      edb883e libextutils-config-perl: update to 0.008
      4c6da8a libencode-perl: update to 2.83
      caeea00 libdbi-perl: update to 1.634
      fa4bbb8 libdbd-sqlite-perl: update to 1.50
      6a7fed1 libcurses-perl: update to 1.34
      547fe92 libcrypt-openssl-random-perl: update to 0.11
      2a42fba libclass-method-modifiers-perl: update to 2.11
      4f6ba02 libcapture-tiny-perl: update to 0.36
      ba5f235 adduser: update to 3.114
      cc6b324 libtinyxml2: update 2.2.0 -> 3.0.0
      536d146 gnome-themes: fix icon-name-mapping not found
      c4358e7 fcgi: update SRC_URI to match new path to fcgi-2.4.0.tar.gz archive
      9ece354 openbox: add run time dependency on openbox-theme-clearlooks
      7321fe2 nodejs: update to 4.4.2
      3dfea34 vpnc: stage vpnc-script
      eb4ce40 openconnect: add recipe
      388adb9 ctdb: drop duplicated DESCRIPTION
      6914b91 ctdb: rdepend on procps
      d1a8f14 ctdb: disable the service by default
      ee61bec iscsitarget: resolve build error with linux kernel 4.3 and above
      a9d1b61 c-ares: Add package to networking
      60c1f6c lldpd: Update to version 0.9.2
      12e31ce samba: add volatile file to support readonly rootfs
      237ade5 dnsmasq: get systemd only working again
      4caeb00 libtalloc: Update to latest stable
      b20f3b1 libtdb: Update to latest stable
      59b17c8 libtevent: Update to latest stable
      37c158f libldb: Update to latest stable
      70bde9a samba: Update to latest stable
      ab62c74 cyrus-sasl: Drop unneeded group addition
      REVERT: 247b126 Revert "leptonica: add PACAKGECONFIG for openjpeg"
      REVERT: ff38c70 python-cryptography: fix compile issue with openssl 1.0.2h
      REVERT: 107e624 nbd: fix LIC_FILES_CHKSUM
      REVERT: f76ad6c znc: fix QA issue and remove from blacklist
      REVERT: 9199968 netcf: fix mishandling of gnulib submodule causing build fail
      REVERT: 3cec94a autotools-bootstrap: make bootstrap package specific.
      REVERT: 761a686 wireshark: Fix new QA Error
      REVERT: 88a4748 curlpp: fix recipe
      REVERT: e00ad20 upower: fix WARNING
      REVERT: d2077f0 libwnck: fix WARNING
      REVERT: 84fdde3 acpitests: Fix license issue
      REVERT: 947e7f1 libnice, farsight2: unblacklist as libnice's nice.pc issue fixed.
      REVERT: f797b79 wvstreams: fixing segfault with new gcc optimizations
      REVERT: 84f69f3 packagegroup-tools-bluetooth: Selects the tools appropriate for the version of bluez being used.
      REVERT: e341fa0 lmbench: avoid gcc optimize-away multiplication
      REVERT: 1726e71 leptonica: add PACAKGECONFIG for openjpeg
      REVERT: ea71aa8 poppler: add --std=c++11 to fix build with Qt 5.7
      REVERT: 0e06305 llvm3.3: Disable auto -dbg packages
      REVERT: ebe5fb2 pidgin: use pkg-config instead of hardcoded paths or python-config
      REVERT: 4a5b269 pidgin: add PACKAGECONFIGs
      REVERT: 6bcf20d pidgin: Update to 2.10.12
      REVERT: 085dcdc toybox: Remove out-of-date patch
      REVERT: 7743d7e rrdtool: fix do_configure failure on some hosts
      REVERT: 305329d python-pyparsing: modify build to correctly use setuptools rather than distutils
      REVERT: 33874df opencv: Fix metapkg dependencies for opencv-java and opencv-locales
      REVERT: 25b22fb packagegroup-tools-bluetooth.bb: Selects the tools appropriate for the version of bluez being used.
      REVERT: d4b1497 glmark2: wl_surface should be destoryed after destroying wl_window
      REVERT: 4ee8ab7 fluidsynth: set correct portaudio packageconfig dependency
      REVERT: 87488dc xfce-polkit: fix warning not able to copy license
      REVERT: c9b3f9f meta-xfce: add intltool-native to DEPENDS
      REVERT: 76f7c9d sox: dep on ffmpeg, not libav
      REVERT: 5e2bb87 syslog-ng.inc: fix prerm script & class includes
      REVERT: 9f34a85 sblim-sfcb: add missing dependency on unzip-native
      REVERT: e2764e6 fbida: use separate builddir
      REVERT: a1b71fe squid: CVE-2016-3947
      REVERT: d824682 rp-pppoe: Fix rootfs creation errors
      REVERT: 6812a4a openconnect: add missing dependencies
      REVERT: 959b617 proftpd: CVE-2016-3125
      REVERT: 2ae294d dovecot: fix QA issue and remove from blacklist
      REVERT: ea52766 net-snmp: enable ipv6 support
      REVERT: 2092396 ntp: Security fixes via update to 4.2.8p7
      REVERT: fd1e5ea mozjs: fix configure host contamination
      REVERT: ebb31a9 mariadb: Fix rootfs creation errors
      REVERT: 852b40f wayland-fits: update, get out of PNBLACKLIST
      REVERT: 8a1c490 hwdata: add new recipe
      REVERT: d4cb722 rsnapshot: use ${bindir} as rsync location
      REVERT: 2463098 mozjs_17.0.0.bb: Fix do_srpm error
      REVERT: de2fe0d krb5-CVE-2016-3119.patch
      REVERT: 470ab81 xfce4-weather-plugin: update to 0.8.7
      REVERT: 01bf016 xfce4-whiskermenu-plugin: update to 1.5.3
      REVERT: 51ad2f8 poppler: update to 0.4.1
      REVERT: fe8fbf1 meta-initramfs: use bb.utils.contains() instead of base_contains()
      REVERT: 2e3d033 meta-gnome: use bb.utils.contains() instead of base_contains()
      REVERT: 33837ef meta-efl: use bb.utils.contains() instead of base_contains()
      REVERT: d336edb meta-multimedia: use bb.utils.contains() instead of base_contains()
      REVERT: 09ae3b6 meta-xfce: use bb.utils.contains() instead of base_contains()
      REVERT: 9078b0d meta-webserver: use bb.utils.contains() instead of base_contains()
      REVERT: cf18193 meta-oe: use bb.utils.contains() instead of base_contains()
      REVERT: 0e6cc19 libubox: update to the latest git version for bug fixes
      REVERT: 9f1c8ee concurrencykit: update to version 0.5.1
      REVERT: fb946ee bootchart: update to 1.17
      REVERT: 49d4df3 libgee: update to the latest stable version (0.18.0)
      REVERT: 7166c0a log4cplus: update to version 1.2.0
      REVERT: 0791add libio-pty-perl: update to version 1.12
      REVERT: 9b956d2 libxml++: update to the latest stable version (2.38.1)
      REVERT: 526a602 python-parted: update to version 3.10.7
      REVERT: cd0fe0f mozjs: fix armeb builds
      REVERT: 4d94318 initramfs-{debug,kexecboot}-image: zero out the rootfs_extra_space in initramfs images
      REVERT: 146c382 gtest, gmock: allow building gtest-native and gmock-native
      REVERT: 19284f3 crash: add cross package
      REVERT: 70a46ba Add simple-mtpfs recipe
      REVERT: a34566c python-visitor: Add recipe for version 0.1.2
      REVERT: 4bc8f37 python-netaddr: Add recipe for version 0.7.18
      REVERT: 07a6eeb python-dominate: Add recipe for version 2.2.0
      REVERT: b58d78f flite: fix license issue.
      REVERT: 9f8053b xcursorgen: fix License issue
      REVERT: f98090c udisk2: fix build issue with missing depends
      REVERT: d6a6190 nodejs: update to 4.4.3
      REVERT: c9f8cc3 apache2: update to 2.4.20
      REVERT: 8b15907 libmodbus: add support for the libmodbus development release
      REVERT: 7a0519d python-wtforms: Add recipe for version 2.0.2
      REVERT: 44aa637 python-pam: Add recipe for version 1.8.2
      REVERT: 3e88e5e python-flask-wtf: Add recipe for version 0.12
      REVERT: 9b1377a python-flask-sqlalchemy: Add recipe for version 2.1
      REVERT: 8c69a06 python-flask-navigation: Add recipe for version 0.2.0
      REVERT: 80279a3 python-flask-bootstrap: Add recipe for version 3.3.5.7
      REVERT: a68a27c python-flask-bcrypt: Add recipe for version 0.7.1
      REVERT: b72a23a python-blinker: Add recipe for version 1.4
      REVERT: fc3b141 python-bcrypt: Add recipe for version 2.0.0
      REVERT: 93aa4aa umip: unblacklist and disable parallel make
      REVERT: bf34b1e nginx: update to 1.9.14
      REVERT: 4fe750a llvm: correct fix for the multilib libdir
      REVERT: b7cbd44 python-whoosh: update to 2.7.4
      REVERT: 607e275 python-decorator: update to 4.0.9
      REVERT: 2d50716 python-dateutil: update to 2.5.2
      REVERT: 18872d2 python-cython: update to 0.24
      REVERT: da664f7 krb5: add native and nativesdk extend
      REVERT: e317d95 ne10: use bb.debug for debug messages
      REVERT: 0d28aba libbonobo.inc: add libbonobo-bin package by lib_package class
      REVERT: 1db7299 libhtml-parser-perl: update to 3.72
      REVERT: e9d95a5 libextutils-installpaths-perl: update to 0.011
      REVERT: 224dad6 libextutils-config-perl: update to 0.008
      REVERT: f9156de libencode-perl: update to 2.83
      REVERT: 26be6da libdbi-perl: update to 1.634
      REVERT: ebf03b9 libdbd-sqlite-perl: update to 1.50
      REVERT: 1e04c8b libcurses-perl: update to 1.34
      REVERT: aedee46 libcrypt-openssl-random-perl: update to 0.11
      REVERT: 5acf9a1 libclass-method-modifiers-perl: update to 2.11
      REVERT: 32d95f3 libcapture-tiny-perl: update to 0.36
      REVERT: c8f9b9c adduser: update to 3.114
      REVERT: d4cde5c libtinyxml2: update 2.2.0 -> 3.0.0
      REVERT: d34fc2a gnome-themes: fix icon-name-mapping not found
      REVERT: c8ec1be fcgi: update SRC_URI to match new path to fcgi-2.4.0.tar.gz archive
      REVERT: 37c75b3 openbox: add run time dependency on openbox-theme-clearlooks
      REVERT: 88b739e nodejs: update to 4.4.2
      REVERT: 3c76d0a vpnc: stage vpnc-script
      REVERT: 51717e1 openconnect: add recipe
      REVERT: afaf3c2 c-ares: Add package to networking
      REVERT: cb87e40 samba: remove dependency on ctdb
      REVERT: d73f12b samba: fix paths in sysv initscript
      REVERT: d5baf78 samba: fix QA warnings.
      REVERT: e123d76 ctdb: drop duplicated DESCRIPTION
      REVERT: 7290932 ctdb: rdepend on procps
      REVERT: dc0bc56 ctdb: disable the service by default
      REVERT: 37c8e1f iscsitarget: resolve build error with linux kernel 4.3 and above
      REVERT: eba63b3 lldpd: Update to version 0.9.2
      REVERT: d7c6dc8 samba: add volatile file to support readonly rootfs
      REVERT: 72a2f2b libtalloc: Update to latest stable
      REVERT: 2aad141 libtdb: Update to latest stable
      REVERT: 8176853 libtevent: Update to latest stable
      REVERT: b325cea libldb: Update to latest stable
      REVERT: 825cf15 samba: Update to latest stable
      REVERT: 5aa6f37 dnsmasq: get systemd only working again
      REVERT: abd1795 cyrus-sasl: Drop unneeded group addition
      REVERT: 156b381 README: update maintainers list for krogoth
      
      Change-Id: Id1c465d3fe39327bf35a475756b103eab8a90a02
      git-subtree-dir: import-layers/meta-openembedded
      git-subtree-split: 1efa5d623bc64659b57389e50be2568b1355d5f7
      Signed-off-by: default avatarPatrick Williams <patrick@stwcx.xyz>
      ddad1a15
    • Patrick Williams's avatar
      Squashed 'import-layers/yocto-poky/'. · c0f7c04c
      Patrick Williams authored
      _The text is longer than 1048576 characters and has been visually truncated._
      
      
      dc8508f build-applance-image: Fix to use the release branch for morty
      bf5dd36 build-appliance-image: Update to morty head revision
      746c681 meta-yocto-bsp: linux-yocto: bump to the latest stable version for non-x86 BSPs
      73aa36e linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.4
      cddb7f1 linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.1
      3999037 linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.8
      e09163a linux-yocto/4.8: sync preempt-rt with upstream project
      2c0efd2 devtool: runqemu: work around runqemu script path assumption
      fb1df18 image_types: Use softer setting of WKS_FILE
      e127d01 ref-manual: Removed host package requirements for SDK
      0915ee7 ref-manual: Applied minor corrections to 2.2 migration section.
      7c3cdf8 yocto-project-qs: Created two sub-sections for the "Build" section.
      9ae4ab5 yocto-project-qs: Fixed the example to use 'dd' instead of 'mkefidisk.sh'
      e40a8d7 ref-manual: Added BBMULTICONFIG glossary description.
      5e0d634 dev-manual: Added section for multi-configuration support
      41e7488 ref-manual: Updated 2.2 migration for runqemu porting to python
      952a47b buildstats: check IMAGE_ROOTFS exists before checking its size
      74f30e9 build-appliance-image: add /sbin to PATH
      143f9a3 linux-yocto/4.8: update to v4.8.3
      4fd9b03 linux-yocto/4.1: fix CVE-2016-5195 (dirtycow)
      d9f9b52 linux-yocto/4.4: update to v4.4.26
      a8a4817 kern-tools: make patches with shell-unsafe characters valid
      a32f8ce linux-yocto/4.4/4.8: kernel config warning cleanups
      ef627ab local.conf.sample.extended: remove RM_OLD_IMAGE
      9c04beb ref-manual: Removed RM_OLD_IMAGE variable description.
      b6eef65 ref-manual: Added more to migration 2.2 runqemu ported to python.
      f9ea0a8 ref-manual: Updated the 2.2 Migration section with review changes.
      d669b83 ref-manual: Added links for migration BitBake change.
      3a5b86e ref-manual: Fixed missing title for migration section.
      a6752eb ref-manual: Added the 2.2 Migration guide section.
      2b08a28 ref-manual: Added note to RM_OLD_IMAGE indicating redundancy
      97ac701 ref-manual: Changed BB_SETSCENE_VERIFY_FUNCTION name
      069adf7 build-appliance-image: Update to master head revision
      4b94b49 bitbake: toaster: Update default release to Morty
      3332426 bitbake: toaster: Update poky fixture for Morty release
      7656dea bitbake: toaster: Update oe-core fixture for Morty release
      0fc03be linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.4 Upgrades to Linux 4.4.22
      bf16e8b linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.1 Upgrades to Linux 4.1.33
      06e0718 README.hardware: update Edgerouter section
      fb49654 edgerouter.conf: produce wic images for Edgerouter
      8bc037f poky-tiny.conf: set QB_DEFAULT_FSTYPE to IMAGE_FSTYPES
      cd271d2 README.hardware: update Beaglebone section
      924ca10 bitbake: bb.event: fix infinite loop on print_ui_queue
      24abb88 binutils: Fix gas error with cfi_section inconsistencies
      be587db libxml2: Make tests non-executable
      2a2592e bind: fix two CVEs
      5dba357 rpm: prevent race in tempdir creation
      901e632 insane.bbclass: fix package_qa_check_arch() for mips64-o32
      34b16fe arch-mips.inc: remove duplicates from PACKAGE_ARCHS
      8d3a272 ppp: fix building with linux-4.8
      21d5c58 Revert "linux-libc-headers: fix in/if.h includes"
      b2726f7 populate_sdk_ext: explicitly set DL_DIR
      7052400 sqlite3: Revert ad601c7962 from 3.14.1 amalgamation package
      d8adf58 linux-yocto.inc: ensure do_kernel_link_images runs before do_strip
      76f42d6 binutils: fix for MIPS "Can't find matching LO16 reloc" errors
      ee835e1 libgpg-error: Make case generic for MIPS
      704c8b8 live-vm-common.bbclass: Allow to use different kernel image than KERNEL_IMAGETYPE for /vmlinuz
      65eb514 image_types.bbclass: add dependency do_image_wic -> do_bootimg
      1d3b825 libxcb: use python3 to build it
      ede3319 xcb-proto: fix for python3
      a489cb1 xcb-proto: create .pyc files for python2
      49d189e package_tar: avoid chdir warnings and restore cwd after packaging
      a618501 source-highlight: use with-boost-libdir
      a35493d insane.bbclass: Additional "mips" and "mipsel" machine definitions
      ca3c782 kernel-arch.bbclass: Add xtensa and arc into valid_archs table
      9ab52c8 libxrender: remove spurious build dependency
      d46883c libxext: remove spurious dependencies
      95a7729 libxext: remove stale git recipe
      4e1b9d5 cmake: improve CMAKE_SYSTEM_PROCESSOR assignment in nativesdk
      62a0163 cmake: also set CMAKE_FIND_ROOT_PATH_MODE_PACKAGE
      b7b2e34 base-files: fix profile error under < /dev/null
      f683658 x86-base: Update version to 4.8
      7c32a77 pixbufcache: handle gdk-pixbuf not being present
      76b0c18 librsvg: remove redundant assignment
      751cb2c Remove RM_OLD_IMAGE, it's no longer useful
      1a95d4a bitbake: bitbake-user-manual: Changed BB_SETSCENE_VERIFY_FUNCTION name
      19d39be bitbake: bitbake-user-manual: Fixes small typos for 'addtask' section
      ce70355 bitbake: bitbake-user-manual: Updated the [noexec] and [nostamp] flag descriptions
      1d4031a bitbake: bitbake-user-manual: Fleshed out the "addtask" documentation
      eedb264 bitbake: bitbake-user-manual: Updated the datastore functions
      b2f1d21 dev-manual: Re-wrote the remote GDB debugging section.
      551f7d8 dev-manual: Applied review comments to "Packaging Externally Produced Binaries"
      cbc5986 bsp-guide: Updated the yocto-bsp create selections in the example.
      4616a47 toaster-manual: Added video link to 2.2 Toaster Intro.
      13033b2 yocto-project-qs: Fixed Minnow MAX build example
      371ab63 build-appliance-image: Update to master head revision
      a75bccd bitbake: runqueue.py: Remove redundant whitelist checks
      f725929 classes/externalsrc: re-run do_configure when configure files change
      2d60ffc poky.conf: fix DISTRO_VERSION
      1c85c29 sdk-installer: Fix unclear SDK installer message
      df80b81 sysklogd and busybox: ignore return code from init script stop
      83e4e27 update-rc.d.bbclass: ignore init script return code
      a003a92 insane: display names instead of ELF machine numbers
      8419817 lib/oe/qa: add ELF machine to string function
      1de0cc9 build-appliance-image: Update to master head revision
      9304fcc vte: Build without vala by default
      4a7eb4b build-appliance-image: Update to master head revision
      1b1bc79 ref-manual: Updated the USERADD_ERROR_DYNAMIC and USERADDEXTENSION variables.
      96b9007 dev-manual: Updated "Packaging Externally Produced Binaries"
      2cd0125 bsp-guide: Updated the yocto-bsp create output in the example.
      684a875 ref-manual: Added link in the SYSROOT_DIRS_NATIVE description
      cda7141 ref-manual: Review edits to do_populate_sysroot and SYSROOT_DIRS_NATIVE
      6be52dd ref-manual: Updated three SYSROOT_DIRS* variables.
      d31a826 ref-manual: Updated the do_sysroot_populate task description.
      1053502 ref-manual: Updated QA error message.
      3b4987a ref-manual: Added note about bb.fatal() raising an exception.
      b1e4d96 documentation: Updated Manual revision table for 2.2
      8312ba8 ref-manual: Applied review changes to the STAGING_DIR_HOST
      aaeb1ee ref-manual: Added a reference to viewing task variable dependencies.
      2da62c5 yocto-project-qs: Altered MinnowBoard MAX example
      ca2b282 mega-manual: Added new chapters to support building the manual
      8e57e88 poky.ent: Updated the variables for Morty release.
      5f146e5 dev-manual: Added new section on recipe style guidelines
      81698ab dev-manual: Fixed missing quote in SRC_URI example.
      ca85107 ref-manual: Updated build/tmp/cache/ reference section
      7ff22fc sdk-manual: Fixed example in "Passing Host Options"
      2083e83 ref-manual: Updated the STAGING_DIR_HOST variable description.
      c2c052e ref-manual: Added explanation of the -C option
      e2083c0 dev-manual: Fixed IMAGE_FEATURES examples in debug section.
      6ec45ef dev-manual: Update to GPL file finder script.
      45a8da9 poky.conf: Bump version for 2.2.0 morty release
      9756e53 bitbake: bitbake: Update version to 1.32.0
      45f7221 archiver: fix gcc-source handling
      0f042b1 bitbake: depexp: Close UI with error message on NoProvider event
      b8f4804 genericx86-common.inc: add dependency do_image_wic -> do_bootimg
      d9809e9 README.hardware: Update Genericx86 section
      68c6457 genericx86-common.inc: produce EFI wic image
      58d0abe linux-yocto: linux 4.4: bump to the latest stable version for non-x86 BSPs
      f51158b linux-yocto: linux 4.1: bump to the latest stable version for non-x86 BSPs
      b8499e7 linux-yocto: linux 4.8: bump to the final v4.8 release for non-x86 BSPs
      0f25619 net-tools: fix building with linux-4.8
      40f262f Revert "linux-libc-headers: if_tunnel: remove include of if/ip/in6.h"
      a8efeb7 canned-wks: use GPT partition table
      a7648af systemd-bootdisk.wks: update kernel command line
      55a8fe7 flex: Backport buffer overflow fix
      2109c62 flex: Update upstream check uri
      fbdeb3f gnutls: Backport certificate check fix
      b9d6a7c bitbake: main: Check bitbake server-only port is a number
      77e5619 bitbake: runqueue: Optimise task id string manipulations
      146eb22 bitbake: toaster: fix cloning of git+ssh repositories
      f436629 bitbake: bb.runqueue: fix unexpected process death logic
      31aafe6 bitbake: ui/knotty.py: Fix signal handling of SIGWINCH in BBProgress
      9489382 testimage: disable build tests for qemumips and qemumips64
      b5e8924 mkgummidisk.wks: update kernel command line
      2f7c6bb mklibs-native: update broken SRC_URI
      8209a01 gcc-runtime.inc: Add CPP support for x86-64-x32 tune
      1b55ee1 libgcc-common.inc: Fix broken symlinks for multilib SDK
      65107a9 machine.cfg: Unset CONFIG_64BIT for qemu i386 architecture
      b872e2b linux-yocto/4.8: Enable R8169 driver since its needed by supported platforms
      ac647ea update-rc.d.bbclass: check that init script is executable before running it
      3536271 classes/populate_sdk_ext: add symlinks and unfsd to support Eclipse plugin
      78c0199 oeqa/sshcontrol: Handle interrupted system call error
      3c1faa1 u-boot: Add support to use uboot-extlinux-config class
      7df1951 classes/uboot-extlinux-config: Add class
      09a9de4 wic: selftest: add test for sdimage-bootpart
      bed4a13 wic: selftest: add test for systemd-bootdisk
      33bed1e security_flags: Diable PIE for mesa-gl
      926a1e6 mkefidisk.wks: update kernel command line
      dc67037 mkefidisk.wks: use MSDOS partition table
      12ea11e wic: rewrite MBR disk identifier
      5763d8f9 wic: generate PARTUUID for MDOS partitions
      e8ce508 wic: set PARTUUID only for gpt partition table
      1ddd23c linuxloader.bbclass: Adjust mips to cover all mips/mips64
      8be92dc arch-mips: Add mipsisa{32, 64}r6{el, } tunes
      559f52f gcc-configure: Add mipsisa{32, 64}r6{el, } support
      561e7e1 glibc: Add mipsisa{32, 64}r6{el, } support
      4ab8b8f bitbake.conf: Add mipsisa{32, 64}r6{el, } support
      80a4239 siteinfo.bbclass: Add mipsisa{32, 64}r6{el, } support
      8535ed9 linuxloader.bbclass: Add mipsisa{32, 64}r6{el, } support
      ba8bfee libc-package.bbclass: Add mipsisa{32, 64}r6{el, } support
      caf7e84 kernel-arch.bbclass: Add mipsisa{32, 64}r6{el, } support
      4ec02b3 insane.bbclass: Add mipsisa{32, 64}r6{el, }
      0623259 pseudo: backport a patch to fix renameat()
      e96af0c xmlto: Add libxslt to native DEPENDS
      ef7828c utils.bbclass: add function to check for git config user
      4454d02 bitbake: toaster: Update tests to reflect front end changes
      7f67977 bitbake: toaster: Delete notification update front end implementation to design
      8df5606 bitbake: toaster: importlayer Fix layer dependencies button state toggle
      5e9b405 bitbake: toaster: checksettings Remove confusing startup messages
      25ea0b6 bitbake: toaster: buildinfohelper: Use correct way to get message from LogMessage
      fffce32 bitbake: toaster: api / project Cancel any in progress builds before project delete
      8c4091a linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.8
      510157e bitbake: bitbake-user-manual: Added new section on BB-style functions
      04128a6 bitbake: bitbake-user-manual: Updated minor wordings.
      7ab459d bitbake: bitbake-user-manual: Added examples for using overrides with functions.
      dda8ed0 bitbake: bitbake-user-manual: Fixed grammar from missing word
      f12825d scripts: Rename 'native' to 'oe-run-native'
      ce7e025 uninative: users can override download site
      35ca6ad icecc.bbclass: replace os.popen with subprocess.check_output
      3c51b74 devtool: modify command fails to ignore source files
      79286b4 populate_sdk_base.bbclass: Make do_populate_sdk depend on PACKAGE_EXCLUDE_COMPLEMENTARY
      27d947c image.bbclass: Make do_rootfs depend on PACKAGE_EXCLUDE_COMPLEMENTARY
      d067b0e package_manager.py: Allow multiple regexps in PACKAGE_EXCLUDE_COMPLEMENTARY
      2334201 package_manager.py: Allow a leading - in PACKAGE_EXCLUDE_COMPLEMENTARY
      b16001f oeqa.buildperf: measure apparent size instead of real disk usage
      4189a19 bitbake: toaster: add Font Awesome license
      7d27275 bitbake: bb.build: in _exec_task, catch errors from TaskStarted
      1110dde bitbake: event: prevent unclosed file warning in print_ui_queue
      079396f gtk+3: Backport treeview focus fix
      5f6a62c linux-yocto/4.8: fix BUG_ON() in workingset_node_shadows_dec() triggers
      84113ca pigz: Update SRC_URI
      c43aed1 perf: Fix to obey LD failure
      ff3c3b8 yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for x86-64 arch
      8cdef44 yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for PowerPC arch
      338c775 yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for qemu arch
      fc34ac0 yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for i386 arch
      f43da79 yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for MIPS64 arch
      eb62965 machine.conf: Remove duplicate xserver choices
      fe18ded yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for MIPS arch
      6020616 yocto-bsp: linux-yocto recipes update (4.4 to 4.8) for arm arch
      3812e9f bitbake: bitbake: Update version to 1.31.2
      79012f9 bitbake: bb/event.py: fire_ui_handlers enable threading lock support
      45f401a sanity: Update minimum version requirement to 1.31.2
      f5f3ccf alsa-lib: allow building ARM thumb again
      7923647 devtool: deploy-target: Avoid unnecessary dependency on awk on the target
      ed12917 parselogs.py: Add disabling eDP error to x86_common whitelist
      f205384 classes/sstate.bbclass: Enable thread lock when checkstatus
      f1f6993 Revert "gst-player: Disable visualizations"
      f63e8d2 xf86-video-intel: Upgrade to recent git
      28ffbd4 matchbox-panel-2: Fix small systray icon drawing
      389cfd2 Revert "connman-gnome: StatusIcon adapts to size changes"
      bb7468e Revert "attr: Added ncurses to depends"
      18caaca devtool: add: build nodejs-native if npm is needed and not available
      ee697d8 devtool: add: display a warning for deprecated -f/--fetch option
      0c5fd7a devtool: add: fix error message when only specifying a recipe name
      dea7097 base-files: don't export TZ="UTC" from /etc/profile
      d89e16d oeqa/selftest: Update test after fetcher error changes
      1688288 systemtap: rationalise dependencies
      25f3a3d json-c: add BBCLASSEXTEND for native and nativesdk
      fb71f34 linux-libc-headers: if_tunnel: remove include of if/ip/in6.h
      8c5ac48 linux-yocto/4.1/4.4: remove innappropriate standard/base patches
      7c6b78a linux-libc-headers: fix in/if.h includes
      f154229 linux-yocto/4.8: update to 4.8 -final release
      5ffef79 linux-libc-headers: update to 4.8 final
      e2290f0 linux-yocto/4.4: update to v4.4.22
      d69f01e linux-yocto/4.1: update to 4.1.33
      edf08e5 linux-yocto/4.8: mmc configuration for x86*
      575ee2d cmake: Use bb.fatal() instead of raising FuncFailed
      56be38f testimage.bbclass: Use bb.fatal() instead of raising FuncFailed
      4768cd6 utility-tasks.bbclass: Use bb.fatal() instead of raising FuncFailed
      4dbb0d7 package.bbclass: Use bb.fatal() instead of raising FuncFailed
      4c25460 libc-package.bbclass: Use bb.fatal() instead of raising FuncFailed
      c5823be testsdk.bbclass: Use bb.fatal() instead of raising FuncFailed
      fe7a783 chrpath.bbclass: Use bb.fatal() instead of raising FuncFailed
      39f80ce sstate.bbclass: Use bb.fatal() instead of raising FuncFailed
      db6ae52 useradd.bbclass: Use bb.fatal() instead of raising FuncFailed
      fadc4fc gtk-immodules-cache.bbclass: Use bb.fatal() instead of raising FuncFailed
      823acf8 systemd.bbclass: Use bb.fatal() instead of raising FuncFailed
      0aaa51e license.bbclass: Use bb.fatal() instead of raising FuncFailed
      7f22c97 update-rc.d.bbclass: Use bb.fatal() instead of raising FuncFailed
      f13bd4b gummiboot.bbclass: Use bb.fatal() instead of raising FuncFailed
      d11b51d systemd-boot.bbclass: Use bb.fatal() instead of raising FuncFailed
      4639810 syslinux.bbclass: Use bb.fatal() instead of raising FuncFailed
      103ab2d grub-efi.bbclass: Use bb.fatal() instead of raising FuncFailed
      255f260 useradd-staticids.bbclass: Use bb.fatal() instead of raising FuncFailed
      fc3dc09 package_rpm.bbclass: Use bb.fatal() instead of raising FuncFailed
      c7d522c package_deb.bbclass: Use bb.fatal() instead of raising FuncFailed
      9efdd60 package_ipk.bbclass: Use bb.fatal() instead of raising FuncFailed
      4359ef0 base.bbclass: Use bb.fatal() instead of raising FuncFailed
      0c9ba38 binutils: apply RPATH fixes from our libtool patches
      55e8c3a binutils: fix typo in libtool patch
      922a745 classes/native: set lt_cv_sys_lib_dlsearch_path_spec
      87acbfe classes/cross: set lt_cv_sys_lib_dlsearch_path_spec
      3a73fe0 beaglebone.conf: produce wic images for Beaglebone
      642197f bitbake: data: Fix handling of vardepvalueexclude
      be873a0 machine-sdk: Clear ABIEXTENSION to avoid sstate checksum mismatch issues
      2d7df9b oeqa/sstatetests: Add test for multilib allarch checksums
      ff8fa4c boost: Ensure native recipes have consistent checksums
      2ba0fbc gcc-cross: Stop target recipes depending on SDK_SYS
      6f03af9 multilib.conf: Ensure sstate checksums don't change when using this include
      a9b3a6d allarch: Fixes to stop rebuilds when change multilibs
      d36c703 nativesdk: Don't enable MULTILIBS
      7ae326c oeqa/utils: Add StreamHandler to logger
      5d96223 subprocess: remove Popen in favor of check_output
      1ab3a23 kbd: create ptest sub-package
      3159738 mkefidisk.wks: use partition UUID and GPT partition table
      7b31253 scripts: add new script 'native'
      14cdcbc grub-efi.bbclass: Add a space between root and append parameter
      a17ce35 build-perf-test-wrapper.sh: accept test case failures
      e4e6ff3 oe-build-perf-test: return 2 if some tests failed
      debb7bb multilib_header: avoid sstate checksum issues for -nativesdk recipes
      4df4024 build-perf-test-wrapper.sh: show defaults for '-a' and '-w'
      eb1c8cd build-perf-test-wrapper.sh: check for positional arguments
      a8002cb runqemu: Add little endian variations for MIPS
      4f58013 scripts/buildstats-diff: implement --multi option
      a235c1b scripts/buildstats-diff: make logger msg format a bit more readable
      cbbe51f scripts/buildstats-diff: use exception for internal error handling
      4cdf47a scripts/buildstats-diff: add walltime to --diff-attr
      c6047cd scripts/buildstats-diff: add read_ops and write_ops to --diff-attr
      44bc3f4 scripts/buildstats-diff: add read_bytes and write_bytes to --diff-attr
      01a2b58 scripts/buildstats-diff: introduce --diff-attr
      e053091 scripts/buildstats-diff: do not hardcode field widths in output
      7113ac9 scripts/buildstats-diff: implement BSTask class
      4cc1c43 scripts/buildstats-diff: rename --min-time and --min-timediff args
      58bd0fd scripts/buildstats-diff: check that the given directory exists
      d887997 mips64-linux: set ac_cv_sizeof_ssize_t for mips64el
      a3e5ebe image-buildinfo: restore trailing newline
      2056bad linux-yocto.inc: Run kernel_version_sanity_check with final source
      0cbd843 tzdata: update to 2016g
      cdbdca1 tzcode-native: Update to 2016g
      7aba4c9 pseudo: quiet diagnostics during startup for pseudo -d
      4205c0b libxml-parser-perl: remove redundant expat-native dependency
      d19645b wic: rename and amend systemd-boot wks file
      fe01148 bootchart2: Allocate space on heap for collector chunks
      a75b79a genericx86-64.conf: Add SERIAL_CONSOLES_CHECK = "ttyS0"
      de34aab bitbake: toaster: make error message more informative
      af0f679 bitbake: toaster: fix 'Unhandled MetadataEvent' error
      c7b55ea bitbake: toaster: fix handling of EnvironmentError
      cc4c02a bitbake: toaster: check if file exist
      efa8cfb bitbake: toaster: stop modifying OEROOT in toaster script
      5b035ed bitbake: toaster: layerdetails Update implementation of delete imported layer
      ac5aba6 bitbake: toaster: customrecipe Add frontend feature to delete custom image recipe
      5b23bf0 bitbake: toaster: importlayer Convert success import to new notification system
      fbf7e14 bitbake: toaster: Add front end controls for deleting a build
      44058c4 bitbake: toaster: Add backend API for deleting a build
      d209f8b bitbake: toaster: alerts and modals Avoid modals and alerts overlaying each other
      0d70606 bitbake: toaster: project page Implement front end feature to delete project
      7ca44f5 bitbake: toaster: libtoaster Add a global notification set/show mechanism
      8ba7ccd bitbake: toaster: move MostRecentBuildsView to its own widget
      4d0bc8d bitbake: toaster: Clean up and convert to rest api project edit and get calls
      0b17e6d bitbake: runqueue: Ensure worker failure is accounted for in task statistics
      3b6ec40 db: Refresh patches
      9393b16 db: Upgrade to 6.0.35
      b625335 cross-canadian/libgcc-common: Fixes for arm multilib
      e0e8cd0 parselogs: Update uvesafb errors in qemu whitelist
      5753147 runqemu: explicitly set image format
      b8f5fda qemuboot: don't fail when QB_DEFAULT_KERNEL isn't symlink
      e01466f cve-check-tool: report progress when downloading CVE database
      0466c81 cve-check-tool: convert do_populate_cve_db() from python to sh
      5d8a968 dev-manual: Applied review changes to GNU debugging section.
      75e60f1 ref-manual: Updated the DEPENDS variable description
      b064c34 dev-manual: Updated the example to identify GPL files.
      2199b68 dev-manual: Updated the devpyshell section
      99b9efb dev-manual: Updates to the on-target debugging section.
      e7e6150 ref-manual: Updated the DEPENDS variable description.
      0d091db ref-manual: Applied small edits to the DEPENDS variable desc.
      bbc7a64 ref-manual, dev-manual: Add information on devpyshell
      9f2cf76 dev-manual: Added new GDB debug requirements section for target
      924966f dev-manual: Updated the Known issue for QEMU not working in usermode
      8a8349b ref-manual, dev-manual: Updates for "staging" discussion and variables.
      1c59455 dev-manual: Added new "Dependencies" section to writing new rec.
      cd2a26c ref-manual: Updated the DEPENDS variable description
      b8ad433 dev-manual: Applied review edits to the "writing new recipe"
      285931e dev-manual, sdk-manual: Applied review comments for SDK movement
      f1b31e9 ref-manual: Updated the intro to the devtool quick reference.
      58b1381 ref-manual: Fixed a typo.
      13d47a1 ref-manual: Added two new tips
      ad539f5 ref-manual: Added 'depchains' description for auto dep. mech.
      8263839 ref-manual: Updated the PACKAGES variable description
      89621b1 ref-manual: Updated "Viewing Variable Values" section.
      959a062 sdk-manual, dev-manual: Applied SDK review edits.
      4404fc3 ref-manual: Provided an introductory text to the devtool ref.
      39639ad dev-manual: Updates to the "Writing a New Recipe" section.
      fe8d575 sdk-manual: New Projet chapter added and other fixes
      ed6a549 documentation: devtool upgrade and quick ref changes to mult manuals
      38278f0 sdk-manual: Added the devtool upgrade command flow to the manual.
      54a10ca dev-manual: Updated the devtool upgrade command flow
      e2251b5 maintainers: Change maintainers for python(3) modules
      3c1af2e maintainers: new maintainers in multiple recipes
      3935476 maintainers.inc: Change perl maintainer
      8b24b0c bitbake: build.py: fix os.getcwd() exception
      1290534 oeqa/sstatetests: Ensure we cover deb packaging backend for sstate test
      f420227 dpkg: Only set DEB_HOST_ARCH in target case
      93d4250 populate_sdk_base.bbclass: fix broken variables
      46c5e7a lib/oeqa: Regenerate galculator configure
      c8089ae recipetool: newappend: drop _provide_to_pn
      a713b78 perl: module-overload needs module-overloading
      5268f78 perl: correct math-bigint dependency typo
      206ad10 lttng-tools: fix ptest
      d31bd86 linux-yocto/4.8: update to -rc8
      425c614 openssl: Upgrade 1.0.2i -> 1.0.2j
      390140e image_types.bbclass: remove redundant dependency
      c6fbb37 linux-yocto: Move PREFERRED_PROVIDER check to be generic
      04a3b6c scripts/cleanup-workdir: Adapt to SDK_ARCH -> SDK_SYS chanages for crosssdk
      cf882b6 SDK: Allow changing SDKMACHINE without wiping TMP folder
      2d35edf libsolv: enable MULTI_SEMANTICS
      bb744b8 parselogs.py: Add amd_nb error to x86_common whitelist
      850ded3 gst-player: Disable visualizations
      013fff4 perl: fix CVE-2016-1238
      fd4391d python: fix CVE-2016-1000110
      b5a0033 archive.bbclass: fix do_ar_original archiving of multiple source repos
      58866d6 archiver.bbclass: ignore unpack sub-directories in do_ar_original
      e8426a5 linux-firmware: package Broadcom BCM43430 firmware
      2e18c87 linux-firmware: update to revision 42ad5367
      b7fac3f boost: add support for additional boost libs
      55cab15 boost: disable pch when build boost-math
      6c22e39 ptest-runner: recipe update related to minor fix.
      527764b devtool: Add a line break to generated README
      47abf98 prelink: Manipulate library paths to match the target system library setup
      153da94 utils: Add all_multilib_tune_list function
      de4fffe machine/qemu*: Add comment regarding the reason for virtio-rng-pci
      72dc833 glibc-initial: use python3 instead of python (v2)
      7ff051c autotools.bbclass: use python3 instead of python (v2)
      8b5a62e uninative: Upgrade to 1.4
      725e66e meta-environment: ensure corret TOOLCHAIN_CONFIGSITE_NOCACHE value
      8dfcfbe arch-mips: Add mips64-o32 tunes
      bad17ae tune-ppc[65]00.inc: Disable QEMU usermode usage
      18afc88 qemu.bbclass: Allow use different QEMU binary depending of target
      2305c00 pseudo: Fix problem where pseudo could kill a container init
      1d1f94b scripts/runqemu: provide better error message on runqemu ifup fail
      f82cc4b scons.bbclass: rework parameters for install task
      37f7c03 cracklib: Apply patch to fix CVE-2016-6318
      36accdb gnutls: Skip QA check for text relocation on x86
      347316d wic: remove partition images
      6b8d16c openssl.inc: avoid random ptest failures
      d9e1bb6 openssl: update to 1.0.2i (CVE-2016-6304 and more)
      2f4b80b arch-mips: Add mips64r2 tunes
      0f16c90 lttng-tools: adds DEPENDS to util-linux
      a9f4b94 lttng-tools: fixes a wrong header issue
      7caf628 lib/oe/patch: improve accuracy of patch header extraction
      f692840 lib/oe/patch: exclude "From <hash>" from commit message when PATCHTOOL is "git"
      efa3c7d nativesdk-qemu-helper: drop old Zaurus flash tools
      be642a6 bluez5: remove duplicated udev setting from FILES_${PN}
      3d7a4f4 pcmciautils: remove duplicated udev setting from FILES_${PN}
      fa78499 eudev: don't move udev directory
      c0dbfc6 xf86-input-vmmouse: remove duplicated udev setting from FILES_${PN}
      26a6e95 mdadm: remove duplicated udev setting from FILES_${PN}
      4a071fb ofono: remove duplicated udev setting from FILES_${PN}
      20d355b libinput: fix udevdir
      544241e systemd: install udev.pc
      5728255 bitbake.conf: add eudev's udevdir to FILES_${PN}
      bd933a3 buildtools/uninative-tarball: Fix deployment overlap issues
      b75ed25 toolchain-shar-relocate.sh: Fix typo
      cea1d78 sdk-manual: Removed two Git tag developer notes.
      394b909 sdk-manual: Removed notes about the BitBake Commander
      0ac7b1e sdk-manual: Updated Passing host options example
      ad1ba19 ref-manual: Updates to PKGDESTWORK and do_packagedata
      5ec03cd dev-manual: Updated add and modify flows and text.
      0c823cc sdk-manual: Updates to the devtool Finish command flow.
      7d208c1 ref-manual: Applied review edits to auto added runtime deps
      aba386b sdk-manual: Updated SDK workflow
      6cecded sdk-manual, ref-manual: New variable for including toolchain
      4824bb4 ref-manual: Added note to PREFERRED_VERSION
      8bc6c1c ref-manual: New section and updates for runtime dep work
      899ea9c ref-manual: Another edit to the oe-pkgdata-utils description
      b247bae ref-manual: More wording changes to oe-pkgdata-util section.
      79cb2ed ref-manual: Applied some re-writes to oe-pkgdata-util use section.
      7267910 sdk-manual: Updated the connection steps for deployment
      8c2172b ref-manual: New section on using oe-pkgdata-util
      43b5d14 sdk-manual: Fixed spelling error.
      72d1435 documentation: Added new description for the PACKAGECONFIG_CONFARGS variable.
      066ecf6 mega-manual: Added the new mars appendix to the sdk-manual build section.
      11e9d10 ref-manual: Added variable description for PACKAGECONFIG_CONFARGS
      0637314 sdk-manual: Updated neon JDK requirements to be 1.8+
      4317c65 sdk-manual: Updated legacy mars links to go to neon section.
      3277d8d sdk-manual: Updates to "Working With Eclips" for Neon
      8a3d542 ref-manual: Fixed typo for "debugging".
      7791b32 poky.ent: Updated the essentials list variable for Fedora
      77dee66 ref-manual: Changed command to install Fedora Python package
      0de5767 yocto-project-qs, ref-manual: Updated Python requirement to 3.4.0
      5f5671e ref-manual: Removed link to ROOTFS_RO_UNNEEDED.
      2a2ccb0 ref-manual: Added new note item to the DEPENDS note box.
      4b8e7d8 ref-manual: Updated the MLPREFIX variable description.
      2c38cc6 dev-manual: Updated QEMU known issues for user-mode
      007193c ref-manual: Added variable description for FORCE_RO_REMOVE.
      c3adec9 ref-manual: Updated CLASSOVERRIDE with a new example.
      d4cd787 yocto-project-qs, ref-manual: Removed Python 3.0 exclusion
      3fa0f9d ref-manual: Updated the DISTROOVERRIDES variable description.
      2233924 ref-manual: Updated the MACHINEOVERRIDES variable description
      44b0b07 ref-manual: Rewrite of the CLASSOVERRIDE variable in the glossary
      43b9962 ref-manual: Grammar fix in the OVERRIDES variable description.
      9f0e068 ref-manual: Grammar fix in "Stamp Files and the Rerunning of Tasks"
      e0347ec ref-manual: Clarified the OVERRIDES glossary description.
      f187919 ref-manual: New section clarifying stamps, input checksums and sstate cache
      ba8bc1b ref-manual: Updated systemd-boot documentation link.
      9173b11 bitbake: knotty: ensure progress bar output is accounted for in display
      0d76de8 bitbake: knotty: Show task elapsed time
      c902e7b oeqa/selftest/base: backup and restore local configuration files
      659fab4 testimage.bbclass: Add package manager dependency
      0156812 scripts/runqemu: Using a cpio* rootfs has no special network
      deba7ca runqemu: Move virtio RNG to machine configuration
      8aa8d14 cmake-native: prefer native sysroot libraries over host
      49d4477 gstreamer1.0-libav: Add 'valgrind' config option
      8381125 wpa_supplicant: Security Advisory-CVE-2016-4477
      9b78237 wpa_supplicant: Security Advisory-CVE-2016-4476
      d2259ac encodings: Add dependency to mkfontdir-native
      65a7b15 bitbake.conf: add a lazy default for SDKMACHINE
      e08640b buildtools-tarball: improve stamp independence
      cb1ffb8 toolchain-scripts-base: add base class for toolchain_create_sdk_version
      8f85911 xserver-xorg: fix qa warnings
      88df0e4 bitbake: cooker/providers: Only add target to world build if task exists
      37d5307 bitbake: fetch2: handle absolute paths in subdir
      7358cbf base.bbclass: Drop unnecessary dirs setting
      577ff4e autotools/siteinfo: Tweak CONFIG_SITE handling for determism/races
      99284c3 asciidoc: set CLEANBROKEN to fix rebuild
      d6616a4 directdisk*.wks: add serial console support
      ef942d6 perf: Fix to obey LD failure on qemux86-64
      0f09354 libunwind: fix build by linking with bfd instead of gold
      95da87e systemd: fix indentation
      aa7f7b6 x264: add textrel to INSANE_SKIP
      f5b1cd0 perl: fix CVE-2015-8607
      c27660d perl: fix CVE-2016-6185
      7a0fbb9 toolchain-shar-relocate.sh: Add error-handling
      2a0f4e7 libnewt: link whiptail properly with libnewt
      3c1807e uninative-tarball: Make stamp independent
      46afeab bitbake: bitbake-user-manual: Added information for using single quotes
      39828d3 bitbake: bitbake-user-manual: New section on functions you can call from Python
      5503ed1 bitbake: bb.build: in _exec_task, catch BBHandledException
      792c40c buildtools-tarball: add SDKMACHINE to stamps-extra-info
      9294261 runqemu: don't fail during check_arg_machine()
      5d3c56f runqemu: don't try and invoke bitbake when running in a toolchain env
      c97912a runqemu: try and guess qemu-system binary when MACHINE isn't set
      cd47b64 runqemu: validate paths and attempt to infer unset paths
      7ab74d8 linux-yocto: Updates genericx86* SRCREVs for linux-yocto 4.8
      7f44dde linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.4 Upgrades to Linux 4.4.20
      ec41b0d linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.1 Upgrades to Linux 4.1.32
      66abd36 meta-yocto-bsp: bump to linux-yocto 4.8 for the non-x86 BSPs
      3cbf23a meta-yocto-bsp: linux 4.4: bump to the latest stable version for the non-x86 BSPs
      d16b6dd meta-yocto-bsp: linux 4.1: bump to the latest stable version for the non-x86 BSPs
      1fe840a genericx86-common.inc: produce wic images
      425a38a genericx86-common.inc: support boot by runqemu
      d3e6e10 bitbake: runqueue: Handle missing sstate dependencies better
      a884c43 bitbake: toaster: buildinfohelper local layer don't construct path using git info
      6066729 bitbake: toaster: Add tests to detect if we have missing db migrations
      7a3cccb bitbake: toaster: unlock BuildEnvirnoment when build is done
      ad04a63 bitbake: runbuilds: code cleanup - remove unused imports
      5e88c4a bitbake: runbuilds: code cleanup - whitespaces, long lines
      323b81a bitbake: runbuilds: process builds on start
      64d284b bitbake: runbuilds: process builds on SIGUSR1
      e9a12e5 bitbake: toaster: notify runbuilds when build status changes
      2478a6f bitbake: toaster: implement signal_runbuilds function
      483c16a bitbake: toaster: fix checking of repository url
      08af663 bitbake: cookerdata.py: Catch BBHandledException, preventing a backtrace in an event
      f1d8f1e bitbake: cooker.py: add LAYERRECOMMENDS processing
      74acb91 bitbake: toaster: Remove duplicate layer information
      07aa966 bitbake: toaster: Indicate active navigation element
      67ce1ce bitbake: toaster: Fix links to tasks with specific outcome
      ac2ac31 bitbake: uihelper: use elif instead of repeated if
      cb169d3 linux-yocto/4.8: introduce preempt-rt
      8692bed linux-yocto/4.8: integrate 4.8-rc7
      b4cf3f3 linux-yocto/4.1: 4.1.32 content and configuration warning fixes
      0eacf03 kernel.bbclass: Add kernel_version_sanity_check function
      c2908e1 boost: Replace math::static_lcm with integer
      b26926c uninative-tarball: add SDKMACHINE to stamps-extra-info
      e29c460 populate_sdk_base: fix support for changing SDKMACHINE settings
      a767c78 oeqa/selftest/lic-checksum: don't report the expected failure to errors.yp
      ffdc23a openssl: fix do_configure error when cwd is not in @INC
      1fe48d0 gcc-configure: Enable initfini-array
      a8cf594 oeqa/runtime/parselogs.py: Add ignore of tsc calibration fail in x86
      3f31981 enchant: add PACKAGECONFIG for *spell
      506df09 boost: switch to using C++11 atomics when available
      d8af0f2 runqemu: improve finding of rootfs, kernel and dtb
      67cb116 linux-firmware: package carl9170 separately
      fbb99b2 runqemu-gen-tapdevs: remove /etc/runqemu-nosudo when remove taps
      fad4caf default-distrovars.inc: remove libidn from LGPLv2_WHITELIST_GPL-3.0
      b2a6f9a openssh: fix potential signed overflow to enable compilation with -ftrapv
      69005ae image_types: add parted-native to do_image_wic depends
      9ead92a gawk-3.1.5: fix non-glibc & gcc >= v4 builds
      0a04692 package_manager.py: Change diagnostic messages per IRC
      f1e3dc0 package_manager.py: Adjust error message order
      1a8e50e qemuboot.bbclass: don't fail on very first build
      dbb76e2 externalsrc.bbclass: Make reparsing work for BBCLASSEXTENDed recipes
      91347ed kernel.bbclass: assign INITRAMFS_BASE_NAME using ?=
      f5062f0 dropbear: deterministic selection of system -vs- bundled libtom libs
      472c245 dropbear: fix -ltomcrypt -ltommath order when using system libtom libs
      5637f86 runqemu: use OECORE_NATIVE_SYSROOT from sdk
      5060e66 runqemu: work even if a *.qemuboot.conf isn't found
      239d170 runqemu: try symlinks when kernel or rootfs can't be found
      52e04cd qemuboot: also write the kernel link name to the conf file
      0fd7247 runqemu: clarify an INFO message
      7352d35 qemuboot: write the full kernel filename, not the link name
      2952aff runqemu: add guidance to resolve issues with missing files
      383a4af devtool: add: drop superfluous validation for recipe name
      ce1904a lib/oe/recipeutils: fix invalid character detection in validate_pn()
      90f925c recipetool: create: support git short form URLs
      147774f recipetool: create: tweak license crunching
      198c6d5 recipetool: create: pick up AC_PROG_SWIG
      1370edb recipetool: create: detect python autoconf macros
      541c54e recipetool: create: fix error with git tree and no network
      e30276c recipetool: create: fix name/version extraction from filename
      9aa1cf3 recipetool: create: improve python recipe license handling
      3a8a0bb recipetool: create: fix picking up name from local python source tree
      6a5bd99 runqemu: acquire_lock() should fail when failed to open the file
      286db04 qemuppc.conf: adjust kernel console
      2833b40 groff: not ship /usr/bin/glilypond
      e5de851 linux-firmware: Add missing ralink-firmware License
      77a9472 linux-firmware: Correct the LICENSE setting of license packages
      49a7839 build-appliance-image: Create image in correct location
      5414b80 bitbake: cooker: check if target contains task
      088d386 bitbake: cookerdata: allow multiple passes of config re-parsing
      e3e239b bitbake: cookerdata: fire ConfigParsed event after re-parse
      359feed scripts: add tool to scan for bashisms recipe shell scripts
      a24b2fa sanity.bbclass: split out config re-parse check
      5fc455e pulseaudio: add ${S}/LICENSE to LIC_FILES_CHKSUM
      de154f0 useradd_base.bbclass: Do not mess with the gshadow file in the sysroot
      a4f10da util-linux: Disable bfs support
      e88cee8 util-linux: Disable minix support.
      8d3f712 qemuboot-x86: Add task_timeout = -1 to uvesafb
      bdb10d8 cmake-native: rationalise system/internal library dependencies
      04cc7ab cmake: use convenience options for clarity
      12cd9c0 scripts: introduce buildstats-diff
      06e56ab package_manager.py: fix bitbake package-index failed
      55bb15f shadow: use relaxed usernames
      7ba62d6 oeqa/sdkext/devtool: use a smaller module to test node.js functionality
      f9b18c3 makedevs: don't restrict device node paths to 40 characters
      92862c6 qemurunner: print out the runqemu command
      d0b4ac3 cve-check.bbclass: Add class
      1896732 cve-check-tool: Add recipe
      08dc55c cmake: don't inherit autotools
      84e0260 openssl: Fix MIPS64be and add MIPS64le
      a7a6d05 oeqa/oetest: show stderr when running commands
      cfe4112 sanity: make license QA failures fatal again
      2a2634e openjade/sgml-common: Add sstate postrm commands
      0573dce sstate: Add postrm command support
      0c1b8bf bitbake: Add missing file from 'toaster: Allow git information to be null for BRLayer'
      53b1fa2 bitbake: build: Allow dirs/cleandirs to work for empty functions
      c3f630d bitbake: bitbake: fetch2: Make SRCREV_FORMAT name substitution safer
      d5698c0 bitbake: fetch2/npm: don't download same URL multiple times
      d649c64 bitbake: event.py: output errors and warnings to stderr
      62c45ff oeqa/utils/decorators: LogResults fix race condition in linkfile
      b28e6d6 oe-selftest: check for coverage version before starting tests
      405262d image.bbclass: add IMAGE_DEVICE_TABLE to rootfs[vardeps]
      f7367de create-pull-request: remove output directory
      5b5c426 ptest-runner: allow building from externalsrc
      d03439e patchelf: Update to version 0.9
      a6f0bce busybox: Avoid race building libbb
      de915fb linux-yocto: Adds new bbappend for genericx86 and genericx86-64 BSPs to support kernel 4.8
      56a4900 Revert "oeqa.runtime.smart: work around smart race issues"
      0825fcf libdrm: Explicitly disable cunit tests
      2e8c59d piglit: Backport linker flag patch
      26e46e6 runqemu: fix a race issue on lockdir
      edc92ea python-smartpm: use md5 as the digest for rpm_sys channel
      3f95a21 lib/oe/copy_buildsystem: fix building eSDK with indirect paths in BBLAYERS
      ca10752 classes/populate_sdk_ext: ensure we clean the right temporary TMPDIR path
      533315b eudev: Add missing pkgconfig dependencies
      c77f114 autotools: Correctly filter m4 files view to setscene dependencies
      1373b52 kernel-yocto: remove do_shared_workdir from SRCTREECOVEREDTASKS
      55dd3fa linux-yocto/4.1: update to 4.1.32
      1542689 linux-yocto/4.4: update to 4.4.20
      7576715 linux-yocto/4.8: update to v4.8-rc6
      f08aeff gtk-doc: require perl-native only if api-documentation feature is enabled
      04e3dc6 image.bbclass: also mask debugfs versions of masked images
      dd50dec image.bbclass: do not check size of the debugfs image
      5d13da4 valgrind: MIPS: Make toolchain basename generic
      f603002 gst-player: specify PV
      f5e2daf sstate.bbclass: normalize whitelisted paths
      d115b12 gstreamer1.0-plugins-good.inc: Fix libv4l2 packageconfig dependency
      05602d9 classes/populate_sdk_ext: exclude image tasks from locked signatures
      7c2d197 classes/gobject-introspecton-data: lazy assign GI_DATA_ENABLED
      fc9ddc2 classes/gtk-doc: lazy assign GTKDOC_ENABLED
      02e6c1e meta: cleanup d.getVar(var, 0)
      b8e2bab meta: cleanup d.getVar(var, 1)
      32b8267 testimage: add createrepo-native to testimage depends
      564a0d7 gstreamer1.0-plugins-bad: Fix packageconfigs and patches
      473a479 gstreamer1.0-omx: inherit upstream-version-is-even
      32d14e3 bitbake.conf: Add BBSERVER to HASHBASE_WHITELIST
      2c7849f oeqa: Remove linux user utilized for rpm test.
      0736079 oeqa.buildperf: another fix for splitting 'nevr' string
      6b889ff libical: fix build failure after changing machine
      25468b5 tiff: Update download URL
      03fa820 rpm: remove redundant removals
      059c556 glibc: remove hard-coded reference to gcc -E
      d4583c9 libpcre: explicitely specify CCLD_FOR_BUILD for this recipe
      c14dc1a rpm: manually cleanup sysck
      cc27fa2 sanity: fix hardcoded references to gcc
      9da9abd busybox: allow overriding compiler name in KConfig
      3e6f3e0 linux-libc-headers: allow overriding compiler name in KConfig
      270f423 linux-yocto: allow overriding compiler name in KConfig
      ddc7bd7 cross: export CC family from BUILD_* for cross compilers
      a1bcc48 gstreamer1.0-plugins-good: enable v4l2-probe
      2b92328 u-boot: Set u-boot binary permissions to 0644
      5f8c168 useradd: do not delete users and groups during configure
      996aaf9 oeqa/parselogs: Don't use cwd for file transfers
      4359f8c poky: add Fedora-24 to SANITY_TESTED_DISTROS
      ece1156 maintainers.inc: add missing recipes
      2679a34 maintainers.inc: rename gtk-doc-stub to gtk-doc, reassign to me
      68e35c8 oeqa.runtime.smart: work around smart race issues
      d399134 oeqa/runtime/smart: Prune feeds to save memory
      ab3f239 gtk-doc: only depend on native gtk-doc for documentation generation
      620e2bf gtk-doc: use pkg-config-native in native gtk-doc.m4
      5041e68 gstreamer: remove packaged copy of gtk-doc.m4
      f224154 gobject-introspection: set GI_SCANNER_DISABLE_CACHE for native
      ca9ff8b distro-alias.inc: rename gtk-doc-stub to gtk-doc
      03425de clutter-1.0: do not use the prepackaged clutter.types file when generating gtk-doc
      9a8b392 pango: fix gtk-doc build when x11 is not in use
      3ed15a8 util-linux: do not enable gtk-doc and explain why
      c370dda p11-kit: enable gtk-doc
      fe14b24 libsoup-2.4: enable gtk-doc
      5c899de libtasn1: enable gtk-doc
      b41127f gnutls: enable gtk-doc
      3bea0e5 harfbuzz: enable gtk-doc
      363b298 cairo: enable gtk-doc
      fa351bc libenck3: enable gtk-doc
      ff774d0 libgudev: enable gtk-doc
      3cc2055 json-glib: enable gtk-doc
      406a9b7 gnome-desktop3: enable gtk-doc
      60604de gdk-pixbuf: enable gtk-doc
      1cfdc18 libuser: enable gtk-doc
      2d20b54 libidn: enable gtk-doc
      b240b9b orc: enable gtk-doc
      83301b4 dbus-glib: enable gtk-doc
      063f84e webkitgtk: re-enable introspection on powerpc
      38f2f51 gcr, libsecret, webkitgtk: disable gtk-doc on mips64
      d6a1027 gcr: disable gtk-doc on x86_64
      ae773d6 gtk+3: disable gtk-doc when x11 is not available
      31029c8 webkitgtk: enable gtk-doc support
      3878dac gstreamer1.0: enable gtk-doc support
      e1aad9e libglade: remove the recipe
      3a093d1 systemd: drop unused gtkdoc-related variable
      6d26601 kmod: do not let gtkdocize fail
      2167573 gtk-doc.bbclass: enable building gtk-doc based documentation
      5029d1f gtk-doc: add a recipe, remove gtk-doc-stub
      94317f5 source-highlight: add a recipe
      8c46605 oeqa: Use snapshot instead of copying the rootfs image
      0d21440 scripts/runqemu: Add snapshot support
      b2dc9c7 runqemu: Enable virtio RNG for all platforms
      eb1494f runqemu: Update to modern prefrerred net syntax
      d1cb381 runqemu: Allow unique network interface MAC addresses
      95331c6 qemurunner.py/qemutinyrunner.py: remove runqemu-internal
      b18f8a5 nativesdk-qemu-helper: fix for new runqemu
      d1303c2 runqemu: fix run from testimage with non-standard DEPLOY_DIR_IMAGE
      8a8948e runqemu: fixes for when invoked during a bitbake run
      d5d4869 runqemu: better handle running on a host with different paths
      e162303 runqemu: assume artefacts are relative to *.qemuboot.conf
      b405712 runqemu: refactor it and remove machine knowledge
      638d19a qemu.inc: inherit qemuboot.bbclass
      f9732b4 qemuppc: Use virtio networking instead of pcnet
      18c7c0d qemuppc.conf: set vars for runqemu
      09a7710 qemumips/qemumips64.conf: set vars for runqemu
      64da0d7 qemux86.conf/qemux86-64.conf: set vars for runqemu
      9b0a94c qemuarm64.conf: set vars for runqemu
      8b6e772 qemuarm.conf: set PREFERRED_VERSION_linux-yocto
      9b7614e qemuarm: Add DTB file new kernel
      90ab47c qemuarm.conf: set vars for runqemu
      605d8b1 qemuboot.bbclass: add it for runqemu
      2984863 qemu: fix: cp command cannot find tests/Makeflie
      e6c48b1 qemu: 2.6.0 -> 2.7.0
      af7ec7a parselogs: Whitelist qemux86 error message with qemu 2.7.0
      e399ca1 parselogs: Whitelist qemuppc error message with qemu 2.7.0
      f6ff037 libwebp: sepcify neon availability for arm
      4192e4b utils.bbclass: Added error checking for oe_soinstall
      e912692 utils.bbclass: Remove trailing whitespace
      3860224 watchdog-config: Add recipe
      7a79aba watchdog: Add wd_keepalive package
      f344440 linux-yocto: update LINUX_VERSION to -rc5
      649d79d kconfig-frontends: inherit pkgconfig
      0455444 kmod: inherit pkgconfig
      e292f77 x11-common: Remove Xserver script
      3b7cdff xserver-nodm-init: Deprecate /etc/X11/Xserver
      37f4b39 kernel-module-split.bbclass: no need for running depmod
      df1635e kernel-module-split.bbclass: generate dependencies across recipes
      fe90376 module.bbclass: use Module.symvers for dependants
      a296633 linux-yocto/4.4/4.8: uvesafb: provide option to specify timeout for task completion
      f14532a linux-yocto: update to 4.8-rc5
      27eacf6 kernel-yocto: restore missing configuration meta data
      50c4c79 kernel-yocto: allow --allnoconfig and --alldefconfig as KCONFIG_MODES
      81297ee kernel-yocto: restore kernel-meta data detection for SRC_URI elements
      ce4ea7a recipetool: create: avoid extra blank lines in output recipe
      ff259b0 recipetool: create: support node.js code outside of npm
      fa90c2f recipetool: create: allow license variable handling to be rerun
      b1c3e44 recipetool: create: add --keep-temp command line option
      17afc80 recipetool: create: support git submodules
      9885a9d recipetool: create: fix mapping python dependencies to python-dbg package
      4da96ce recipetool: create: AX_PKG_SWIG should add dependency on swig-native
      39d3aa2 devtool: update-recipe: support files with subdir=
      94aefd9 lib/oe/patch: handle non-UTF8 encoding when reading patches
      ead0545 bitbake: cooker: record events on cooker exit
      b22a505 bitbake: toaster: don't kill all runserver processes
      d2e7ed0 bitbake: toaster: remove handling of .toasterui.pid
      8719012 bitbake: toaster: don't kill toaster on start
      87cf84f bitbake: toaster: orm Update IMAGE_FSTYPES values
      36fe748 bitbake: toaster: keep layer name in variable history path
      8ba4f54 bitbake: toaster: Allow forward slash in variable names
      b5070f5 bitbake: toaster: layer details Fix "edit" form interaction
      23056fc bitbake: toaster: import layer Layout fixes
      c4fcf41 bitbake: toaster: layer details Layout fixes
      65e1d66 bitbake: toaster: configuration Provide machine help text
      ebc6e84 bitbake: toaster: tasks Remove recipe version from defaults
      ee7c6d0 bitbake: lib/bb/utils: edit_metadata() comment tweaks
      d67e3b4 bitbake: fetch2/npm: clarify comment
      3a0f5d9 bitbake: fetch2/npm: handle top-level shrinkwrap file
      5ab6867 bitbake: fetch2/npm: support subdir= parameter
      eb53750 bitbake: fetch2/npm: fix broken fetches if more than one npm URL fetched
      1937b17 bitbake: fetch2/npm: explicitly specify workdir
      144e7db file: build with c std as c99
      9d4fd7d apt: add PACKAGECONFIG for lz4
      98264a9 oeqa.buildperf: be sure to use the latest buildstats
      b673a56 pciutils: fix PACKAGECONFIG
      d021889 oeqa.buildperf: try harder when splitting 'nevr' string
      4594f25 webkitgtk: 2.12.4 -> 2.12.5
      f203e5b lighttpd: fix EXTRA_OECONF
      79d45bf cmake.bbclass: avoid treating imports as system includes
      23ec1fc python: recompile _sysconfigdata.py after modifying it
      d41968d systemd_230.bb: Set journal RuntimeMaxSize to 64M as default
      a477fcd busybox: avoid circular dependency when using initramfs
      b4f2c76 libcap: Replace EXTRA_OECONF with PACKAGECONFIG_CONFARGS
      f52cc8b autoconf: remove upstreamed patch
      0d92f44 libffi: backport patch to fix building MIPS soft float
      3e53ab2 gnutls: update to 3.5.3
      f7ca989 oeqa.buildperf: correct globalres time format
      1f70669 oe-build-perf-test: fix log file path
      e8e8178 selftest/liboe: add a test for copyhardlinktree()
      822c708 oe.path: fix copyhardlinktree()
      f5b4ca2 lttng-modules: Do not fail if CONFIG_TRACEPOINTS is not enabled
      7005018 lttng-modules: Bump to 6e4fc6f3 revision
      0abb1d7 rpm: ensure rpm2cpio call rpm relocation code
      92fc3ef coreutils: enable xattr for native
      b9d90ac poky: Update to linux-yocto 4.8 for qemu* machines
      6a49d3f sysstat: 11.3.5 -> 11.4.0
      91ae039 build-perf-test-wrapper.sh: fix handling of -C argument
      5f5115a ofono: RRECOMMENDS tun.ko & APN database
      fb75cd2 e2fsprogs: packaging cleanups (compile_et & mk_cmds)
      5b8206f boost: fix MIPS16e compilation
      7e712e1 boost: fix mips soft float compilation
      02d82ea boost: fix a musl compilation warning
      d7268e9 valgrind: Disable for MIPS Soft Float
      8edb53c packagegroup: Disable packages not available on mipsel
      88b99a4 packagegroup-core-sdk: Disable sanitizers for mipsel
      ed8ecea linux-yocto/4.1: backport virtio HW_RANDOM_VIRTIO config
      42e2b97 oeqa/parselogs: Add qemuarm64 warning from 4.8 kernel to whitelist
      d9c2c02 oeqa/parselogs/qemuarm: Whitelist amba and jitter for 4.8+ kernels
      8078c5e cryptodev: Add backported patches for 4.6+ kernels
      223eb65 linux-yocto/4.x: configuration updates
      d152840 kernel-yocto: do_kernel_configme: Fix silent sysroot poisoning error
      5ea48fa kernel-yocto: test for empty artifacts
      942e2af linux-yocto/4.8: add qemuarm device tree specification
      98d57df linux-libc-headers: Refresh musl patches against newer kernel headers version
      ab338be libc-headers: update to v4.8
      5cb0f38 linux-yocto-dev: bump to v4.8+
      6298912 perf: adapt to Makefile.config
      4d1a124 linux-yocto: introduce v4.8 recipes
      9428b19 toaster: fire TaskArtifacts event
      25c4677 buildtools-tarball/uninative-tarball: Fix for working with populate_sdk under sstate control
      e1de696 populate_sdk_ext: Put populate_sdk_ext under sstate control
      3c3962d populate_sdk_base: Put populate_sdk under sstate control
      bc31120 sstate: Avoid duplicate README file errors for sdk under sstate control
      def3485 image.bbclass: Put image_complete under sstate control
      5f9889e populate_sdk_base: Deploy images to SDKDEPLOYDIR
      9cc4492 image: Deploy images to IMGDEPLOYDIR
      619d299 image/populate_sdk_base: Add *DEPLOYDIR variables
      51afd45 arch-mips.inc: Disable QEMU usermode usage when building with n32 ABI
      08acf58 busybox: fix "sed n (flushes pattern space, terminates early)" testcase failure
      104eb57 kernel.bbclass: include signing keys when copying files required for module builds
      0e38688 oeqa/selftest Adds eSDK test cases to devtool verification.
      1da953d /oeqa/sdkext Adds verification for devtool on eSDK.
      e616beb scripts: ensure tinfoil is shut down correctly
      f2854c6 gcc-runtime.inc: add CPP support for mips64-n32 tune
      c93ee72 kernel.bbclass: add user output to savedefconfig
      34d0cf3 Fix out of tree builds of u-boot with gold linker
      180eebf sstate.bbclass: skip packaging if SSTATE_SKIP_CREATION is set
      ea1d3ff initscripts: Start devpts at 06 instead of 38
      eda43ca lighttpd: control ipv6 support based on DISTRO_FEATURES
      beda03b xhost: control ipv6 support based on DISTRO_FEATURES
      c8f383a xauth: control ipv6 support based on DISTRO_FEATURES
      c0ea54d wget: control ipv6 support based on DISTRO_FEATURES
      4d0ab9c rsync: control ipv6 support based on DISTRO_FEATURES
      cc3c028 rsync: use rsync.inc to avoid duplicated codes
      7e157da pulseaudio: control ipv6 support based on DISTRO_FEATURES
      d529fe5 psmisc: control ipv6 support based on DISTRO_FEATURES
      ae139c6 nspr: control ipv6 support based on DISTRO_FEATURES
      0dbd6e4 nfs-utils: control ipv6 support based on DISTRO_FEATURES
      d4d2441 libxmu: control ipv6 support based on DISTRO_FEATURES
      75f86b4 libxml2: control ipv6 support based on DISTRO_FEATURES
      68e3f3f libxfont: control ipv6 support based on DISTRO_FEATURES
      c1716f6 libsm: control ipv6 support based on DISTRO_FEATURES
      3366467 libpcap: control ipv6 support based on DISTRO_FEATURES
      92ce5fe libice: control ipv6 support based on DISTRO_FEATURES
      2e478ff apr: control ipv6 support based on DISTRO_FEATURES
      4a5aa7e scripts/contrib: update scripts for changes to internal API
      1100af9 base-files: Add shell test quoting
      c95af9c meta-ide-support: inherit nopackages
      bacb105 flex: fix gcc-6 failure
      fef13d8 gstreamer1.0-plugins-bad: add packageconfig for egl
      4b43874 lib/oe/patch: commit with a dummy user/email when PATCHTOOL=git
      e5f61f8 oe-selftest: devtool: fix test after recent change
      bf1954c glibc-scripts: add RDEPENDS on libsotruss package required by sotruss script
      71ffc92 webkitgtk: fix racy double build of WebKit2-4.0.gir
      390d959 webkitgtk: upgrade to 2.12.4
      c25d5ba asciidoc: fix upstream version check
      1429d9d oeqa.selftest.liboe: add test for xattr in copytree
      92f9308 oe.path: preserve xattr in copytree() and copyhardlinktree()
      97677c1 oeqa.selftest: add a test for oe.path.copytree()
      74d0a3d ltp: remove useless script STPfailure_report.pl
      7d77c02 oeqa.buildperf: include commands log file name in results.json
      c39db4b oeqa.buildperf: include buildstats file name in results.json
      c5d1301 oeqa.buildperf: show skipped tests in results, too
      81b8ccc oeqa.buildperf: convert buildstats into json format
      f1fb013 oeqa.buildperf: measure io stat
      0b33203 oeqa.buildperf: don't use Gnu time
      33a38bc oeqa.buildperf: rename buildstats directories
      6d75f39 oeqa.buildperf: separate output dir for each test
      700ebe9 oeqa.buildperf: strip date from buildstats directory path
      35ae939 oe-build-perf-test: rename log file and implement --log-file
      e8c47a6 oeqa.buildperf: enable json-formatted results
      4418893 oeqa.buildperf: add 'product' to test result data
      e16f008 oe-build-perf-test: update globalres and git even if tests failed
      899b174 oeqa.buildperf: treat failed measurements as errors
      85b7b10 oeqa.buildperf: make tests independent
      6722b04 oeqa.buildperf: fix checking of invalid results
      40d8bef x264: remove EXTRA_OEMAKE workaround
      b8b1edb systemtap: remove EXTRA_OEMAKE workaround
      06415ab linux-libc-headers: remove EXTRA_OEMAKE workaround
      2044c88 lsof: remove EXTRA_OEMAKE workaround
      8ddb47b musl: remove EXTRA_OEMAKE workaround
      270d6dd ifupdown: remove EXTRA_OEMAKE workaround
      a267015 kernel.bbclass: remove EXTRA_OEMAKE workaround
      d5b602c distutils-common-base.bbclass: remove EXTRA_OEMAKE workaround
      734a49b autotools.bbclass: remove EXTRA_OEMAKE workaround
      5686645 lttng-modules: Update 2.7.3 -> 2.8.0+master
      c015522 lttng-tools: Add PACKAGECONFIG for manpages
      e0acc0b lttng-tools: Update 2.7.1 -> 2.8.1
      8f0ca9c lttng-ust: Update 2.7.1 -> 2.8.1
      b0e7288 libyaml: update to 0.1.7
      c32ce592 ffmpeg: update to 3.1.3
      acc113c iso-codes: update to 3.70
      0d755c6 gstreamer1.0: upgrade to 1.8.3
      bc42617 sqlite3: upgrade to 3.14.1
      8dcb8da base, autotools: Append PACKAGECONFIG_CONFARGS to EXTRA_OECONF only in autotools.bbclass
      f7d8025 unzip: fixes strange output
      c27e23c nss: update to 3.25
      b1da441 mpg123: update to 1.23.6
      7bb1907 lighttpd: update to 1.4.41
      16fae9f gobject-introspection: odd versions are development snapshots
      9587685 ffmpeg: update to 3.1.2
      190895d bdwgc: Add missing include to avoid musl build failures
      bd02a38 bdwgc: update to 7.6.0
      32ac934 bash-completion: update to 2.4
      31eadec iso-codes: upgrade to 3.69
      673c007 btrfs-tools: update to 4.7.1
      e5b80ab libwebp: upgrade to 0.5.1
      ff0ebe9 libnl: fix RREPLACES and RCONFLICTS for libnl-genl
      75610e2 libnl: backport musl fix (strerror_r / strerror_l)
      126c4b2 libnl: update to v3.2.28
      d1c566f libnl: fix packaging mistakes
      5dcb2a1 image_types: check COMPRESS_DEPENDS for backwards compatibility
      f2f177c bitbake: bb.fetch2.svn: correctly pass workdir when fetching
      355e4ec bitbake: cooker.py: Catch when stdout doesn't have a file descriptor
      de83a8a bitbake: toaster: localhostbecontroller Remove git assumption
      ce592fc bitbake: toaster: Allow git information to be null for BRLayer
      4daae79 bitbake: toaster: tests Add selenium test layer source switching layer details page
      2318f92 bitbake: toaster: Move Custom image recipe rest api to api file
      3b87f28 bitbake: toaster: Fix oe-core fixture
      50a8d3a bitbake: toaster: layerdetails clean ups after integrating local layer changes
      e99b4cd bitbake: toaster: update api to include local_source_dir
      fa48ca6 bitbake: toaster: layerdetails js changes for switching layers
      d9b5d11 bitbake: toaster: add switch of git and not-git layers imported
      d2797b5 bitbake: buildinfohelper: discover kernel artifacts correctly
      46bad46 bitbake: wget: allow basic http auth for SSTATE_MIRRORS
      3658f6d bitbake: cookerdata/ast: Fail gracefully if event handler function is not found
      412a26e bitbake: build/runqueue: Add noextra stamp file parameter to fix multiconfig builds
      e7b2b7d bitbake: fetch2: Handle multiconfig fetcher issues
      26aad57 bitbake: tinfoil: add a parse_recipe_file function
      818a365 bitbake: cache: allow parsing a recipe with a custom config datastore
      f551e67 bitbake: bitbake-diffsigs/bitbake-layers: Ensure tinfoil is shut down correctly
      8f277fc bitbake: tinfoil: add context manager functions
      2f33bb3 bitbake: bitbake-user-manual: Added "Exporting Variables to the Environment"
      9b20975 bitbake: bitbake-user-manual: Corrected misspelled STAMPS_DIR
      087c580 init-install: Fixes the install script failing when not finding any mmcblk devices
      2fedd22 ref-manual: Fixed small wording in PKGR in the glossary
      3b70c96 ref-manual: Replaced "bitbake-dumpsigs" with "bitbake-dumpsig".
      08e3ef9 ref-manual: Updates to PKGV, PKGE, and PKGR.
      9ba4fc0 dev-manual, ref-manual: Systemd-boot: Update documents for new EFI bootloader
      ac0fa7a ref-manual: Added bitbake.conf to list of example conf files
      1769e1a ref-manual: Suggested fleshing out of the sigdata/siginfo documentation
      a2e8f19 ref-manual: Updated some variables in the glossary for nits.
      b9df28b sdk-manual: Added developer note for updating to Neon
      eb7781f sdk-manual: Updated boxes to check when installing pre-built mars yp plug-in
      3a5397d sdk-manual: Removed "snapshot" in an example version string.
      4d1e642 sdk-manual: Added note to link to the wiki on building an SDK
      4bdd0cf sdk-manual: Added an example name for an extensible SDK
      5393fd7 sdk-manual: Fixed a broken "do_install" task link
      0d4510e sdk-manual: Fixed a broken link to the "base" class
      3c77e18 sdk-manual: "Linkified" the CC variable in section 3.3.4
      9359c10 sdk-manual: Grammar fix.
      e990bce sdk-manual: Updated the extensible SDK installer example
      66ca0c4 sdk-manual: Re-worded Step 6 for deploying image in eclipse flow.
      7bbaab7 sdk-manual: Added note about building the image for QEMU use
      151a129 sdk-manual: Removed bad link
      766e91f sdk-manual: Provided better wording to intro running sdk env script.
      4e0a0d1 sdk-manual: Added note about building and SDK
      99d43e6 sdk-manual: Used &DISTRO; for some output release versions.
      4d5dc4a sdk-manual: Created new Mars Eclipse appendix
      a3f519e core-image-kernel-dev.bb: Standardize use of _append and leading space.
      3ae2eef linux-firmware: set a preferred provider for brcmfmac-sdio.bin
      051d7aa groff: correct the location path for awk
      8232ce2 perl: Correct perl path for ptest
      fb12fe9 lsbinitscripts: 9.64 -> 9.68
      5bd1a35 systemd: split systemd-container
      d45a344 rootfs.py: allow removal of unneeded packages
      31982f1 unfs3: Simplify simultaneous usage of "_append" and "+="
      96e68f1 build-perf-test-wrapper.sh: make workdir configurable
      ee4c5f6 build-perf-test-wrapper.sh: make archive dir configurable
      a34fd3c build-perf-test-wrapper.sh: allow saving results in Git
      dc30252 build-perf-test-wrapper.sh: parse args with getopts
      7155a9b oe-build-perf-test: add {git_commit_count} keyword for --commit-results-tag
      d0bac25 oeqa.buildperf: add git commit count to result data
      caf6ad8 oe-build-perf-test: new {tag_num} keyword for --commit-results-tag
      06b2c75 oe-build-perf-test: tag results committed to Git
      28333b3 oe-build-perf-test: pre-check Git repo when using --commit-results
      6d9c52f oeqa.utils.git: implement init() method
      96e8337 oe-build-perf-test: implement --commit-results-branch
      8335422 oe-build-perf-test: support committing results data to Git
      66540ae oeqa.buildperf: use term commit instead of revision
      979c735 oeqa.utils.git.GitRepo: new arg to require topdir
      618a2ed oeqa.utils.git: implement GitRepo.get_current_branch()
      6cf7464 oeqa.utils.git: introduce GitRepo.rev_parse()
      7fcc9f5 oeqa.utils.git: support git commands with updated env
      665800f oe-build-perf-test: use absolute paths in cmdline args
      c284616 oe-build-perf-test: implement --run-tests option
      e484378 python-3.5-manifest: Add argparse module
      4c184eb python-3.5-manifest: Rename Queue module to queue
      c1f4bef useradd.bblass: Simplify target overrides
      9b6bc21 gcc: Update to final 6.2.0 release
      f5ccefd piglit: Add python3-argparse module to RDEPENDS
      07ebdbe devtool: build_image: Fix recipe filter
      d97aaac devtool: Use the wildcard flag in update_recipe_patch
      3656481 nasm: 2.11.08 -> 2.12.02
      5a35913 subversion: 1.9.3 -> 1.9.4
      713b2e5 git: 2.9.2 -> 2.9.3
      5bd808b systemd-compat-units: do not inherit allarch
      bf23d4f bash-completion: add bash-completion to DEPENDS for target packages
      ba736a3 utils: check_app_exists: strip whitespace from binary when searching
      8670979 oeqa/runtime/rpm: use su instead of sudo
      578f811 layer.conf: remove pointercal
      9228f75 distro_alias.inc: remove xtscal, pointercal and tslib references
      e373c7c pointercal: remove recipe
      e389a96 tslib: remove recipe
      d2531ac xtscal: remove recipe
      23b11c2 packagegroup-core-x11-base.bb: remove pointercal
      be554d7 x11-common: replace xtscal with xinput-calibrator
      19214ae packagegroup-core-tools-testapps: remove tslib references
      4f31b12 pointercal-xinput: add a dummy calibration file for qemu
      3e97690 parselogs: Ignore uvesafb timeouts
      e1ab839 image_types: use COMPRESSIONTYPES variable for backward compatibility
      ffcc52e hdparm: set LICENSE correctly
      988f77a license: simple verification of LICENSE_<pkg> values
      831e983 license.bbclass: do not process LICENSE_pn variables
      c222936 bitbake: fetch2: clean up remaining cwd saves/changes
      970ff6c linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.4
      5d23bac linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.1
      a81b326 combo-layer: python3: fix UnicodeDecodeError
      94646f4 oeqa/buildiptables: Switch from netfilter.org to yoctoproject.org mirror
      7e4d206 xserver-xf86-config: pre-load int10 and exa modules
      7afa09d cmake.bbclass: call cmake with a relative path
      5a3947c openssh: Upgrade 7.2p2 -> 7.3p1
      2b7541d wayland-protocols: 1.5 -> 1.7
      a850ba3 libinput: Upgrade 1.3.0 -> 1.4.1
      86884f6 json-glib: Upgrade 1.2.0 -> 1.2.2
      5818fec vte: Upgrade 0.44.1 -> 0.44.2
      08d8afe gtk+3: Upgrade 3.20.6 -> 3.20.9
      c0dcc5d gnome-themes-standard: Upgrade 3.18.0 -> 3.20.2
      69d8707 fontconfig: Upgrade 2.12.0 -> 2.12.1
      624597d libgcrypt: upgrade to 1.7.3
      1a62096 rm_work: don't remove timestamps of image tasks
      fd23044 python-3.5-manifest.inc: the signal module RDEPENDS on enum
      19b2f7c libidn: 1.32 -> 1.33
      e8168a5 useradd_base: avoid unintended expansion for useradd parameters
      05c3022 xorg-proto: remove stale git recipes
      bef6e62 inputproto: explicitly disable asciidoc to avoid floating dependency
      053bafd gettext_0.16.1: whitespace changes to align with v0.19.8.1
      5acf2f6 gettext_0.16.1: align configure options with v0.19.8.1 recipe
      dff0cb4 gettext_0.16.1: fix lispdir configure option
      bb96b16 gettext_0.16.1: use musl gettext implementation
      edec1c4 insane: improve package_qa_clean_path
      8616440 grub: fix load module all_video failed
      ddaf84c bash: fix run-intl ptest failed
      0db6b0f bootchart2: fixes a BOOTLOG_DEST typo
      f0213bb adwaita-icon-theme: 3.18.0 -> 3.20
      0d44584 initscripts: Check for logrotate in dmesg.sh
      4945cdf python3-native: Extend python3-native rproviders
      cf0e3d0 python3-native: Change code style for rprovides
      9e4e6b9 grub-efi.bbclass: Fix path in startup.nsh for iso image.
      63ac352 glibc: Fix scope resolution in glibc to be breadth first.
      1bb1200 linux-yocto/4.4: fix configuration warnings
      4b80b34 linux-yocto/4.1/4.4: -stable updates and configuration changes
      7b97f59 maintainers.inc: update maintainers for Dengke
      f078ccf bitbake: siggen: Fix file variable typo in compare_sigfiles
      ab09541 bitbake: fetch2: preserve current working directory
      eefb4b6 bitbake: dump_cache.py: use python3 as interpreter
      9d09624 bitbake: toasterui, knotty: don't print taskid followed by taskstring which are now in most cases identical
      0b40911 bitbake: tests: add unit tests for the usehead url parameter
      c04468d bitbake: git: Allow local repos to use HEAD
      4093f0b bitbake: bitbake-selftest: enable bitbake logging to stdout
      9cce855 bitbake: bitbake-selftest: introduce BB_TMPDIR_NOCLEAN
      81697a8 bitbake: bitbake-selftest: add help text for env variable(s)
      9139d75 bitbake: bitbake-selftest: utilize unittest.main better
      5471b2c Revert "local.conf.sample: Disable ARM and PPC due to prelink test case failures"
      aaca17d packagefeed-stability.bbclass: cleansstate should remove pkgs from deploy dir
      bc31551 libdrm: 2.4.68 -> 2.4.70
      a2f9420 glib-2.0: 2.48.1 -> 2.48.2
      e7ec6cf kbd: remove PARALLEL_MAKEINST = ""
      1e211f3 kmod: upgrade to 23
      a65de2b diffutils: upgrade to 3.4
      c80af16 util-linux: upgrade to 2.28.1
      e22daba bootchart2: Add ALTERNATIVE configuration for bootchartd
      0c9f39c asciidoc-native: add dependency on docbook-xml-dtd4-native
      fe4e56b openssl: fix add missing dependencies building for test directory
      cd3c558 libffi: fix a typo (mips)
      27c0e2f image-vm.bbclass: remove old images if RM_OLD_IMAGE is enabled
      9cabc18 oeqa.buildperf: fix crash when creating globalres.log
      b26c43c oe-build-perf-test: align log message format with testrunner output
      f019bb9 syslinux.bbclass: ensure creation of output directory
      f755bab busybox: Add parallel make fix
      7283c14 sanity.bbclass: Ensure we expand BUILD_PREFIX
      f038f06 local.conf.sample: Disable ARM and PPC due to prelink test case failures
      63dcfa8 Revert "local.conf.sample: Disable prelink by default"
      fc16cfc prelink: Move to latest version of prelink
      b7157a2 gcc: Upgrade to 6.2 RC1
      b360310 libunwind: Fix build race conflict with gcc and musl
      c666836 ref-manual: swabber: remove from documentation
      bfd0850 ref-manual: Update SERIAL_CONSOLES_CHECK description
      dfb899d ref-manual: change SYSLINUX_ROOT to ROOT_VM for DISK_SIGNATURE variable
      f1d2a93 ref-manual: Applied review edits to "Viewing Dependencies"
      b249c8d ref-manual: Removed the "pid" stuff from viewing failed tasks
      feda248 ref-manual: Various small corrections to package-related stuff
      f82a657 ref-manual: Updated the "Viewing Logs from Failed Tasks" section.
      3db5ff6 ref-manual: Updated the section on viewing dependencies
      1a1fc42 ref-manual: Clarify and flesh out debugging using bitbake -e
      813be27 dev-manual: Added a new "known issue" for running qemu.
      72ebd62 ref-manual: Updated PROVIDES and FILES variable descriptions
      5337ac9 ref-manual: Updated the SERIAL_CONSOLES_CHECK variable description.
      efb6266 ref-manual: Changed the BPN variable description.
      df33765 ref-manual: Updates to PARALLEL_MAKE, PARALLEL_MAKEINST, EXTRA_OEMAKE
      836b80c ref-manual: Added note to PROVIDES variable description.
      b88973f ref-manual: New "Fakeroot and Pseudo" section.
      c78c500 ref-manual: Added new variable description EXTRANATIVEPATH.
      9576ddc ref-manual: Applied review changes to INITRAMF_IMAGE variable.
      2996779 ref-manual: Updated the INITRAMFS_IMAGE_BUNDLE variable description.
      31b06fe ref-manual: Updated the do_compile task section.
      85ce753 ref-manual: Updates to INITRAMFS_IMAGE and INITRAMFS_FSTYPES
      4fc256d ref-manual: Updated the INITRAMFS_FSTYPES variable.
      ffdba3f ref-manual: Updated the INITRAMFS_IMAGE variable.
      dfd845a ref-manual: Updated the PROVIDES variable description.
      70ccc66 systemd-compat-units: Only enable for systemd in DISTRO_FEATURES
      bcc8b87 systemd-compat-units: pkg_postinst() does not work
      6c24a64 sanity: Require bitbake 1.31.1 for multi-config changes
      189371f devtool/recipetool/meta: Adapt to bitbake API changes for multi-configuration builds
      8b35b03 bitbake: bitbake: Update version to 1.31.1
      218b81a bitbake: bitbake: Initial multi-config support
      fac16ff bitbake: siggen: properly close files rather than opening them inline
      0eb6d70 bitbake: ast/ConfHandler: Add a syntax to clear variable
      b50b14e bitbake: cache: Build datastores from databuilder object
      b176189 bitbake: cache: Split Cache() into a NoCache() parent object
      e79550e bitbake: cache/cooker: Pass databuilder into bb.cache.Cache()
      97ce912 bitbake: cache: Make virtualfn2realfn/realfn2virtual standalone functions
      4cd5647 bitbake: cache/ast: Move __VARIANTS handling to parse cache function
      0ef16f0 bitbake: runqueue: Abstract worker functionality to an object/array
      2496869 bitbake: cookerdata: Simplify prefiles/postfiles
      3be73dc yocto-bsp/yocto-kernel: update to work with the latest kern-tools
      26b0657 parselogs: Ignore amb_nb warning messages under qemux86*
      56e53db parselogs.py: Add failed to setup card detect gpio error on x86
      a9b2c9d parselogs.py: Add dmi and ioremap errors to ignore list for core2
      e290a83 parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64
      f479e38 testimage: allow using kvm when running qemux86* machines
      ff3a455 image.bbclass: rename COMPRESS(ION) to CONVERSION
      10e44fe grub: split grub-editenv into it's own package
      2973bc2 bash: 4.3.39 -> 4.3.46
      f4ad606 openssh: add ed25519 host key location to read-only sshd config
      e27bfac connman: add missing space in _append
      5ef0620 kernel-yocto: streamline patch, configuration and audit phases
      028e133 linux-yocto/4.4: -rt update patch meta-data to remove ()
      93ea3a5 linux-yocto/4.1: config updates
      cb63dd1 linux-yocto/4.1: bump to v4.1.29
      e7c6817 linux-yocto/4.1: netfilter: x_tables: fix stable backport
      b6af219 dbus: 1.10.8 -> 1.10.10
      d3d395b busybox: Backport makefile fix from upstream
      d37837a gobject-introspection: Ensure prelink config file exists to avoid build failures
      180a77c alsa-utils: 1.1.1 -> 1.1.2
      400e262 alsa-lib: 1.1.1 -> 1.1.2
      9800b4d oeqa.buildperf: use oe.path.remove()
      51970d1 oeqa.buildperf: be more verbose about failed commands
      818d4c2 oe-build-perf-test: simplify stderr log format
      5039a91 oe-build-perf-test: set-up file logging as early as possible
      74820e9 oe-build-perf-test: suppress logger output when tests are being run
      d82a795 oeqa.buildperf: introduce runCmd2()
      f4128f0 oe-build-perf-test: use new unittest based framework
      979be84 oeqa.buildperf: convert test cases to unittest
      09b9a4a oeqa.buildperf: add BuildPerfTestResult class
      3acf648 oeqa.buildperf: add BuildPerfTestLoader class
      3f519df oeqa.buildperf: derive BuildPerfTestCase class from unitest.TestCase
      daee755 oeqa.buildperf: rename module containing basic tests
      6203a77 buildperf: Add support for times without decimal part
      a191285 lib/oeqa/selftest/bbtests: don't report expected failures
      dde033a oeqa/runtime/syslog.py: Improve test_syslog_logger on systemd
      0cff756 python3.5-manifest: Fixes several dependencies on the newest python3
      cd20d76 ncurses: upgrade to 6.0+20160625
      205418f gnupg: upgrade to 2.1.14
      8ce7bc3 man-pages: upgrade to 4.07
      b2e6ac6 python3-git: Fixes dependencies, avoiding to install python3-misc
      97ddbc8 python3-gitdb: Fixes zlib missing dependency
      cae5c74 gmp: Fix wrong detection of -march flag
      a56f14e graph-tool: update to new networkx API, be iterative
      a1f39e5 python-3.5-manifest: Add some missing RDEPENDS
      a84bfd8 libpng: update 1.6.23 -> 1.6.24
      b66ec0f libtasn1: Backport compiler warning fixes
      af96bed ffmpeg: Pas CC and CXX to configure
      c0ea62e curl: upgrade to 7.50.1
      bba1b91 Use PYTHON_SITEPACKAGES_DIR insted of hard-coded *site-packages*
      92f505b init-install*: /etc/mtab make a link rather than a copy
      caaff71 npm: npm.bbclass now adds nodejs to RDEPENDS
      322435b iproute2: update 4.6.0 -> 4.7.0
      aa1b6cb sqlite3: update 3.13.0 -> 3.14.0
      0b8ddf5 perl-native: backport libnm link fix
      a6b26f8 xinput-calibrator: remove bash dependency
      99d109c classes/populate_sdk_ext: drop duplicated error message
      64ffbd4 classes/populate_sdk_ext: add some pre-install checks
      cea1632 toolchain-shar-extract.sh: add option to list contents
      7cd213d classes/populate_sdk_ext: properly determine buildtools filename
      5895bb6 classes/populate_sdk_ext: properly handle buildtools install failure
      7df442c lib/oe/copy_buildsystem: fix merging sstate directories for eSDK
      37b8196 classes/populate_sdk_ext: sstate filtering fixes
      53b7935 classes/populate_sdk_ext: handle lack of uninative when filtering sstate
      cdd2460 classes/populate_sdk_ext: ensure eSDK can build without uninative enabled
      0a78f98 gen-lockedsig-cache: ensure symlinks are dereferenced
      65ff9f5 oe-buildenv-internal: hint at specifying bitbake path in error message
      eea2de9 ccache.bbclass: don't remove CCACHE_DIR as part of do_clean
      51d74f5 systemd: fix typo in avoid-using-system-auth.patch
      993bfb5 init-install*: only pick root mmc devices
      4b9c75a sanity.bbclass: Only verify /bin/sh link if it's a link
      9375b7e tiff: Security fix CVE-2016-5323
      1b03beb tiff: Security fix CVE-2016-5321
      b762eb9 tiff: Security fix CVE-2016-3186
      ecb7e52 tiff: Security fix CVE-2015-8784
      dc75fc9 tiff: Security fix CVE-2015-8781
      955d6cb e2fsprogs: Fix missing check for permission denied.
      df6694b initrdscripts/init-install*: Add rootwait when installing to USB devices
      08a5471 u-boot.inc: Enable out-of-tree builds
      23afc33 dropbear/init: Allow extra arguments for key generation
      4f9ddb6 initramfs-live-boot: Make sure we kill udev before switching root when live booting
      7debab3 cross-canadian.bbclass: Add BASECANADIANEXTRAOS to specify main extraos
      310d860 security_flags.inc: enable PIE for a few recipes
      896f1c7 oeqa/oetest: Improve subprocess error reporting
      a18e3c9 report-error: Fix tracebacks
      fbc144d uninative: Update to 1.3
      96a861e bitbake: bitbake-user-manual: Re-write "Dependencies Internal to the .bb File"
      cbf8516 bitbake: bitbake-user-manual: Added setting variable for a single task
      277a5a9 bitbake: bitbake-user-manual: Added more detail to anonymous Python functions.
      3a1ae38 bitbake: bitbake-user-manual: Formatted all "flags" to be consistent
      50d7813 bitbake: bitbake-user-manual: Added detail to [dirs] and [cleardirs] flags
      500ebdd bitbake: bb/utils.py: export_proxies add GIT_PROXY_COMMAND
      8a45291 bitbake: knotty: don't show number of running tasks in quiet mode
      ea08000 bitbake: knotty: fix task progress bar not starting at 0%
      1b6f701 bitbake: runqueue: fix two minor issues with the initialising tasks progress
      407ba77 bitbake: lib/bb/tests/fetch: remove URL that doesn't exist anymore
      40b655d bitbake: toaster: update web urls for openembedded-core's special case
      6b66e93 Allow for simultaneous do_rootfs tasks with rpm
      d11e8e1 systemd_boot: Enable module to test systemd bootloader
      2c043e3 Revert "systemd_boot: Enable module to test systemd bootloader"
      e274a51 bitbake: toaster: buildinfohelper Add handling local layers (i.e. non-git) layers
      4ac57fb bitbake: toaster: bldcontrol model BRLayer Add corresponding local_source_dir
      cb5ed74 bitbake: toaster: adapt xhr_import_layer test locally imported layer
      5827ae0 bitbake: toaster: update build configuration page
      f5acb42 bitbake: toaster: update recipe details page
      875770d bitbake: toaster: update package detail page
      3a50399 bitbake: toaster: updte build tables for locally imported layers
      186320f bitbake: toaster: update the tables information
      ef617e6 bitbake: toaster: collect details for local dir imported from ui
      8cad519 bitbake: toaster: add local_source_dir field to model
      494eae3 bitbake: toaster: add local directory to the db
      b3fa98d bitbake: toaster: improve the display when local dir is added
      331c1c6 bitbake: toaster: update css file for layer import
      42d3a41 bitbake: toaster: add local_source_dir to the needed_fields
      836f332 bitbake: toaster: control the selection of git and local repo
      c2c58a1 bitbake: toaster: add import of local directory to UI
      953ba7a bitbake: toaster: fix unhandled exception
      f6261da bitbake: toasterui: ensure that the Build object is always available
      f17ab95 bitbake: toaster-tests: add test for showing self-dependent task
      98ef970 bitbake: toaster: prevent infinite loop when finding task dependencies
      2ff892d bitbake: toaster-tests: add tests for reverting to default sort
      dd78459 bitbake: toaster: reset table to default orderby when orderby column is hidden
      01c8496 bitbake: toaster: show loading spinner after creating custom image
      6172fb1 bitbake: toaster-tests: fix erroneous message when test fails
      cf0b07c bitbake: toaster-tests: add tests for most recent builds state changes
      36f71db bitbake: toaster-tests: add tests for build dashboard menu and summary visibility
      504a858 bitbake: toaster-tests: add tests for build time links in the all builds page
      2d80b90 bitbake: toaster: adjust build dashboard for failed builds
      e387a7a bitbake: toaster: add started property to Build
      dce5037 bitbake: toaster: remove links from time field on failed builds
      9ed45f7 bitbake: toaster: tweak styling and typos in recent builds area
      82d998d bitbake: toaster: show "Tasks starting..." until the first task completes
      dd99cf9 bitbake: toaster: show progress of recipe parsing in recent builds area
      952ffb3 bitbake: toaster: move most recent builds templating to client
      c471740 bitbake: cooker: add BuildInit event
      f4e65d1 bitbake: toaster: fixtures Add README
      71f553b bitbake: toaster: Remove old toaster config loading mechanism
      4903982 bitbake: toaster: lsupdates Add spinner for parsing/http fetch
      33a4006 bitbake: toaster: checksettings call django's loaddata instead of custom command
      72fa18f bitbake: toaster: Add poky and openembedded configuration fixtures
      a1629a2 bitbake: toaster: tests test_new_project_page Catch button not enabled exception
      cae9e6f bitbake: toaster: --help now returns 0 instead of 1
      5d1d177 bitbake: siggen: Fix typo
      9381793 bitbake: fetch2/gitannex.py: use 'git annex init' instead of 'git annex sync'
      82da1e6 bitbake: persist_data: Fix py3 update stack overflow
      12c8a50 maintainers.inc: add recently added recipes
      33b0128 linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.4
      4534741 linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.1
      dd53025 poky: update supported distros
      a6630c2 bitbake: fetch: Fix use of tar's --exclude option for tar >= 1.29
      87cb470 dbus: backport stdint.h build fix
      5aca5bc base-files: restrict resize to run on serial consoles only in profile │·
      b6ecbee libunwind: Do not use gold for linking
      e0ad5a9 webkitgtk: Disable gold for mips/mips64
      ad79a89 connman: clean up musl fixes
      fc08ecf connman: disable version-scripts to fix crashes at startup
      3ac3f3f oeqa: start() add remaining args SimpleRemoteTarget and QemuTinyRunner
      4a4a24f busybox: Fix busybox-init on non-tty consoles
      b51959e uboot-sign: do_concat_dtb(): cd to $B
      c1a6945 uboot-sign: Handle .rom signing the same as .img
      749d777 kernel-fitimage: Add x86 support
      ec755d2 kernel-fitimage: add initramfs support
      3153bd3 kernel-fitimage.bbclass: do_assemble_fitimage(): cd to $B
      d90eaa8 linux-dtb.inc: Support for .dtbo files for dtb overlays
      a960d9b packagefeed-stability.bbclass: fix multilib + rpm
      ce8e654 runqemu: qemuzynqmp: Add Linux boot support
      6f2fa0a package: correct subprocess.Popen.communicate() return values
      b30aeb3 chrpath: correct subprocess.Popen.communicate() return values
      a48fea2 license: improve handling of license files with identical basenames
      da72327 sysvinit-inittab_2.88dsf.bb: Allow aliasing with SERIAL_CONSOLES_CHECK
      95403e3 buildhistory: output package variables in a repeatable order
      7b33b23 nettle: update LICENSE info for version 2.7.1
      2be5ee7 gst-player: update the callback for delete-event
      aca6dae dpkg: Avoid automatic target architecture detection
      0e421c9 ca-certificates: remove -- separator
      309a6e0 world-broken: Add libunwind for musl/arm
      6d84986 strace: Fix build with mips/mips64 on musl
      feb125e oeqa/utils/httpserver.py: HTTPServer enable thread connection handling
      262c81e quilt/acl/attc/sed: Fix use of tar's --exclude option for tar >= 1.29
      1f00fa1 alsa-utils: fix installed-vs-shipped for bat
      50c23e6 openssl: fix add missing `make depend` command before `make` library
      17d728d terminal: Add sleep in pid-monitor loop
      ce1cf85 consolekit: don't ship /var/log/ConsoleKit
      7633b81 package.bbclass: warn about files under symlinked directories
      961b526 package.bbclass: better handling of middle-path dir symlinks
      416c4bc util-linux: make prlimit a separate package
      07d9c3a lzo: update ptest output format
      9ec7cef oeqa/selftest: disable report-error class when builds are expected to fail
      b26e09b pseudo: Add nobody user and group
      b192bc0 python3: Upgrade from 3.5.1 to 3.5.2
      3ab991b python3-native: Upgrade from 3.5.1 to 3.5.2
      adf4266 python: upgrade from 2.7.11 to 2.7.12
      db95088 python-native: Upgrade from 2.7.11 to 2.7.12
      909e212 python-smartpm_git.bb: Add patch for debugging random errors
      1650f67 libevent: update ptests fail condition
      8efd482 package.bbclass: remove unneeded chmod() and chown()
      591bd6b libgcrypt: upgrade to 1.7.2
      f157570 procps: upgrade to 3.3.12
      69735b9 curl: upgrade to 7.50.0
      a4f0ae1 kernel.bbclass: add lzop dependency
      3b064be piglit: fix build failure with gold linker
      3e97d19 matchbox-panel-2: remove dangling patch
      49b4df1 matchbox-desktop: remove dangling patch
      2b8dd4c alsa-utils: remove dangling patch
      cb188dc python-numpy: remove dangling patch
      fe5f80b guile: remove dangling patch
      8b88df3 openssl: remove dangling patch
      f389433 gstreamer1.0-plugins-bad: remove two dangling patches
      77e5a89 autotools.bbclass: remove intltool.m4 from ${S}
      63cb0ee autotools: move aclocal-copy to WORKDIR
      e1081f4 intltool: bump serial for aclocal --install
      c5af754 yocto-uninative: bump to uninative tarball version 1.2
      88a3d76 meta/classes: fix bb.build.FuncFailed typos
      30ab044 binutils: Bump to 2.27
      26c6b10 apt: Fix build in musl it was break due to upgrade to 1.2.12
      e884cee glibc: Switch to 2.24 release branch
      dfc016f maintainers.inc: remove augeas
      a9681ef Revert "packagegroup-core-x11-base.bb: replace pointercal with pointercal-xinput"
      a56fb90 base.bbclass wipe ${S} before unpacking source
      3522a90 packagegroup-core-x11-base.bb: replace pointercal with pointercal-xinput
      5745154 dpkg: put start-stop-daemon into a separate package
      7759b48 perf: enable man pages for 'help' functionality
      9ddb513 create-pull-request: set subject automatically for cover latter
      1d7228c create-pull-request: read remote from env var CPR_CONTRIB_REMOTE
      a158265 create-pull-request: add option -a to auto push
      ca56459 cronie: upgrade to 1.5.1
      1580eac Asciidoc: add it
      a5eb998 augeas: remove from oe-core
      9ac1500 tcl: 8.6.5 -> 8.6.6
      46d5901 strace: 4.12 -> 4.13
      7dbfe6f libcap-ng: 0.7.7 -> 0.7.8
      1f1ac9f grub2.inc: run autogen.sh before configure
      37f1e0c oeqa/utils/sshcontrol.py: Allows to copy symlinks to target
      65459f5 oeqa/oetest.py: Allow to export packages using symlinks
      65a03c3 oetest.py: Remove check for __init__.py
      84d854c oetest.py: Add command line parameter support for tag in testexport
      2d565fa bitbake.conf: set READELF for cross compilation
      8b5f369 Fix random python backtrace in mutlilib handling code.
      44ae828 selftest/runtime-test.py: Add test for testexport SDK feature
      d2e5c93 dhcp: dhcrelay.service cannot start successfully
      43a3933 meta: add more missing patch tags
      6d59c5c cml1: fix tasks after default [dirs] changed
      c00346d bitbake.conf/toolchain-scripts.bbclass: Remove debug prefix mappings in SDK
      6cfd86f pseudo: update git recipe to include xattr perf fix
      2726f91 pseudo: backport patch to fix xattr performance
      d4040da mesa: Fix build when cross compiling with clang
      50008ff gstreamer1.0-plugins-bad: Backport GstGLMemoryEGL implementation
      a09a7b7 gdb: Cache gnu gettext config vars for musl builds
      76fc5ab ffmpeg: Upgrade to 3.1.1
      8b21a51 apt: Upgrade to 1.2.12
      564657e groff_1.18.1.4: fix narrowing conversion error
      b37463b python-pexpect: Upgrade to 4.2.0
      1e555c0 glew: upgrade to 2.0.0
      d753c91 apmd: use snapshot.debian.org for SRC_URI
      a996ae6 linux-yocto/4.1: qemuppc and qemumips build fixes
      453c174 linux-yocto/4.1: bug fixes and configuration changes
      9dc4cfc linux-yocto/4.1: bump to v4.1.28
      a3cad8f bitbake: bitbake-user-manual: Applied typo fix to "Override Style Operation Advantages"
      ae427fb bitbake: bitbake-user-manual: Changed bitbake command example.
      e205789 bitbake: bitbake-user-manual: Updated the PROVIDES variable
      f0e73a4 bitbake: bitbake-user-manual: Added non-existant variable expansion
      41b49ca bitbake: bitbake-user-manual: Applied some review comments
      a3a7ddf bitbake: bitbake-user-manual: Updated the "Inline Python Variable Expansion" section.
      eb282b7 bitbake: bitbake-user-manual: Fixed override operator syntax.
      6aaf379 bitbake: bitbake-user-manual: Clarified override-style operators.
      d1e3f0b bitbake: bitbake-user-manual: Updated the variable expansion section.
      2652217 bitbake: Revert "bitbake-user-manual: Added new section on command-line execution"
      5203cfe ref-manual: Removed redundant "and"
      2322267 ref-manual: Removed stray parenthesis.
      566ebc1 ref-manual: Updated the STAGING_DIR_HOST variable.
      4396ffb ref-manual: Updated STAGING_DIR_TARGET and MULTIMACH* variables.
      05beac3 ref-manual: Added a link to D variable and moved a task:
      376a820 ref-manual: Augmented some STAGING_DIR_* variable descriptions:
      599be67 Revert "ref-manual: Added new glossary entry for REMOVE_PKG_SUPPORT."
      33b01c5 ref-manual: Added 3 new QA sanity checks.
      f2fa3c5 ref-manual: Applied review edits to "Checking for Missing Build-Time Dependencies"
      7c5a147 ref-manual: Applied review changes to the do_deploy task.
      c9e3815 ref-manual: Added new "Checking for Missing Build-Time Dependencies" section.
      fa0c574 ref-manual: Added link to the do_populate_sysroot task
      6c302a4 ref-manual: Applied formatting to QA check string in do_install task
      38c33b7 ref-manual: Fixed output example in the B variable.
      30929cf ref-manual: Updated the do_deploy task reference section.
      bc14368 ref-manual: Added detail to the populate_sysroot task.
      bb16434 ref-manual: Updated the do_packages task.
      4f27aa6 ref-manual: Updated the do_install reference section.
      781bff8 ref-manual: Updated the do_configure task.
      8f2d8c2 ref-manual: Fleshed out the do_compile task.
      04c6112 ref-manual: Updated RDEPENDS variable description with note.
      818e439 ref-manual: Applied review comments to logging mechanism section
      2db1d3b foomatic-filters: Security fixes CVE-2015-8327
      e07ebd0 foomatic-filters: Security fix CVE-2015-8560
      f5a7cd4 at: use snapshot.debian.org for SRC_URI
      eef97b3 mailx: use snapshot.debian.org for SRC_URI
      27b49de libaio: use snapshot.debian.org for SRC_URI
      1a740c6 blktool: use snapshot.debian.org for SRC_URI
      ecde311 serf: use snapshot.debian.org for SRC_URI
      5727f46 linuxdoc-tools: use snapshot.debian.org for SRC_URI
      9cfb420 docbook-xml-dtd4: use snapshot.debian.org for SRC_URI
      df4451c netbase: use snapshot.debian.org for SRC_URI
      f6e53ac ossp-uuid: use snapshot.debian.org for SRC_URI
      0966a83 linux-yocto/4.4: update to -r19
      2c358b9 readline: don't install readline C examples
      a9aef40 useradd-staticids.bbclass: trigger reparsing when table files change
      1981ab0 oeqa/utils/commands.py: Command class improve validations/decoding in output
      1648504 oeqa/runtime/syslog: test_syslog_logger Don't try to use logread when systemd is enabled
      a86a1b2 classes/testimage: When image is systemd, enable debug log level
      140f6c7 busybox-syslog.default: When systemd is enabled don't use circular buffer
      b4ba36a oeqa/runtime/syslog.py: Improve test_syslog_logger
      8b3f624 xorg-xserver: upgrade xserver version from 1.18.3 to 1.18.4
      0ec45e9 tcf-agent: update to 1.4_neon_bugfix branch
      3286f4f python-git: Upgrade python-git and python3-git to 2.0.7
      d8cff60 python-numpy: upgrade to 1.11.1
      5c2bc4d linux-yocto/4.4: mousedev and printk configuation streamlining
      e647fe0 linux-yocto/4.4: lx-dialog and mei bug fixes
      ec31f30 linux-yocto/4.4: bump to v4.4.15
      6d2987c systemd-boot: use lnr instead of ln --relative
      215687e gstreamer1.0-plugins-bad: add missing wayland-native dependency
      f31683d selftest/runtime-test.py: Add test for import test from other layers
      36b3e58 cmake: upgrade to 3.6.1
      8c6371f libassuan: upgrade to 2.4.3
      e7a0997 libgpg-error: upgrade to 1.24
      3486b72 dropbear: upgrade to 2016.74
      f55bf4e wayland-protocols: upgrade to 1.5
      0ef807a libtasn1: upgrade to 4.9
      c90d799 libsolv: upgrade to 0.6.23
      75efb26 connman: upgrade to 1.33
      081acd5 update-rc.d: Correct trivial typo in DESCRIPTION line.
      556059a binutils: Cache gettext api version 1 and 2 support
      8ab6c4a menu-cache: remove spurious dependency on intltool
      6f1f317 sysprof: clean up FILES
      1ebec49 tune-mips-24k: add QEMU_EXTRAOPTIONS for DSP and MIPS16e cores
      b004e3a qemu: add patch to add mips 24KEc CPU definition
      0152d75 bash: add patch to build w/ -Wformat-security
      f4709b1 uncovered: list uncovered python modules
      81580c5 screen: add back the patch for parallel build
      b332b38 avahi-ui: use PACKAGECONFIG for gtk features
      baaaea5 Revert "lttng-tools: filter random filename of ptest output"
      2c01447 oe-selftest: simplifying log filenames
      e91d0d5 oe-selftest: export test results via xmlrunner
      cc3c276 oe-selftest: recipetool: add tests for git URL mangling
      12fbed9 recipetool: create: fix greedy regex that broke support for github tarballs
      be68ef5 useradd.bbclass: Fix delete user/group when more than one item
      aa2d945 bitbake: lib/toaster: Fix missing new files from previous commits
      5b61fa0 bitbake: toaster-tests: fix URL given for Chromedriver download
      05f82e8 bitbake: toaster-tests: define capabilities for latest Firefox driver
      2a849e7 bitbake: lib/bb/checksum: avoid exception on broken symlinks
      ea23423 bitbake: lib/bb/utils: show subprocess output in stack traces
      c42b533 bitbake: fetch2: fix pickle issues while switching from master to krogoth
      039f47a uclibc: remove meta-yocto-bsp append
      1d39e4c dpkg: use snapshot.debian.org for SRC_URI
      7cb7ca9 babeltrace: remove unnecessary SRCREV
      87678bbd rt-tests: rationalise compiler flags
      3ec9a62 recipetool: record unknown license files
      25507bf lib/oe/recipeutils: fix patch_recipe*() with empty input
      dd85405 classes/buildhistory: ensure eSDK sstate lists sorted secondarily by name
      82c7d0f classes/buildhistory: add additional variables for eSDK
      4048af4 classes/populate_sdk_ext: add gdb to full extensible SDK
      0b2ca66 classes/populate_sdk_ext: filter sstate within the extensible SDK
      2ac1fdf scripts: add oe-check-sstate script
      4253e2e classes/populate_sdk_ext: allow including toolchain in eSDK on install
      f84b01b meta-extsdk-toolchain: add meta-recipe to install toolchain into eSDK
      cb5d308 classes/populate_sdk_ext: set default for SDK_INCLUDE_PKGDATA
      1b4dc78 oeqa/selftest/signing: check that we have GPG in setup
      5218c24 oeqa/selftest/signing: use a temporary directory for GPG home
      ab075b6 kdump: don't set default values for KDUMP_CMDLINE and KDUMP_KIMAGE
      9b8b730 harfbuzz: upgrade to 1.3.0
      8b0db50 bluez5: upgrade to 5.41
      b261791 dhcp: remove dhclient-script bash dependency
      21916fe net-tools: lib/inet6.c:INET6_rresolve() - various fixes
      012262a gcc: Don't use vectorized builtins when Neon is not there
      6660e95 sysprof: fix floating dependency on polkit
      71d0c87 kernel.bbclass: explicitly set workdir in do_bundle_initramfs
      4858c6b kernel-uimage.bbclass: indeed update var KERNEL_IMAGETYPE_FOR_MAKE
      7178f07 musl: don't compile in mips16e mode
      1131507 lib/oe/path: Fix tar invocation with --no-recursion
      57bb38d gcc: Fix libgcc unresolved symbols with PIE on musl
      13ee352 webkitgtk: Do not use gold with clang
      7d04a4d insane: only check ${S} exists if we had sources to fetch
      2eec44e lib/oe/gpg_sign: fix output in error paths
      f02f0ed python-smartpm: add support to check signatures
      2f6bbc7 openssh: conditional compile DES code.
      2c2f22a packagefeed-stability.bbclass: copy all packages of a recipe
      600f0b3 packagefeed-stability.bbclass: minor fixes
      b36753b packagefeed-stability: add class to help reduce package feed churn
      cbf7902 package_deb.bbclass/package_ipk.bbclass: sort RPROVIDES
      9621959 build-compare: improve deb and ipk checking
      ad6aae3 build-compare: fix checking for named pipe and others
      fef5ae1 build-compare: make pkg-diff.sh 75% faster
      495e2f8 build-compare: remove space at head
      51b0883 rpm: make --nosignature work
      2ab4926 package_deb.bbclass: fix Python 3 error
      0e63414 piglit: Add build fix patch
      ad625f7 avahi: fix resource temporarily unavailable issue
      05dca6e pulseaudio: fix floating dependency on webrtc-audio-processing
      7c9acf0 pulseaudio: 8.0 -> 9.0
      328e249 libsndfile1: 1.0.26 -> 1.0.27
      24f871c classes/populate_sdk_ext: show progress when preparing build system
      1052fef layer.conf: bump version for uclibc removal and LSB update
      bb9d9da uclibc: remove
      5600778 LSB: 4.1.0 -> 5.0
      e6e05a3 systemd_boot: Enable module to test systemd bootloader
      efd7d6b webkitgtk: Switch the ARMv7 build to Thumb2 and enable back the JSC JIT.
      b6aa976 quota: make compile pass when disable rpc
      b7a2688 weston-init: De-couple framebuffer console from Weston for systemd startup
      df9f8a8 weston-init: Fix weston-start to handle 0 or 1 args
      9f7c1a5 weston-init: Fix weston-start to allow weston args without openvt args
      c406e9a ccache: 3.2.4 -> 3.2.5
      36f6219 gettext-minimal-native: 0.19.4 -> 0.19.8.1
      cff2123 gettext: 0.19.6 -> 0.19.8.1
      91a6f3a slang: 2.2.4 -> 2.3.0
      2186bbc gnu-efi: 3.0.3 -> 3.0.4
      6d9958e guile: 2.0.11 -> 2.0.12
      cf03952 git: 2.8.4 -> 2.9.2
      cea867b linux-yocto-dev: Ensure we don't reparse the recipe when its not being used (take 2)
      e1fcb03 Revert "linux-yocto-dev: Handle performance regression"
      31cef0d lib/oeqa/decorators: handle broken links when creating new symlink
      ebc80fa siteinfo: Add mechanism to extend siteinfo information from BSP layer
      e693f2e insane: Add mechanism to extend QA machine information from BSP layer
      1393b23 bitbake: lib/bb/build: handle incomplete message fragments in log FIFO
      9411e33 bitbake: toaster-tests: add tasks and recipes sub-page tests
      4357d7a bitbake: toaster: set non-hideable columns for built recipes table
      bd2cce0 bitbake: toaster: set non-hideable columns for build tasks table
      83ccef3 bitbake: toaster: fix download URL for task logs
      24905d3 bitbake: fetcher2/__init__: Print command in case of ExecutionError in runfetchcmd
      729d9fc bitbake: toaster: loadconf Partially add back some of the layerSource parsing
      04d1ad5 bitbake: toaster: admin Add Layer_Version to the admin-able models
      97278fb bitbake: toaster: orm Remove the layerindex specific up_branch fields
      8b31460 bitbake: toaster: lsupdates Add progress information and clean up logging
      bb260e9 bitbake: toaster: tests: Remove references to LayerSource model
      ef627d0 bitbake: toaster: Replace references to LayerSource models
      ffc78d3 bitbake: toaster: lsupdates Add layerindex fetcher
      853450b bitbake: toaster: models Remove LayerSource models and replace with enum
      20f939f bitbake: toaster: bldcollector admin Remove LayerSourceAdmin
      1477886 bitbake: toaster: loadconf remove Loading LayerSources
      c27ae25 bitbake: lib/bb/progress: avoid possibility of start event being reported twice
      5f4559b bitbake: knotty: don't display ETA for tasks with progress
      23a551b bitbake: knotty: fix some minor bugs in BBProgress
      0c3ce68 bitbake: fetch: copy files with -H
      7f6b6b2 bitbake: cache: Don't interleave pickle cache file writing
      5d41200 bitbake: cache: Add better cache loading sanity checks
      40d45cf bitbake: cache: Drop/simplify pointless type checking
      c9e65c5 bitbake: cache: Improve versions fields handling
      09f6a56 bitbake: cache: Correctly handle missing extra caches
      b2ef908 bitbake: cache: Move the parsing message to a more logical place
      36feb38 linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.4
      f06b023 linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.1
      3177082 bitbake: bitbake: implement idle timeout for xmlrpc server
      4cba010 bitbake: bitbake: implement --foreground command line option
      380b6e8 bitbake: bitbake-user-manual: Added new section on command-line execution
      cb40ae4 bitbake: bitbake-user-manual: Applied review edits to "Recursive Dependencies"
      80b1efb bitbake: bitbake-user-manual: Fixed typo in the BBDEBUG variable description.
      9a9577e bitbake: bitbake-user-manual: Added review changes to BBCLASSEXTEND description
      4bc1ee5 bitbake: bitbake-user-manual: Added review changes to recursive section.
      35081f5 bitbake: bitbake-user-manual: Addeds support for the Perforce Fetcher
      a6cffcf bitbake: bitbake-user-manual: Added clarifying note to BBCLASSEXTEND variable.
      8c55a9c bitbake: bitbake-user-manual: Added a note providing examples of task dependencies
      d918df7 bitbake: bitbake-user-manual: Updated dependency section for tasks
      6743f12 bitbake: bitbake-user-manual: Updated the defaults for getVar and getVarFlag
      8321d66 bitbake: bitbake-user-manual: Added new section on command-line execution
      321f4e9 boost: fix CVE-2012-2677
      d183d1e package_manager.py: Avoid installing an empty package list
      56aa9c8 glibc: Update to 2.24 after hard-freeze
      2d5b282 wic: rawcopy: make source filenames unique
      788d6fb buildhistory-diff: reduce PKGR noise
      d4d6021 systemd: allow add users to groups in rootfs postprocess
      031c2f6 initrdscripts/init-install*: Select install target instead of looping through
      8da54b4 oeqa/controllers: Add test target for Systemd-boot
      cd78d87 oetest.py: Fix problem when there is more than one json file for package extraction
      736eab6 oe-selftest: print errors when failed to find test
      e1aa836 lib/oeqa/utils/commands.py: Move updateEnv() from runexported.py
      9043691 bitbake: cooker: Fix incorrect dot file generation
      1bf1e2c bitbake: toaster-tests: add class SeleniumTestCaseBase for browser tests
      a61eb1f intltool: remove broken XML::Parser detection
      ae39c3a intltool: merge .bb and .inc
      bb42984 oeqa/recipetool: update recipe test to pass SHA
      738f47a oeqa/devtool: update recipe test as libmatchbox changed
      bf69538 xf86-input-libinput: Upgrade 0.16.0 -> 0.19.0
      6c2f073 xf86-input-evdev: Upgrade 2.10.2 -> 2.10.3
      e7d910b xkeyboard-config: Upgrade 2.17 -> 2.18
      fded0a0 libxfixes: Upgrade 5.0.1 -> 5.0.2
      a5392dd weston: Upgrade 1.10.0 -> 1.11.0
      ddb0de6 wayland: Upgrade 1.10.0 -> 1.11.0
      534cc86 wayland-protocols: Upgrade 1.3 -> 1.4
      d18a28c mesa: Upgrade 11.2.2 -> 12.0.1
      00191b8 mesa-demos: Require X11 distro feature
      4518058 image: add do_image_qa task to run QA checks on the constructed image
      d1fdd0a python3: Security fix CVE-2016-5636
      81106cd python2: Security fix CVE-2016-5636
      3aaf023 bzip2: Security fix CVE-2016-3189
      c0dbed6 openssl: Security fix CVE-2016-2178
      03f6074 openssl: Security fix CVE-2016-2177
      61577c5 xmlto: only target requires coreutils
      f74ddc6 piglit: Fix build on musl/arm
      dbf53c9 xuser-account: remove GROUPADD_PARAM
      e24bc6d recipes-graphics: Added native and nativesdk support for some libraries
      69dfc58 tcl: fix sed command in do_install
      bffb0fb oe-git-proxy: don't depend on syslinux
      dd0474c sysstat: upgrade to 11.3.5
      db0c499 sudo: upgrade to 1.8.17p1
      35c9e2a cups: upgrade to 2.1.4
      1854732 byacc: upgrade to 20160606
      e53630e at: upgrade to 3.1.20
      096b4c6 libxsettings-client: Remove as unneeded
      49d3d7d libmatchbox: Upgrade 1.11 -> 1.12
      b1d573b matchbox-keyboard: Upgrade to 0.1.1
      16fa164 sato-screenshot: Upgrade 0.2 -> 0.3
      8bf2692 matchbox-panel-2: Upgrade 2.10 -> 2.11
      5484015 libpng: update to 1.6.23
      11f23ec linux-firmware: update to revision cccb6a0da9
      5813d40 nss: Fix build on mips/clang
      0508464 wic: oe-selftest: build bmap-tools-native
      ed319ff musl: Fix mips regressions in 1.1.15
      bb915a1 binutils: backport fix for TLSDESC relocations with no TLS segment on arch64
      4fdfee4 classes/license.bbclass: don't set [dirs] and [cleandirs]
      6494a59 glibc: use the host locale archive in nativesdk builds
      6047780 perl: fix CVE-2016-2381
      ac0910e opkg: upgrade to v0.3.3
      d62fd77 devtool: add finish subcommand
      10a5af5 devtool: upgrade: record original recipe files
      7af3295 devtool: update-recipe: refactor to allow calling separately
      5d78525 devtool: reset: refactor to allow calling separately
      7435cdf lib/oe/recipeutils: fix a few issues in find_layerdir()
      c4297f3 devtool: update-recipe: don't copy local files that haven't changed
      8be2077 devtool: update-recipe: find and use existing files directories
      220a68b bash: fix string format errors when enabling security flags
      2184694 bash: ensure LDFLAGS is passed when building ptest
      d713c48 libevdev: Upgrade 1.5.1 -> 1.5.2
      b66059b librsvg: Upgrade 2.40.15 -> 2.40.16
      c124584 libgpg-error: Upgrade 1.22 -> 1.23
      54d5009 freetype: Upgrade 2.6.3 -> 2.6.5
      0a98691 fontconfig: Upgrade 2.11.95 -> 2.12.0
      3eaf1ac cairo: Remove unnecessary UPSTREAM_CHECK_REGEX
      b3e4044 expat: Upgrade 2.1.1 -> 2.2.0
      5d5efbc packagegroup-core-tools-testapps: remove Piglit temporarily
      c3753a8 piglit: Upgrade version, use python3
      b384b72 oe/lib/package: handle shlibs files disappearing
      72becf9 bitbake.conf: use ${prefix} to define exec_prefix
      ad6aaae utils/qemurunner.py: QemuRunner.start() add support for specify extra kernel cmdline
      e558b50 site: Move rsync_cv_HAVE_C99_VSNPRINTF to common-linux
      17dcf19 nss: Fix build with clang
      317447f python-six: Add to oe-core
      89eab25 python3: update manifest RDEPENDS for importlib and compression packages
      4a5de97 db: Use cross libtool
      15ba3c1 initramfs-framework: make rootfs module optional
      7eaf305 testimage.bbclass: INHERIT -> IMAGE_CLASSES
      4574311 wic: mountpoint is an optional argument
      65a0c27 report-error: replace build paths with markers not whitespace
      3ad542a rpm: remove CVS-based recipe
      d291ca3 recipes-sato: fix upstream version check
      470558f python-numpy: fix upstream version check
      447d715 python-scons: fix upstream version check
      652cacc epiphany: update to 3.20.3
      441a1fc libwnck3: upgrade to 3.20.1
      15901eb desktop-file-utils-native: update to 0.23
      f4cd97c bash-completion: update to 2.3
      4c9b1a4 wic: clone gummiboot wks for systemd-boot
      3091a8c wic: add systemd-boot option in EFI boot image plugin
      a98a818 gcc-cross: default linker hash style to sysv
      648fd33 gstreamer1.0-plugins-bad: Fix little rectangel appears at the center when use squeeze and tunnel effects
      c62fd75 gstreamer1.0-plugins-bad: Use the newer texture() function in glcolorconvert
      a933b78 gstreamer1.0-plugins-bad: Add glBindFragDataLocation in glshader
      352acc9 gstreamer1.0-plugins-bad: Don't use the predefined variable name in glcolorconvert
      365fdce gstreamer1.0-plugins-bad: Implement multiple render targets for GLES3
      e1eca35 gstreamer1.0-plugins-bad: Enable gldeinterlace on OpenGL ES
      b0d66a7 gettext_0.16.1: remove useless files to avoid sysroot conflicts
      f583dad git: 2.8.4 -> 2.9.0
      6ac1f90 sstate.bbclass: make PV to depend on PV variable value
      5c545ca v86d: Accept aarch64 as build host
      54fd9af libunwind: Port to ppc/musl
      d2296ea webkitgtk: Fix build on ppc with musl
      fa0b782 python{3}-numpy: Predefine of sizeof off_t on mips/mipsel/ppc
      d55b765 linux-yocto: Enable debug/printk.scc KERNEL_FEATURE on qemuall machines.
      e833508 nativesdk-packagegroup-sdk-host: Add wayland-scanner to the SDK native toolchain
      9045e21 neard: upgrade to 0.16
      01a3261 libidn: add license per package
      42e870c image_types.bbclass: support template .wks.in files for wic
      be90c3e image_types.bbclass: add intermediate var for WKS_FILE_CHECKSUM
      8cc2f2c Revert "core-image-sato: add gtk+ for M1"
      38d2c59 remove sukoku
      ad0cfdb testimage: swap sudoku for galculator
      9c4b143 oeqa/sdk: remove buildsudoku test
      0b61f87 linux-yocto/4.1: pinctrl backports
      200fcba linux-yocto: powerclamp and gpio configuration changes
      8a4fb05 linux-yocto/4.4: pwm and mei updates
      171d825 linux-yocto/4.4: update to v4.4.14
      8e16152 linux-yocto/4.1: update to 4.1.27
      6ae50db linux-yocto/config: mei, gpio and usb type c
      0c5b11a linux-yocto/4.4: cpumask: Export cpumask_any_but()
      59d3fb6 linux-yocto/4.1/4.1: mei, usb and extcon changes
      92469ae linux-yocto/4.1/4.4: x86, power and usb-c mainline backports
      63ff759 bitbake: bitbake: main: implement server autostart feature
      b190c08 bitbake: bitbake: utils: add BBSERVER to the list of preserved variables
      6597ba6 bitbake: bitbake: xmlrpc: implement check of connection to server
      dead7b2 bitbake: lib/bb/utils: no need to unsetenv when manipulating os.environ
      aae4c2a ref-manual: Updated the "Recipe Logging Mechanisms" section
      451334a ref-manual: Applied review changes to the DEPENDS variable.
      bdf9003 ref-manual: Added review changes to BBCLASSEXTEND description
      acdfb5f ref-manual: Added notes to the DEPENDS variable description.
      b09a3ad toaster-manual: Changed the Webport address:
      640181c ref-manual: Added clarifying note to the BBCLASSEXTEND variable.
      48336f5 ref-manual: Added cross-referencing to tasks and dependencies
      cf3b80b ref-manual: Added new glossary entry for REMOVE_PKG_SUPPORT.
      a814a61 toaster-manual: splitted long line
      f649382 toaster-manual: point keywords to Django documentation
      9a5af9c toaster-manual: Update toaster start documentation
      e92b3a8 toaster-manual: add OpenSUSE to the list of distros
      4e01774 toaster-manual: update runbuilds instructions
      3d24037 toaster-manual: update apache configuration file
      c3e076f toaster-manual: add instructions for OpenSUSE
      aa42629 toaster-manual: change mysql driver
      4b3c595 toaster-manual: add instructions to create user
      14194fa toaster-manual: add list of packages for openSUSE
      2134659 toaster-manual: update list of packages
      b094b97 toaster-manual: update distro versions
      64b8e17 toaster-manual: Switch to pip3 dependency installer
      f6378c1 toaster-manual: add instructions to create user
      444a80a ref-manual: Added a new section on setscene task variants
      4fb1961 ref-manual: Fixed typo in the "Shared State" section.
      b67f865 ref-manual: Review edits to the PR variable in glossary.
      e5fabb9 ref-manual: Updated the RDEPENDS variable description in the glossary
      b66e84e ref-manual: Updated the PR variable description.
      33e1c39 dev-manual: Review edits to the package installation section
      77031ba ref-manual: Updated the flag descriptions for shared state details
      57acc32 dev-manual: Edits to the package feed creation section.
      fc518b5 ref-manual: Updated the DISTRO_FEATURES description of Bluez5
      45baa90 bitbake: fetch2: implement progress support
      843f7ae toaster.bbclass: only scan files-in-image.txt if it exists
      ac339ec toaster.bbclass: remove directory scan logic for detecting artifacts
      8d08a73 bitbake: toaster-tests: package count/size shouldn't show for non-image builds
      8ccf839 bitbake: toaster-tests: new custom image button shouldn't show for non-image builds
      db5426b bitbake: toaster-tests: add tests for build artifact display on build dashboard
      9475a68 bitbake: toaster: the customise image button shouldn't rely on targets
      2db40e3 bitbake: toaster: add package manifest path to Target objects
      1027e0e bitbake: toaster: better display of targets which produced no images
      adbf206 bitbake: toaster: show manifests in their own section of the build dashboard
      07a58a8 bitbake: toaster: only show "New custom image" button for builds with image targets
      587275e bitbake: toaster: use has_images() methods to display images correctly
      150e558 bitbake: buildinfohelper: only record image files for tasks which make images
      00c2c0b bitbake: toaster: improve scan for SDK artifacts
      f39ae14 bitbake: buildinfohelper: fix retrieval of targets
      4125da7 bitbake: toaster: attach kernel artifacts to targets
      e980857 bitbake: toaster: improve image file suffix retrieval
      5dfa120 bitbake: toaster: do image and artifact scan on BuildCompleted
      b0585e6 bitbake: toaster: display Target targets in build dashboard
      844e1f9 bitbake: runqueue: improve exception logging
      7a220ae bitbake: lib/bb/utils.py: return sorted OrderedDict in explode_dep_versions2
      bc3a206 bitbake: knotty: avoid errors when fetching outside of a task
      2afcbfe bitbake: build: don't use $B as the default cwd for functions
      faa7268 bitbake: lib/bb/build.py: decode the command as UTF-8
      b7a741c bitbake: lib/bb/utils: fix set_process_name
      627d019 useradd-staticids: use map() instead of imap()
      fd08714 python3: Add compression to python3-shell dependencies
      4473e64 python3-native: Add "io" to rprovides
      5e747eb python3: Add dependencies for python3-misc
      114206f buildstats-summary: round the floating point percentage
      029e3eb lib/oe/patch: handle encoding differences in patch files
      f465039 recipetool: create: support specifying a file as the local source
      54486a1 recipetool: create: fix handling of github URLs
      2c9291d graph-tool: convert to python3
      baed9bd scripts/contrib/devtool-stress: exclude more recipes by default
      89f8348 scripts/contrib/devtool-stress: skip incompatible recipes
      5c91537 devtool: return specific exit code for incompatible recipes
      d56caf3 devtool: reset: allow reset to work if the recipe file has been deleted
      117c80f devtool: update-recipe: fix --initial-rev option
      7f6f998 gtk+3: update 0003-Add-disable-opengl-configure-option.patch
      e5f9326 file: 5.27 -> 5.28
      824e7f7 tzcode-native: update to 2016f
      64c54ef tzdata: update to 2016f
      56e23ae debianutils: 4.7 -> 4.8
      4de8b37 gmp: 6.1.0 -> 6.1.1
      65a8f24 libpcre: 8.38 -> 8.39
      4dd3980 wget: 1.17.1 -> 1.18
      c072b18 mtd-utils: build also for nativesdk
      3e01371 linux-yocto-dev: Handle performance regression
      6deadf5 gcc: CVE-2016-4490
      661ff39 gcc-runtime: add SUMMARY values
      1c0fc7f gcc: add runtime packages to RRECOMMENDS
      7355e4e libgcc: remove duplicate configure options
      a219424 glibc: add more Imagination Meta relocation to elf.h
      ea43996 glibc: Upgrade to latest tip of master
      ec33670 binutils: Upgrade to 2.26.1
      d428f2e musl: Update to v1.1.15 release
      6bb3069 tune-ppce500mc.inc: pass -mcpu=e500mc for ppce500mc kernel compile
      586249a classes/libc-package: remove pointless copying when running localedef
      e2a150b libc-package: remove obsolete do_configure_prepend
      8c95d22 move directfb from oe-core
      7852381 buildoptions.py: remove directfb image build test
      e7ddecc distro_alias.inc: remove directfb related references
      e91d0e8 remove core-image-directfb.bb
      a526c31 remove packagegroup-core-directfb.bb
      3a6f0b6 db: use S/B more idiomatically
      b58c5dc libsolv: upgrade to 0.6.22
      8501934 screen: upgrade to 4.4.0
      3eb5cba libatomic-ops: upgrade to 7.4.4
      578bc2b ethtool: upgrade to 4.6
      5d34839 vala: update to 0.32.1
      82f83f6 nss: update to 3.24
      969ba57 mpg123: update to 1.23.5
      a75183b btrfs-tools: update to 4.6.1
      b141340 gnutls: update to 3.5.1
      f31597a babeltrace: update to 1.4.0
      c04d4a0 libarchive: update to 3.2.1
      4d8a816 ffmpeg: update to 3.1
      5c4e3b5 bdwgc: update to 7.4.4
      d6abd75 terminal: Drop gnome-terminal --disable-factory workarounds
      c706bfb terminal: Fix gnome-terminal to work with recent versions
      9df3cdf pseudo: Upgrade to 1.8.1
      a14d30f oe-selftest: drop test_prepare_unexpected
      8dc159d bitbake: toaster: tests Add selenium test for layerdetails page
      8813726 bitbake: toaster: add Layer delete front end feature to layerdetails
      e1ba2fd bitbake: toaster: api Add util function for returning the error response
      36dec68 bitbake: toaster: layerdetails api Fix saving of git revision of a layer
      903c3c2 bitbake: buildinfohelper: ensure task datetimes are timezone-aware
      78b3fe6 bitbake: eventreplay: rewrite the script
      2b56c03 bitbake: eventreplay: reorganize imports
      9431a6f bitbake: eventreplay: replace MockConfigParameters with namedtuple
      70cc20d bitbake: eventreplay: fix event loading code
      2199ff5 bitbake: eventprelay: implement setEventMask command
      a1ceb0f bitbake: eventreplay: add MockConnection.getEventHandle method
      ed9c309 bitbake: toaster: fix layout for command-line builds in recent builds area
      7ed76e4 bitbake: bitbake-worker: don't reassign sys.stdout
      dab3b1b bitbake: toaster: views Fix most frequently built target in project reporting
      5018d5f bitbake: toaster: layerBtn avoid connecting handler to other build buttons
      9d730f4 bitbake: bitbake: toaster-tests: tests for project config
      dabb49b bitbake: toaster: fix validation checks for DL_DIR and SSTATE_DIR
      be00eb2 bitbake: toaster: remove SSTATE_MIRRORS from projectconf
      f433664 bitbake: toaster: remove SSTATE_MIRRORS from blacklists in views
      b301251 bitbake: progress: Ensure missing start event is fired
      1b5688e bitbake: knotty: Handle process indicators more gracefully
      1b930b4 bitbake: runqueue: report progress for "Preparing RunQueue" step
      f3b62c1 bitbake: runqueue: add ability to enforce that tasks are setscened
      76feac3 bitbake: knotty: add quiet output mode
      465f939 bitbake: knotty: show task progress bar
      8d56d59 bitbake: knotty: add code to support showing progress for sstate object querying
      0e3281f bitbake: lib/bb/progress: add MultiStageProgressReporter
      ac5e720 bitbake: lib: implement basic task progress support
      1cf6e14 bitbake: knotty: import latest python-progressbar
      481048c bitbake: knotty: provide a symlink to the latest console log
      312f1a5 bitbake: fetch2/wget: attempt checkstatus again if it fails
      1bbd580 oeqa/selftest/bbtests: Fix failing test after progress changes
      c7147ce oeqa/runtime/systemd: fix typo in skipUnlessPassed decorator
      895353a service: obey CFLAGS, LDFLAGS
      d6a43d2 initramfs-framework: Add support for PartUUIDs
      ee6a6c3 initramfs-framework: add retry loop for slow boot devices (like USB)
      e34eb01 lib/oe/path: remove oe.path.check_output
      6a2753b scripts: Fixed typo in parameter that was causing exception
      f8bdaf3 rt-tests: move ptest to python3
      6074ed6 gcc: remove GCC 4.9
      14c9011 gcc: remove unused patch
      7b6f667 gcc-5.4: Fix hang with mmusl option on cmdline
      b45155b pulseaudio: Disable unit tests
      ac0e5e2 socat: remove the hardcoded shifting offset
      dc626e3 runqemu: Avoid duplicating custom QEMU options for AArch64
      e8e8d41 libpfm4: fix compile error
      23ae622 classes/populate_sdk_ext: exclude initramfs images from locked signatures
      c7ab9f3 classes/populate_sdk_ext: ensure tasks to build the image are included
      1063622 recipetool: create: drop unused convert_pkginfo() function
      75f1a0e recipetool: create: avoid decoding errors with Python 3
      74c5cd0 autogen-native: fix script error when processing libguile
      e4224fb l3afpad: add check for GTK3DISTROFEATURES
      dca5d9d gettext: fix for low-version recipe
      e1ca5d9 libidn: add patch to build w/ -Wformat-security
      e49d337 meta: update patch metadata
      e6ad36c run-postinsts: Correct comment misspelling, "rpm-posinsts".
      94fb1a5 oepydevshell-internal: python3: encode/decode pty content
      e8feb19 devpyshell: python3: flush stdout explicitly
      250955a devshell.bbclass: fix double unbuffering
      16df2b6 pseudo: drop recipe for old 1.6.7 version
      4ebe0e1 classes/cmake: enable progress for do_compile
      a702c68 classes/populate_sdk_ext: eliminate double execution on install
      c24b651 toolchain-shar-extract.sh: allow TERM through into SDK installer env
      af4d725 lib/oe/sstatesig: print locked sigs file message only when explicitly called
      ff41cfb classes/testsdk: print output correctly on failure
      6677dd3 classes/sstate: add a mode to error if sstate package unavailable
      e769dce classes/sstate: show progress during sstate object availability check
      4071217 classes/image: implement progress support for do_rootfs
      8daa1b4 bitbake.conf: whitelist progress varflag
      4e889c0 scripts/lib/bsp/help.py: Changed help of yocto-bsp to match latest syntax
      479d15b yocto-bsp: Refactor script to use argparse instead of optparse
      4ab8650 scripts/yocto-bsp: Removing version from yocto-bsp
      4252ec7 scripts/lib/bsp/engine.py: Add error message for wrong input file
      71bc7fd scripts/lib/bsp/help.py: Fixed pager for yocto-bsp help
      2128272 scripts: Fixed typo in parameter that was causing exception
      3f8fbdb meta-yocto: Delete PREFERRED_VERSION for obsolete version of U-Boot.
      9d0e391 local.conf.sample.extended: drop RPM4 example
      11af659 poky: drop unsupported distros
      5c11e36 lib/oeqa: add Galculator to SDK and runtime tests
      b305564 oeqa/runtime/syslog: remove redundant skipUnlessPassed
      e0bcf33 toolchain-scripts: add sysroot/usr/share/pkgconfig to PKG_CONFIG_PATH
      076a93e oeqa/utils/commands: fix single-character variable matching in get_bb_vars()
      8f82db7 linux-yocto: bxt and input configuration changes
      76332d9 linux-yocto/4.x: vfat feature cleanup
      b80b543 linux-yocto/4.1/4.4: tpm, telemetry, acpi and cpuid changes
      678a02e scripts/contrib: introduce build-perf-test-wrapper.sh
      0c92770 oe-build-perf-test: add --out-dir command line argument
      c3ee14e oe-build-perf-test: enable locking
      eb36f00 oe-build-perf-test: implement --globalres-file option
      8c59636 oeqa.buildperf: add git revision and branch to result data
      964fffa oeqa.utils: add git module
      8329d56 oe-build-perf-test: enable logging into file
      5599645 oeqa.buildperf: archive build/conf into test results
      da3b924 oeqa.buildperf: add test Test4
      fe24b5a oeqa.buildperf: add test Test3
      0b2fae8 oeqa.buildperf: add test Test2
      1701a34 oeqa.buildperf: add test Test1P3
      b5ca437 oeqa.buildperf: add test Test1P2
      2c1b874 oeqa.buildperf: add test Test1P1
      1d88659 oeqa.buildperf: implement BuildPerfTestRunner class
      6512d69 oeqa.buildperf: add method for saving buildstats
      45c6a04 oeqa.buildperf: add method for measuring file disk usage
      1a0e205 oeqa.buildperf: add method to log shell commands
      6e27b2a oeqa.buildperf: method for measuring system resource usage
      1b10ded oeqa.buildperf: add BuildPerfTest class
      cee685c oeqa.buildperf: functionality to drop kernel caches
      7d42cea oe-build-perf-test: introduce oeqa.buildperf module
      c855cb8 oe-build-perf-test: add pre-run sanity check
      14108a8 scripts: introduce oe-build-perf-test
      ec8be20 oeqa.utils.commands: runCmd: return stderr output, too
      cf4c898 oeqa.utils.commands: use get_bb_vars() in get_bb_var()
      c9639e6 oeqa.utils.commands: Introduce get_bb_vars()
      58643b7 lib/oe/package_manager: keep platform_extra and default_platform_extra lists ordered
      6d2bcc2 linux-libc-headers: Update doc for recipe depends
      aa2da21 gstreamer1.0-libav_git: bump version to 1.8.2
      2f5737c gstreamer1.0-plugins-ugly_git: bump version to 1.8.2
      345edd4 gstreamer1.0-plugins-base_git: bump version to 1.8.2
      5e22094 gstreamer1.0-plugins-bad_git: bump version to 1.8.2
      b4fc653 gstreamer1.0-plugins-good_git: bump version to 1.8.2
      869ad20 gstreamer1.0_git: bump to 1.8.2
      6bfec95 gstreamer1.0: Upgrade to 1.8.2
      3e74ef2 kernel-module-split.bbclass: add a prefix for module package name pattern
      fff33f1 watchdog: Fix build with musl
      1bf0944 gcc5: Upgrade to gcc 5.4
      0412b6d uclibc: re-enable verbose compilation
      c1dafd1 uclibc: backport patch to fix gdb 7.11 compilation
      820a9d0 classes/kernel: fix symlink logic when bundling initramfs images
      1b29aff binutils: backport patch to fix mipsel (malta) kernel compile
      aa9fb3f glib: disable valgrind support when compiling in mips16e mode
      fc97ef9 libffi: don't compile in mips16e mode
      90bb7c1 uclibc: don't compile in mips16e mode
      2c80ebf gmp: don't compile in mips16e mode
      d81b918 json-c: backport patch to fix uClibc link issues
      15c3c3e libidn: fix QA warning (uClibc)
      83444bb classes/kernel: fix symlink creation in DEPLOYDIR for bundled initramfs
      dc1b016 musl: Upgrade to tip
      b84875f pythonnative.bbclass, python3native.bbclass: use DEPENDS_append instead of DEPENDS +=
      98121ad recipetool: recognize less common makefile names
      77b5728 systemd: upgrade to 230
      f400833 bash-completion: delete files util-linux provides
      73dcfb6 util-linux: upgrade to 2.28
      52adfed test-dependencies.sh: Strip also '\.bb; .*' before adding failed recipe to list of failed
      3b208bc libcap: fix the libcap-native building failure on CentOS 6.7
      0658935 libsdl2: Add missing comma typo
      cf1af6b pythonnative.bbclass, python3native.bbclass: export STAGING_INCDIR, STAGING_LIBDIR, PYTHON variables
      83b11dc gdb-cross: do not hardcode the use of Python 2
      a3869bf connman-gnome: StatusIcon adapts to size changes
      0cef80f vte: don't build test app
      2ebd117 gsettings-desktop-schemas: inherit upstream-version-is-even
      d818cde cairo: inherit upstream-version-is-even
      fd7a8b2 puzzles: Keep building even with deprecation warnings
      ad439ce clutter-gtk-1.0: Upgrade 1.6.6 -> 1.8.0
      e889651 at-spi2-atk: Upgrade 2.18.1 -> 2.20.1
      169fbdb at-spi2-core: Upgrade 2.18.3 -> 2.20.2
      478d446 atk: Upgrade 2.18.0 -> 2.20.0
      33226ae gtk+3: Upgrade 3.18.8 -> 3.20.6
      ef8bbc7 openssl: prevent warnings from openssl-c_rehash.sh
      2fcece7 bitbake.conf: Drop BUILDSDK_LDFLAGS rpath, rpath-link
      2ef717d qemu: add PACKAGECONFIG stanza for bzip2
      ec64c9c u-boot: extend UBOOT_CONFIG format to support different binary name
      f91a01b e2fsprogs: tweak mke2fs ext4 features
      13eb4a8 gst-player: upgrade to latest HEAD
      c6d50b2 bitbake: lib/bb/build.py: remove task flag in deltask()
      6ae96f7 puzzles: fix Samba conflict, clean up recipe
      8375252 linux-yocto/4.4: sensor driver backports
      f28c266 linux-yocto/4.1: pstate backports
      f775c27 linux-yocto/4.1: driver, mmc and power backports
      48d7ebc linux-yocto/4.1: SPI, MFD, alsa and perf backports
      deced08 linux-yocto/4.1: tpm2, pinctrl, powercap and watchdog backports
      2f9b8e9 initramfs-framework: base: Ensures /run/lock is available
      9623b23 initramfs-framework: mdev: Add a runtime dependency on busybox-mdev
      0c8b264 linux-firmware: add iwlwifi-misc package for remaining iwlwifi firmware
      c406763 linux-firmware: add iwlwifi virtual package of all iwlwifi firmwares
      5f854c2 linux-firmware: fix typo in RDEPENDS line for iwlwifi-6000g2b-5
      4c46ca1 linux-firmware: add LICENSE line for iwlwifi-license package
      87dbb6b linux-firmware: fix typo in LICENSE line for iwlwifi-6000g2b-5
      1960abc oeqa/targetbuild: use os.path.join instead of string concatenation
      40268fe oeqa/targetbuild: add extra_cmds argument to run_configure
      0aa028f oeqa/targetbuild: fix folder name estimate logic
      c844230 tzdata: update to 2016e
      4bd8e67 tzcode: update to 2016e
      313ae0a qemu: Use Gtk+3, add configure patch to find vte
      d8afd0c libmad: remove recipe
      00fea48 gstreamer1.0-plugins-ugly: disable mad, enable mpg123
      6085ce0 mpg123: add a recipe from meta-oe
      ec96025 security_flags.inc: add python3-pycairo and libnewt-python to no-pie exception list
      0881208 security_flags.inc: add SECURITY_NO_PIE_CFLAGS to libgcc and gcc-sanitizers
      95cd78a bitbake.conf: don't set CCACHE_DIR to $HOME by default
      51059ee binutils: configure with --enable-deterministic-archives
      1bf1af5 dbus/dbus-test: upgrade to 1.10.8
      1137709 opkg: upgrade to v0.3.2
      772ba8d openssh: fix init script restart with read-only-rootfs
      e6faa3d packagegroups: use new gst-player package name
      79ca8d0 gstreamer1.0-plugins-bad: Upgrade to 1.8.1
      a029113 expat: CVE-2016-0718
      c0238cb linux-firmware: add iwlwifi-8000C-19 version
      bf54af3 sysprof: fix pkgconfig packaging
      e04da4b autotools: ensure Makefile exists in do_compile
      c2acd4e package_manager.py: specify tmpdir for opkg
      675843d oeqa: fix hasPackage, add hasPackageMatch
      c65cf8e xcb-proto: use python3 instead of python2
      1096a95 toasterconf: exclude releases Toaster can't build
      5e86682 maintainers.inc: remove libmad, add mpg123
      922294d maintainers.inc: reassign vala recipe
      6f0c553 build-appliance-image: Update to master head revision
      b6d61ec e2fsprogs: Manually bump PR due to PV change (work around sstate confusion)
      84cce1d e2fsprogs: remove the extra dot from the recipe filename
      a3494dd sdk-manual: Updated configure.ac file in helloworld example.
      11b6dd1 ref-manual: Updated SSTATE_MIRRORS examples to match reality
      0689732 dev-manual: Updated Runtime Testing for Package Installation
      26d2f28 dev-manual: Updated the method to set SimpleHTTPServer for testing
      fadcb31 ref-manual: Fixed a typo for installing "python3-git"
      ca519a1 dev-manual: Applied edits to the package feed section.
      6b3b444 ref-manual: Updated the UPSTREAM_CHECK_* variables.
      ac8173e dev-manual: Updated Host Server Machine Setup for package feeds
      52fc567 ref-manual: Added note about installing Git-Python package
      f33db8b ref-manual: Updates to the UPSTREAM_CHECK_* variables
      508e890 dev-manual: Review edits applied to the package feed build considerations.
      cd7f787 ref-manual: Edits to UPSTREAM_CHECK_* variables.
      c735ade ref-manual: Added descriptions for three UPSTREAM* variables.
      7ef4a65 dev-manual: Updated Package Feed Creation sections
      44f29bf ref-manual: Updated the INHIBIT_PACKAGE_STRIP variable
      37ec030 build-appliance-image: Update to master head revision
      e6d26f5 package_manager: Fix multilib package arch ordering issues
      95f6e7b bitbake: cooker: clean up EvertWriter
      f6fc25d bitbake: cooker: replace EventLogWriteHandler with namedtuple
      a158388 bitbake: cooker: don't remove event file
      e28b36e bitbake: cooker: encode event objects to base64
      3e7edc3 bitbake: cooker: move EventLogWriteHandler to the top module level
      90d7b09 bitbake: depexp.py: port to gtk+3
      8d56c54 rootfs_rpm: Increase rootfs size
      09d0834 Revert "cmake.bbclass: set the modules directory correctly"
      7b9e1f5 cmake.bbclass: set the modules directory correctly
      8f7f8f7 pseudo: remove rpath from libpseudo.so
      3037e0d useradd-staticids.bbclass: Allow missing UIDs/GIDs to generate warnings
      c99750d useradd-staticids.bbclass: Restore failure on missing UIDs/GIDs
      4ed711a documentation.conf: Add information about USERADD variables
      40f3099 base.bbclass: p4 fetcher supports srcrev
      0006a7f packagegroup-self-hosted: add back Python 2
      4799e1e gtk+3: Add patch for --disable-opengl
      ce5523b bitbake: toaster: remove last css file with bootstrap v2 license
      107d428 build-appliance-image: Add LC_ALL setting and drop pseudo pieces
      9b32dd5 package_deb: Avoid chdir warnings and restore cwd after packaging
      3dfe69b build-appliance-image: Install network components
      f74ba25 bitbake: runqueue: Use tid instead of taskid in find_chains()
      26447a0 bitbake: fetch2/perforce: Rework to support SRCREV and P4CONFIG
      9f91785 bitbake: fetch2: fix unpacking of deb packages
      34dc5b3 bitbake: toaster: fix typo which causes table searches to fail
      d4a87b9 build-appliance-image: Update to master head revision
      772e9b4 bitbake: bitbake: fix wrong usage of format_exc
      39ed544 packagegroup-core-device-devel: add binutils-symlinks
      2a85038 directfb: fix client->gfx_state initialisation
      792fd38 package_ipk: restore cwd after packaging
      70d6306 classes/package: save/restore cwd in split_and_strip_files
      e2e6fe9 classes/kernel: remove path assumptions in compile_kernelmodules
      6f7a3dc classes/image: don't chdir when creating symlinks
      4e1a104 linux-yocto: Update SRCREV for genericx86* for 4.4 Upgrades to Linux version 4.4.13
      f2cf71a linux-yocto: Update SRCREV for genericx86* for 4.1 Upgrades to Linux version 4.1.26
      755bb55 conf/distro: remove oprofileui
      6e53ab4 maintainers.inc: add missing recipes
      282d5f7 core-image-sato: add gtk+ for M1
      1c91694 make: 4.2 -> 4.2.1
      a525a06 gnome-themes-standard: Use distro_features_check for GTK+2
      27f62dc gtk-engines: Remove as unused
      73e9f90 sato-icon-theme: remove as unused
      3abdec9 gtk-sato-engine: Remove as unused
      f5e4aa2 packagegroup-self-hosted: Remove unused theme, use Adwaita icons
      f9c7851 matchbox-desktop: Add Sato folder configuration
      bff5f0e matchbox-session-sato: Update session startup
      dda59dd sysprof: Upgrade to git version slightly past 3.20
      c072545 avahi-ui: Build with Gtk+3
      7bcb1c5 webkitgtk: Disable Gtk2 plugin process by default
      ef3d05a gtk+: RRECOMMEND adwaita theme
      81d0b2d packagegroup-core-x11-sato: Remove gtk-sato-engine
      14b8cb1 libowl: Remove as unused
      e0ba559 libfm: switch to GTK3 version
      1545d3a pcmanfm: switch to GTK3 version
      79faec0 leafpad: Replace with L3afpad
      920fc82 matchbox-config-gtk: Upgrade to 0.2
      457f825 gst-player: Start building with Gtk+3
      70f4651 puzzles: Use Gtk+3 by default
      e4738fd matchbox-terminal: Upgrade to 0.1
      ee0188f vte: Upgrade to 0.44.1
      5b076f9 packagegroup-core-x11: Use adwaita icons instead of sato
      c8044c4 matchbox-keyboard: Enable GTK+3 IM module
      fdbf32b connman-gnome: Add patch to port to Gtk+3
      8e71c58 matchbox-wm: Upgrade to 1.2.1
      8072c70 settings-daemon: Upgrade to 0.0.2
      f1dcc26 sato-screenshot: Upgrade to 0.2
      ff6dd06 matchbox-panel-2: Upgrade to 2.10
      7a69ef0 matchbox-desktop: Ugrade to 2.1
      e618179 matchbox-theme-sato: Upgrade to 0.2
      66c5a4a classes/license: handle EXDEV if hard link to license fails
      4f8f3f6 classes/rm_work: use the idle I/O scheduler class
      fe4184d python3: fix CROSSPYTHONPATH for cross builds
      ce6e49a gcc: make sure header path is set correctly
      66aebcc flex: Fix top_builddir path for flex's test-driver script
      6a27517 linux-yocto/4.1: powerclamp: APL CPU
      96a993b linux-yocto/4.1: Always Running Timer Support
      30a289a linux-yocto/4.1: intel_idle: backport BXT CPU support
      3dcbd12 linux-yocto/4.4: update to v4.4.13
      62f4fa4 linux-yocto/4.1: bump to v4.1.26
      7ccbe39 linux-yocto/4.1: serial, mmc, mtd mainline backports
      280061c classes/sdl: remove pointless class
      1ed0e8a update-rc.d.bbclass: Disable class when sysvinit is not in DISTRO_FEATURES
      44ab979 qemu-native: set ld.bfd, fix cflags, and set some environment vars
      8f9f48a oprofileui: remove
      ff6d458 bitbake: parse/ast, event: Ensure we reset registered handlers during parsing
      27fa181 bitbake: toaster: Remove mismerged files
      af04a52 bitbake: taskdata/runqueue: Rewrite without use of ID indirection
      29b4fb1 bitbake: runqueue: Change buildable/running lists to sets
      7e54da0 bitbake: toaster: tests browser Fix selenium tests after bootstrap3 breakage
      234a625 bitbake: toaster: tests Rename test settings to python compliant name and fix import
      000d724 bitbake: toaster: selenium tests Fix all_projects page and sample tests
      f48feeb bitbake: toaster: selenium tests Update unique custom image string and fix import
      5ee6b70 bitbake: toaster: js tests Twitter typeahead library object is now ttTypeahead
      aa6894a bitbake: toaster: fix wrong usage of print_exc and format_exc
      eb634f9 bitbake: toaster: changed python version in shebang
      0a7bd53 bitbake: toaster: toastergui tests Use new BeautifulSoup syntax
      eba5321 bitbake: toaster: open image files in binary mode when sending in response
      16df75d bitbake: toaster-tests: fix tests for latest Selenium version
      6eefd9c bitbake: toaster: fix broken reference to urllib
      79a3954 bitbake: toaster: fix test_toaster_tables
      4422d26 bitbake: toaster: fix incorrect file mode
      c28f918 bitbake: toaster: decode response content
      1fd1600 bitbake: toaster: fix migrations
      f0740b0 bitbake: toaster: replace viewkeys() -> keys()
      5bebe39 bitbake: toaster: bin Use python 3 for our django modules check
      e23faac bitbake: toaster: BuildTasksTable filters remove outcome NA option
      0db23ae bitbake: toaster: BuiltPackagesTable format empty state in packages table
      1a00cdb bitbake: toaster: build data Fix left navigation
      a7d498d bitbake: toaster: port all build analysis pages to bootstrap 3
      4627183 bitbake: toaster: buildtables Remove links from non name fields
      de3984c bitbake: toaster: fix typo which prevents filters from working
      ef72321 bitbake: toaster-tests: maximize browser window when running UI tests
      dd76400 bitbake: toaster: Rework displaying package dependencies across Toaster
      89433a3 bitbake: toaster: widgets ToasterTable Catch template rendering exceptions
      82722cb bitbake: toaster: tests Add new build tables to tests
      c42f1cc bitbake: toaster: table.js Add the ability to highlight a particular row
      caae3b6 bitbake: toaster: port Installed packages table to ToasterTable
      b2a68f5 bitbake: toaster: port Task tables to ToasterTables widget
      32d1e2d bitbake: toaster: port Built recipes table to toastertables
      a786ac1 bitbake: toaster: port table for Built packages to ToasterTable
      b63f951 bitbake: toaster: ToasterTable widget add an 'a' to Name in Exception class
      0bd6095 bitbake: toaster: toaster tables Enable complex empty states
      443f7b3 bitbake: toaster: Migrate project configuration from bootstrap 2 to bootstrap 3
      79e0eb9 bitbake: toaster: work-around our lack of a synchronous fetch for typeaheads
      cd7b48c bitbake: toaster: migrate typeahead library
      6462202 bitbake: toaster: tests Add a BuildTest helper class
      6f924f3 bitbake: toaster: tweaks to recipe file downloads
      abfd095 bitbake: toaster: testsjs Add call back to append elements on completion of tests
      099f026 gzip: upgrade to 1.8
      3274e76 ncurses: upgrade to 6.0+20160319
      322ada3 pax-utils: upgrade to 1.1.6
      8211709 man-pages: upgrade to 4.06
      466428e libxml2: upgrade to 2.9.4
      4e5128b libnewt/libnewt-python: upgrade to 0.52.19
      f81a018 libgcrypt: upgrade to 1.7.0
      72e560e help2man-native: upgrade to 1.47.4
      a9d1786 gnugp: upgrade to 2.1.12
      16fbcbb ghostscript: upgrade to 9.19
      c6930da dhcp: upgrade to 4.3.4
      7028192 image.bbclass: do exact match for rootfs type
      672c024 xinput-calibrator: add missing dependency for xinput_calibrator_once.sh
      5c94a49 libc-package: ensure glibc-locale package list is deterministic
      87d4da4 webkitgtk: do not inherit pythonnative
      367a102 python3-native Add RPROVIDES python3-importlib-native
      873e56e python-ptyprocess: Extend to cover nativesdk
      57bde45 testexport-tarball: Add default value for TEST_EXPORT_SDK_PACKAGES
      b41b2fa scripts: ensure not specifying subcommand shows help text
      5c1b9fd devtool: reset: allow specifying multiple recipes
      dd6d61a devtool: tweak README in created workspace layer
      a0006fd python-mako: rm -df -> rmdir
      0918ac9 staging: Add BB_SETSCENE_VERIFY_FUNCTION2 for bitbake runqueue changes
      f491996 binutils: fix the incorrect assembling for ppc wait instruction
      559dba8 strace: 4.11 -> 4.12
      632b773 tcl: 8.6.4 -> 8.6.5
      e5043db libcap: 2.24 -> 2.25
      791e18a libbsd: 0.8.2 -> 0.8.3
      f221f33 e2fsprogs: 1.42.99+1.43+git -> 1.43
      ce0a036 make: 4.1 -> 4.2
      ca9af20 git: 2.8.2 -> 2.8.4
      306e8b8 mklibs-native: 0.1.40 -> 0.1.41
      e19af01 file: 5.25 -> 5.27
      4690723 autogen-native: 5.18.6 -> 5.18.10
      4b77707 resolvconf: upgrade to 1.79
      ff1105f pciutils: upgrade to 3.5.1
      ad63662 tar: upgrade to 1.29
      df25fcd curl: upgrade to 7.49.1
      d665bfb byacc: upgrade to 20160324
      523382d sudo: upgrade to 1.8.16
      2a6da10 sysstat: upgrade to 11.3.4
      20a9c29 grep: upgrade to 2.25
      e9987f6 systemd-boot: Set COMPATIBLE_HOST in recipe
      71765a9 bitbake: cooker.py: fix warn() -> warning()
      f2e5d88 bitbake: data_smart/utils: Add 'd' to the context used for better_eval in python expansion
      a1a0ce1 scripts/lib/bsp/engine.py: Added missing parentheses to string formatting
      7fc6c45 scripts/lib/bsp/kernel.py: python3: use explicit relative imports
      dd20de9 scripts/lib/bsp/engine.py: Rename raw_input commands to input
      0aa5c27 scripts/yocto-bsp: Fixed typo in parameter that was causing exception
      9199a25 systemtap: add build dependency on ncurses
      db84521 oe/distro_check.py: Fixes for python3
      4c38798 useradd-staticids.bbclass: Avoid FutureWarning about split()
      93698ac useradd-staticids.bbclass: Make sure opened files are closed
      a912099 mips: add tunes for (some) 24K cores
      7acb3db mips: add a tune for using MIPS16e ASE instructions
      ef35fac uclibc: never build with SSP
      b709c6c uclibc: no need for CONFIG_MIPS_ISA_xxx config options
      9ac4c8b image/image_types.bbclass: fix fatal error during cpio debugfs creation
      3332061 libjpeg-turbo: update to 1.5.0
      4078b77 gnutls: update 3.4.9 -> 3.4.11
      cfac890 weston: Fix bug causing the xwayland package to always be included
      0c9c349 adwaita-icon-theme: Split symbolic icons into 2 packages
      e501d6f gtk+3: Add RRECOMMENDS to match gtk+
      b0c69fe gtk-immodules-cache: Support both GTKs at same time
      b72c246 distcc: Disable GTK UI by default
      7888c74 oh-puzzles: Remove as we're using puzzles now
      f04d8bc packagegroup-core-x11-sato: Use puzzles instead of oh-puzzles
      947d41a gnome-themes-standard: Add new GTK+2 theme
      21343ac npm.bbclass: avoid str/byte conversion problems for PKGV and SUMMARY
      b2b1a5f buildhistory-diff: suggest correct version of PythonGit
      a6da506 weston-init: Don't change XDG_RUNTIME_DIR if it already exists
      7950a90 weston-init: Use bitbake path variable
      be82bdd x11-common: Fix XDG_RUNTIME_DIR typo
      5edb12b python: Several recipes needed SRC_URI updating
      61ba930 oe-pkgdata-util: new option to provide full info for binary package(s)
      8a6c198 lib/oe/terminal.py: decode bytes variable before rstrip/split
      09b9325 python3-pygobject: Upgrade from 3.18.2 to 3.20.1
      cf12463 avahi: add extra path to GIR_EXTRA_LIBS_PATH
      fed0933 python3-pygobject: only check for even upstream versions
      bfade8c bash-completion: fix upstream version check
      35fb16d python-numpy: Upgrade from 1.10.4 to 1.11.0
      6aaeced python3-pip: Upgrade from 8.0.0 to 8.1.2
      313a5f5 python-scons: Upgrade from 2.4.1 to 2.5.0
      07c5fd7 python-pexpect: Upgrade from 4.0.1 to 4.1.0
      84e9f80 python-mako: Upgrade python-mako and python3-mako to 1.0.4
      03fa693 python-git: Upgrade from 1.0.2 to 2.0.5
      f69acee python-setuptools: Upgrade to 22.0.5
      3411d2d eudev: upgrade to 3.2
      98fbdc7 runqemu-internal: Update the qemuzynq boot options
      768dcc1 webkitgtk: disable gobject-introspection on mips64
      abd5c11 packagegroup-self-hosted: port to Python 3
      24dc5fc perl: fix several perl test failures
      7ff9c5f perl: some perl tests require libssp
      16f0c78 perl: set proper perl subversion number in config files
      ff3bc6c runqemu: Add suport for qemuzynqmp
      21fbcdb packagegroup-self-hosted.bb: remove unsuitable network related dependence
      40e789d bitbake: lib/bb/main.py: Fix use of BBPOSTCONF and BBPRECONF
      db7ec6c oe-pkgdata-util: fix AttributeError
      4a842cc selftest/testexport.py: Add test test_testexport_basic
      2228b16 testexport.bbclass: Create tarballs for easy release
      120f706 testexport.bbclass: Add support for testexport-tarball
      7d18d9f testexport-tarball.bb: Add recipe
      cfe3efd testimage.bbclass: Make dependency of cpio when using RPMs
      938f053 oetest.py: Add install/uninstall functionality for DUTs
      d9b3ee8 lib/oeqa/otest.py: Fix import tests from other layers with python3
      84441a9 oe/lib/pacakge_manager.py: Update missing pipeline decoding
      d28781b alsa-plugins: 1.1.0 -> 1.1.1
      4c63497 alsa-utils: 1.1.0 -> 1.1.1
      c883f4c alsa-lib: 1.1.0 -> 1.1.1
      adfec92 alsa: update BUGTRACKER links
      b7cd72c opkg-utils: update SRCREV
      d9e47a5 rm_work: exclude all kernel recipes
      a2eb6d4 gobject-introspection: move to Python 3
      794a23a db: add RECIPE_NO_UPDATE_REASON
      aafcdd0 linux-yocto/4.4: mmc backports
      7bb3651 yocto-bsps: add i2c definitions to beaglebone
      87dc548 linux-yocto/4.4: bump to v4.4.12
      a7ddbea meta: Drop swabber
      c2dbcbb scripts/lib/bsp/engine.py: Added missing keyword to fix syntax error
      cffea7f maintainers.inc: change maintainer of db package
      9c75c64 kernel-dev: Fix the locations of .config and source directory
      25d8fac profile-manual: Added cross-reference links to INHIBIT_PACKAGE_STRIP
      ceb7c51 ref-manual: Fixed *[doc] string for INHIBIT_PACKAGE_DEBUG_SPLIT
      6c5fea2 documentation: Prepared manuals for a 2.2 release.
      8fc310c ref-manual: Added BlueZ version 5 feature to distro feature section.
      6c5d7f1 lib/oe/package_manager: adapt for Python 3
      5481363 libarchive: respect disable-acl configuration option
      04319c0 image-buildinfo: Update to python3 syntax
      928e133 libarchive: Add PACKAGECONFIG for lz4 to ensure determinism
      81b59a1 dpkg: Upgrade to 1.18.7
      b7644fc ofono: update to 1.18
      25586a3 gnome-desktop3: update to 3.20.2
      0fb7a43 watchdog: update to 5.15
      d2d5bf5 systemtap: update to 3.0
      41f1882 msmtp: update to 1.6.5
      9b93787 libxslt: update to 1.1.29
      eddd0ec libksba: update to 1.3.4
      7183a89 kexec-tools: update to 2.0.12
      878ca63 iso-codes: update to 3.68
      d44fcb3 icu: update to 57.1
      64e6409 mc: update to 4.8.17
      2a16d50 gobject-introspection: update to 1.48.0
      3b85abf gdb: fix upstream check
      02d0933b gcc: fix upstream check for 5.x version
      09f1f30 cantarell-fonts: update to 0.0.24
      063d49b ffmpeg: update to 3.0.2
      5200775 build-appliance-image: update version to 15.0.0
      88ac059 btrfs-tools: update to 4.5.3
      f6f7db7 boost: update to 1.61.0
      7a0ef75 cantarell-fonts: fix upstream check
      91874ce tzcode, tzdata: fix upstream version check
      ce3ab76 cups: fix upstream version check
      da4abff webkitgtk: upgrade to 2.12.3
      2d97d69 rt-tests, hwlatdetect: upgrade to 2.0
      9e29916 gdbm: upgrade to 1.12
      4b4e182 toasterconf.json: exclude releases Toaster can't build
      df963f5 scripts/pybootchart: Fix print statement
      438ac32 bitbake: codeparser: Use hashlib for hashing, not hash()
      5f2facf bitbake: codeparser: Small optimisation to stop repeated hash() calls
      7e73990 scripts: python3: change python to python3 in shebang
      3e309e0 scripts: python3: decode subprocess output
      3af9f6b engine: python3: replace iteritems() -> items()
      c675974 scripts: python3: replace exec statement with builtin
      059dd9f scripts: python3: use explicit relative imports
      d1421df engine.py: python3: rename sys.maxint to sys.maxsize
      ecc9184 scripts: python3: use new metaclass syntax
      5483fa2 scripts: python3: rename raw_input to input
      02ac95a bitbake: fetch2: fix unpacking of deb packages
      08c6808 bitbake: fetch2/git.py: References must match exactly
      2660dde bitbake: cookerdata: print an error if layer dir does not exist
      c8aad90 send-error-report: encode data to bytes
      14b758b lib/oe/buildhistory_analysis: fix for Python 3
      a8cf2ce security_flags.inc: add an entry for python3-numpy
      91a7f54 testexport.bbclass: Update to use python3
      1a2a69e dosfstools: Upgrade 3.0.28 -> 4.0
      469e56b image-live, image-vm, wic: Remove fs size workaround
      48bc623 mtools: Patch out a useless sanity check
      309c0b6 ca-certificates: add dependency for native/nativesdk on openssl-native
      cdff6bc scripts: python3: change python to python3 in shebang
      4e36eee scripts: python3: decode subprocess output
      a8314b9 combo-layer: python3: use tempfile.TemporaryFile
      f1e85d4 dirsize: python3: fix TypeError: unorderable types
      a404542 combo-layer: python3: import reduce
      64987b2 scripts: python3: use new metaclass syntax
      b05bf8c scripts: python3: get rid of __future__ imports
      793b83a scripts: python3: rename raw_input to input
      90e7fee ksize.py: python3: get rid of strings.join
      f6f1085 scripts: python3: fix urllib imports
      ee31bad scripts: python3: use new style except statement
      07c97db scripts: python3: convert iterables to lists
      1132970 automake: drop the Python scriptlets to determine Python's directories
      5796328 python3-numpy: add a recipe
      7f2ac59 hwlatdetect: move to Python 3
      caf553b libcap-ng: move to Python 3
      cc95c79 systemtap: move to Python 3
      eb80ec9 lttng-ust: move to Python 3
      8fdb4be lttng-tools: move to Python 3
      76d6f00 gnome-doc-utils: remove recipe
      296004a libnewt-python: move to Python 3
      0789227 libuser: move to Python 3
      444da83 python-docutils: move to Python 3
      68cea00 python-imaging: remove unused recipe
      5cd554f python-pyrex: remove unused recipe
      991a713 swig: move to Python 3
      609bf2e gdb: move to Python 3
      ada03c3 bootchart2: move to Python 3
      4672ffa python-pycairo: move to Python 3
      a8d85cf util-linux: move to Python 3
      8c1aa8b systemd: drop python dependency for ptests
      96f8845 nfs-utils: switch to Python 3
      6042021 packagegroup-core-full-cmdline: drop python-dbus from the list of services
      0bde4b9 ofono: drop the custom-made revert to Python 2 from Python 3
      5a3a4a7 connman: do not install Python test scripts
      eb45d83 bluez5: switch to Python 3
      48bd640 neard: do not package python test scripts
      4de7a81 python-pygobject: port to Python 3
      900674e dbus-test: remove unneeded pygobject dependency
      2e5367e glib: move to Python 3
      f5d36b1 python3: drop 110-enable-zlib.patch
      141fa73 python-dbus: update to 1.2.4, port to python 3
      a17e159 bind: switch Python dependency to Python 3.x
      c71f5ab systemd: support systemd-boot as a stand-alone EFI bootloader
      4082974 pango_1.40.1.bb: Fix compilation error
      2ce2225 libpam: update dependency list
      d62aed1 iw: update to version 4.7
      b6951c7 libsdl2: Fix build with wayland 1.10
      59b6a03 syslinux.bbclass: Added configurable SYSLINUX_ALLOWOPTIONS variable
      0726b2d bitbake: bitbake-layers: show-layers: disable parsing
      dcbfc72 poky: Add Ubuntu 16.04 to tested/supported list since I run it myself
      5a9745d distro_check.py: Don't mix tabs and spaces
      3a76339 bitbake: toaster: use python3 explicitly
      2b362f6 bitbake: toaster: fix urllib imports
      2de58c9 bitbake: toaster: don't use mru.count in the template
      ce9cff5 bitbake: toaster: use // operator instead of /
      9434eee bitbake: Revert "buildinfohelper: work around unicode exceptions"
      2448df7 bitbake: xmlrpc: add parameter use_builtin_types
      7cd7680 bitbake: toaster: use knotty when working with bitbake server
      15bb3d4 bitbake: toaster: fix migrations
      de21205 bitbake: toaster: moved import bb.server.xmlrpc
      5074c60 bitbake: toaster: read timezone files in binary mode
      cf454d7 bitbake: toaster: use re.sub() instead of translate()
      d393fe6 bitbake: toaster: replace map with list comprehensions
      314541f bitbake: toaster: use items and range instead of old APIs
      96ce543 bitbake: toaster: use decode('utf-8') for binary data
      46ed4ff bitbake: toaster: modified list of dependencies
      9a3f2b3 bitbake: toaster: fix local imports
      0224f75 bitbake: toaster: fix imports to work for python 3
      bbc6e75 bitbake: toaster: get rid of using reduce
      7c44d88 bitbake: toaster: use force_text instead of force_bytes
      8a93f5f bitbake: goggle/image-writer: Drop since bitrotting and no longer used
      685628e bitbake: image-writer/goggle: Disable pygtkcompat problems
      e80a8c2 bitbake: lib/bb: Set required python 3 version to 3.4.0
      a15e538 bitbake: data_smart: Simplify ExpansionError exception
      0f2c593 bitbake: bitbake: Convert to python 3
      ef1df51 bitbake: bitbake: Drop futures usage since we're python 3
      deca147 bitbake: bitbake/pyinotify.py: Upgrade to py3 version
      822eabf bitbake: bitbake/bs4: Upgrade 4.3.2 -> 4.4.1 (python 3 version)
      4f89593 oeqa/selftest/recipetool.py: Tweak matching of warning line
      440c681 qemurunner: Use surrogateescape decoding
      76aefc4 devtool.py: Fix parsing of bitbake-layers' output
      e2e3fa4 buildhistory_analysis: Convert stream data (bytes) to strings
      89d40a1 selftest/devtool: Compare sets instead of arrays on AssertEqual
      3b39971 classes/lib: Complete transition to python3
      52c4b7f scripts: use python3 in shebang
      0d7db8e scripts: Fix urlparse imports for python3
      fa4275b scripts: Rename ConfigParser -> configparser for python3
      3ee70cb scripts: Fix encoding errors for python3
      ed7abe6 scripts: Replace basestring -> str for python3
      7eab022 scripts: Fix deprecated dict methods for python3
      63404ba qemurunner: convert data when working with socket
      aa10d71 wic: encode help text
      ddbd307 wic: use python3 in shebang
      dca3aba sanity: Switch urlparse to urllib.parse
      642a997 classes/lib: Update xrange -> range for python3
      44e9a0d classes/lib: Update to explictly create lists where needed
      8587bce classes/lib: Update to match python3 iter requirements
      a7309d5 classes/lib: Update to use python3 command pipeline decoding
      297438e classes/lib: Convert to use python3 octal syntax
      c77e7b8 oe-buildenv-internal: Update to python3
      3c42280 sanity: Drop setting C locale
      ab75075 scripts: python3: Use print function
      fc79776 scripts/lnr: update for python3
      2e38804 scripts: python3: Use print function
      79be110 systemd: allow add users as a rootfs postprocess cmd
      cdd764c openssl: fix the dangling libcrypto.a symlink
      af587b8 package.bbclass: fix strip and split logic
      5efe4c9 perl-ptest.inc: fix tar call to prevent objcopy failure
      37688b3 insane: return line-feeds to qa.log
      51c6704 bluez5: update to 5.40
      078b867 libpng: update to 1.6.22
      763a3d4 unzip: fix security issues
      c6e5c00 libarchive: Upgrade to v3.2.0
      9d7867a python-numpy: move recipe to own directory
      083d0aa python3: add = to -L linking option only when the path is absolute
      a80a5b1 python3-nose: add a recipe
      f540622 python3-mako: add a Python 3 recipe
      be4e792 cracklib: disable building the python module
      79797a8 subversion: remove unnecessary python dependency
      2efef0c qemu: remove runtime python dependency
      d78beb7 git: remove Python package (to which nothing was packaged)
      3e03ca7 python3: manipulate all of the config*/Makefile files, not just config/Makefile
      2fe44ef avahi-ui: remove support for building a python module
      0b38900 sip.bbclass: remove
      1c83fcd default-versions.inc: drop python-related defaults
      03da683 python3-dir.bbclass: add a separate class for Python 3
      78502a8 distutils-native-base.bbclass, distutils3-native-base.bbclass: remove
      4977a07 python-native, python3-native: remove the use of exported HOST_SYS and BUILD_SYS variables
      49557a5 recipetool / devtool: set a fixed SRCREV by default when fetching from git
      0a7c699 recipetool: create: use ${BP} for subdir for binary packages
      eb09735 recipetool: create: extract variable values from .deb/.ipk/.rpm
      2b510f5 recipetool: create: support extracting SUMMARY and HOMEPAGE
      c056dad lib/oe/recipeutils: fix insertion of variable values
      9f56b98 lib/oe/recipeutils: patch_recipe_lines: allow omitting trailing newlines
      c93602c lib/oe/recipeutils: split out patch_recipe_lines()
      fcc2c3c yocto-bsps: Update to 4.1 to include musb fixes
      04777ae yocto-bsps: update to 4.1.24
      2b82b59 linux-yocto/4.1: fix musb compilation error
      5224ac7 linux-yocto: only use intel branches for optimized platforms
      141bf482 linux-yocto: create intel branches
      4dc5ec2 linux-yocto:4.4: broxton backports
      c1a4ddd layer.conf: Whitelist ca-certificate dependency on openssl
      f8ff1f2 ca-certificates: Add openssl as a runtime dependency
      f053b5f initscripts: check if swapon/swapoff exists before executing them
      b426b2b uboot-sign: rebuild u-boot.img with signed dtb
      8d7f58b u-boot: replace old-style shell syntax with the modern one
      6b38e77 xcb-proto: remove stale git recipe and now redundant .inc
      ea9d27a libxcb: upgrade to 1.12
      621a038 xcb-proto: upgrade to 1.12
      8c3add9 libsecret: upgrade to 0.18.5
      ae7898c liburcu: upgrade to 0.9.2
      e3ba64a gcr: upgrade to 3.20.0
      8e23a04 babeltrace: upgrade to 1.3.2
      8fd1a59 msmtp: upgrade to 1.6.4
      1b71c59 gobject-introspection.bbclass: disable introspection for -native and -nativesdk recipes
      0f64a71 lib/oe/package_manager.py: Add pkgpath to dict returned by package_info
      d56ccf6 oetest.py: Add support to copy unextracted packages for runtime testing
      92afca7 oetest.py: Add extract_packages() to RuntimeTestContext class
      8a68910 oetest.py: Add json file support to specify packages needed in runtime tests
      3a81a3d xmlto: xmlto needs tail to run
      2dbd873 libgpg-error: Upgrade 1.21 -> 1.22
      145d285 gnupg.org-hosted recipes: Change SRC_URI to https site
      2e74e4c libevdev: Upgrade 1.4.6 -> 1.5.1
      dff8ca2 gtk+: Upgrade 2.24.29 -> 2.24.30
      1645e71 clutter-gst-3.0: Upgrade 3.0.16 -> 3.0.18
      095f03c clutter-1.0: Upgrade 1.24.2 -> 1.26.0
      c342731 coreutils: revert upstream commit causing havoc with ls output
      91488e9 wic: bootimg-efi: include startup.nsh if it's available
      837670e gummiboot.bbclass: also write startup.nsh for non-iso
      dbee7ae grub-efi.bbclass: also write startup.nsh for non-iso
      affb439 linux-firmware: update to git rev 80d463be82
      87f0a82 libpam: update to 1.3.0
      52d130d dropbear: Remove incorrect SFTPSERVER_PATH from CFLAGS
      1eca8ea docbook-xsl-stylesheets: Upgrade 1.78.1 -> 1.79.1
      c45c942 kernel: Make symbol link to vmlinuz in boot directory
      0437a59 kernel: Add KERNEL_IMAGETYPES to build multi types kernel at one time
      077377e cpio: Add native variant
      6a7138e oeqa/utils/package_manager.py: Add get_package_manager()
      daf0cc3 oetest.py: Move getTests() outside loadTests() method
      549f134 testexport.bbclass: Stop exporting test context
      c358ab5 nopackages.bbclass: deltask foo_setscene
      fbb6775 libjpeg-turbo: set SUMMARY
      2c7cf13 gobject-introspection: set SUMMARY and HOMEPAGE
      4dd7a01 argp-standalone: set SUMMARY instead of DESCRIPTION
      8e2617a signing-keys: set SUMMARY instead of DESCRIPTION
      0c2972b fts: set SUMMARY instead of DESCRIPTION
      3a31047 bsd-headers: set SUMMARY instead of DESCRIPTION
      4d6f027 dhcp: fix non-deterministic libxml2 dependency
      a0acd70 gcc: Backport nios2 gcc ICE fix
      899358a npm: add target_arch flag to npm
      7fed397 ghostcript: Set UPSTREAM_CHECK_URI variable
      7b3061e sanity: check that the en_US.UTF-8 locale exists
      4c3738c diffutils: Add patch to fix gplv2 version with gcc6
      239efcc tcmode-default: Bump gcc
      2718e84 yocto-bsps: update to 4.4.11
      56ab1a5 linux-yocto/4.4: integrate v4.4.11
      1e9c392 linux-yocto/4.4: beaglebone: build in the usb controller drivers
      9a38dc6 linux-yocto/4.1: v4.1.24 and gcc6 powerpc fixes
      ce37657 sqlite3: update to 3.13.0
      9ade84b iproute2: upgrade to 4.6.0
      44e4d20 matchbox-keyboard: Upgrade
      b5fe460 mesa-demos: Upgrade 8.2.0 -> 8.3.0
      6ec0804 fontconfig: Upgrade 2.11.94 -> 2.11.95
      8aad230 dropbear: Upgrade 2015.71 -> 2016.73
      8a97d9e mkelfimage: fix compile issues
      06563e6 openssl: Ensure SSL certificates are stored on sysconfdir
      0b1a03e ca-certificates: Use c_rehash utility
      0a84108 openssl: Add Shell-Script based c_rehash utility
      1cdd979 sstate.bbclass: Don't create symlinks, download to the correct location
      2d0a5c8 devtool: upgrade: clarify help text for --srcrev option
      93a1c01 devtool: upgrade: tweak conflict handling
      ab22745 devtool: upgrade: handle upgrading recipes with a versioned inc file
      c7e614c useradd: Fix infinite build loop
      32bbf68 meta-yocto-bsp: Enable xf86 modeset for beaglebone
      bd7b363 linux-yocto-rt, core-image-rt*: Explicitly skip when PREFERRED_PROVIDER_virtual/kernel isn't set to linux-yocto-rt
      21af6c6 scripts/bitbake-whatchanged: migrate from optparse to argparse
      aac3659 core-image-{minimal, testmaster}-initramfs: set COMPATIBLE_HOST
      1974624 image.bbclass: additional output in create_symlinks
      e7b5bd2 image.bbclass: support duplicate compression types
      96b1eb4 coreutils: Fix rootfs creation errors
      34d64f0 net-tools: Fix rootfs creation errors
      f8aa96e shadow: Fix rootfs creation errors
      b414b50 musl: Update to latest tip
      ff35bfa qemu: Upgrade to 2.6.0
      bc155f8 harfbuzz: update to 1.2.7
      fb51dc9 libsolv: update to 0.6.21
      133ad83 libsoup-2.4: provide PACKAGECONFIG for gssapi
      2c1aa9c cmake: update to 3.5.2
      9157c11 ghostscript: Update URL_SRI considered as 'old release'
      f2092e6 systemd: re-enable mount propagation for udevd
      13df45b package_manager: no need to output Note: in bb.note() calls
      456b222 wipe-sysroot: fix wrong glob when removing manifests
      f9b0781 scripts/oe-selftest: Remove inadvertant python3 specific change
      66b484f python-smartpm: Avoid locale issue with bitbake python3
      d57de67 bitbake.conf/toolchain-shar-extract: Use en_US.UTF-8 as locale
      3ddde5f meta: Update to modern exception syntax
      01d07f3 kernel-uimage: Fix python indentation
      8897211 meta/scripts: python3: rename file -> open
      ffe9604 meta/selftest/scripts: Use print function for python3 compatibility
      0298688 devtool: sdk-update: drop support for local updates
      0111181 nativesdk-glibc: Extend relocation support to locales
      6b3ac01 glibc-locale: Enable binary locale generation for nativesdk-glibc
      72fb52e build-appliance-image: use 'lnr' instead of 'ln -sr'
      22a55ba lttng-modules: Upgrade to 2.7.3 release
      fe70c06 mkelfimage: obey LDFLAGS, sort out HOST_ flags
      d61d4ba core-image-weston: If X11 is enabled, add XWayland support
      5fb0c1e weston-init: Use weston-launch when starting weston as the first windowing system
      7b779c8 weston: Add Xwayland initialization support using weston-start
      5afb6a9 weston-init: Add module support for the weston-start helper
      71b3566 weston-init: Error out if loading a nested instance
      2f0283a weston-init: Rework init sequence to avoid code duplication
      d46c5be weston-init: Rework do_install to use install -D option
      959237e weston: Provide a default version of weston-launch that doesn't require PAM
      9a9f04f weston: Remove XWayland dependencies on PACKAGECONFIG
      9b5abe2 weston: Enable XWayland when X11 and Wayland support are available
      ecd8d88 weston: Add PACKAGECONFIG option for 'clients'
      959bec1 weston: Fix SystemD service description
      e2f31e1 weston: weston-launch: Handle invalid command line options
      2192a48 bitbake: cooker: Fix parse progress for python3
      e73a85b lib/oe/rootfs: Fix DEBUGFS generation, without openssl
      bf4616d gdb: Backport patch to changes with AVX and MPX
      070ea45 acl.inc, run-ptest: improve ptest functionality on limited rootfs
      599933c mesa: fix mesa_populate_packages() when dri is disabled
      70b0e62 wic: fix path parsing, use last occurrence
      55159ef classes/kernel: check OLDEST_KERNEL at configure time
      02587c4 classes/kernel: fix typo
      55c383d bluez5: fixed path to bluetoothd in sysvinit script
      b0207e7 qemu: Upgrade to 2.5.1.1 for fix CVE-2016-3710 and CVE-2016-3712
      1bf7a81 openssh: update homepage and summary
      fd436a2 classes/populate_sdk_ext: adjust variable blacklisting
      711185d linux-dummy: set INHIBIT_DEFAULT_DEPS
      d3a2da4 kernel: fitimage: Repair misuse of shell test command
      5ca7cbf bluez5: move btmgmt to common READLINE section
      de18e6b webkitgtk: turn off JIT on armv4 and armv7a
      982b631 mesa-demos: provide option for disabling GLX demos
      409c940 bitbake: toaster: tests builds Add SSTATE_MISS as a valid condition for tc=833
      0664a89 bitbake: toaster: tests build Add a test for a build of core-image-minimal
      085688c bitbake: toaster: tests Add a BuildTest helper class
      5ce1adb bitbake: toaster: Add a specific test settings file
      82dc991 bitbake: toaster: runbuilds move the execution sequence out of the poll loop
      db84307 bitbake: toaster: Remove DATABASE_URL being passed around as an environment var
      8fba59c bitbake: toaster-tests: tests for project config
      1aab29e bitbake: toaster: projectconf Small tweaks to IMAGE_FSTYPES form
      c81d03e bitbake: toaster: handle multiple imagefs types
      5444aba kernel: moves KERNEL_SRC_PATH to bitbake.conf
      a53a9dd zip: update SRC_URI
      8949d25 unzip: update SRC_URI
      7dbdef4 libgudev: fix upstream check
      69dfa87 freetype: fix upstream check
      9f447ba package_regex.inc: remove deprecated file
      efd892b yocto-uninative: Update to 1.1 tarball (new version of glibc)
      18eccfa rootfs.py: Unify _log_check_warn() and _log_check_error()
      9948e0d rootfs.py: Reduce spam from _log_check_warn()
      79d1778 rootfs.py: Exclude lines in _log_check_warn() as well
      e3e8d50 rootfs.py: Use one way to exclude lines in _log_check_error()
      a653f36 rootfs.py: Simplify the regular expression used in _log_check_warn()
      d416a4e rootfs.py: Remove _log_check_error() from the RpmRootfs class
      c60134f Revert "rootfs.py: add more info to the warning message"
      458f824 sysprof: Disable nios2 support
      e1ec420 elfutils-0.148: Fix build with gcc6
      fd36a44 systemd: Create missing sysusers offline
      553fa35 useradd.bbclass: Strip trailing ';' in cmd params
      c9867c4 bitbake: cooker: Improve taskgraph file handling
      2970800 bitbake: codeparser: Increase cache version after code parser dependency changes
      1fb330b bitbake: bb.codeparser: track variable flag references
      32ee30a bitbake: Provide LAYERDIR_RE for layer.conf
      90bc9b4 bitbake: cache: Increase cache version after task checksum calculation changes
      692b874 bitbake: Implement support for per-task exports
      a809f1c bitbake: bb.cooker: show limited traceback for parsing ExpansionError
      b00282f makedevs: fix security issues
      c676d5d zip: fix security issues
      8ed2551 stat: fix security issues
      1613275 pixman: Fix build on arches not defining FE_INVALID exception
      479780d buildtools-tarball: add nativesdk-locale-base-en-us
      9f92167 buildtools-tarball: replace nativesdk-python with nativesdk-python3
      a2e3f17 buildtools-tarball: remove nativesdk-python-pexpect
      65ab096 python3-git: add it for buildtools-tarball
      57c50be python3-gitdb: add it for python3-git
      643b444 python3-async: add it for python3-gitdb
      e0b7ecc python3-smmap: add it for python3-gitdb
      1e24447 useradd: use bindir_native for pseudo PATH
      90cb500 openssh: Backport fix for CVE-2015-8325
      4d72f50 openssh: Upgrade 7.1p2 -> 7.2p2
      ce2dd24 scripts/oe-selftest: Improve listing by reducing unneeded spacing
      978d450 oe-selftest: wic: add test_bmap test case
      471a816 wic: add help for --bmap commandline option
      b580449 wic: implement --bmap option
      a49d279 wic: add bmaptool to the list of utilities
      37abaa3 mkefidisk.sh: mount images as read-only
      e44c849 python-smartpm: Remove unnecessary error reporting improvement patch
      be0cabf python-smartpm: Don't ignore error if RPM transaction fails without problems
      e89c6c4 python-smartpm: Fix channel command --remove-all option (again)
      350d939 python-numpy: fix build failure with python-matplotlib
      b4c23e9 oetest.py: Use the real ExportTestContext in exported tests
      86d65d7 oetest.py: Add default pscmd to oeTest
      20afc59 testimage.bbclass: Remove exported test
      41fbf2c oeqa/runexported.py: Remove host dumper
      b3a6563 testexport.bbclass: Split testimage class
      a9eb22e oeqa/oetest.py: Add class ExportTestContext
      e090775 pseudo: Work around issues with glibc 2.24
      3eb00d6 glibc: Add missing patch hunk back
      7707cf6 sdk-manual: Fixed three broken links to sections within manual.
      ba91c24 pkgconfig: Update AM_GLIB_GNU_GETTEXT macro
      7cfaf9f gnome-doc-utils: Update AM_GLIB_GNU_GETTEXT macro
      d972c62 weston: Upgrade 1.9.0 -> 1.10.0
      aac99fb wayland-protocols: Add recipe
      c88aee4 wayland: Upgrade 1.9.0 -> 1.10.0
      93e7f38 glib-2.0: Upgrade 2.46.2 -> 2.48.1
      6bbe4fe bitbake: bitbake-layers: convert to plugin-based
      07eebc6 bitbake: knotty: Fix output buffering issues
      62384f5 bitbake: siggen: Fixes to handle sigdata/siginfo files only containing basehash data
      74ae91e bitbake: toaster: don't show "Rebuild" button for cancelled cli builds
      d9d715b bitbake: toasterui: capture keyboard interrupts the same way as knotty
      df0fc2d bitbake: buildinfohelper: add method to set current build as CANCELLED
      3718f8d bitbake: toaster: toastergui tests Fix toastertable tests
      54bf7cc bitbake: toaster: toastertables: Clean up and fix up a number of items
      a906a09 gcc: Security fix CVE-2016-4490
      a1928c8 gcc: Security fix CVE-2016-2226
      23f0032 gcc: Security fix CVE-2016-4489
      02321b6 gcc: Security fix CVE-2016-4488
      e3eaef7 eudev: remove eudev-hwdb from RRECOMMENDS_eudev
      3da513b mesa-demos: OpenVG demos with single frame need eglSwapBuffer
      d28ab58 classes/base: get_lic_checksum_file_list imporve validaton of url's
      4725d90 coreutils: fix for native and nativesdk
      da53c7d oe-buildenv-internal: add BBPATH_EXTRA to BB_ENV_EXTRAWHITE_OE
      46cf6f5 gnu-efi: set COMPATIBLE_HOST_armv4 to null
      d34237c cogl-1.0: set COMPATIBLE_HOST_armv4 to null
      a994ad9 openssh: change URI to http:
      3fec661 perl: use PACKAGESPLITFUNCS instead of populate_packages_prepend
      9e48d19 libsolv: upgrade to 0.6.20
      53b05b5 libproxy: update to version 0.4.13
      31af290 xproto: Upgrade 7.0.28 -> 7.0.29
      d4099e1 expat: Upgrade 2.1.0 -> 2.1.1
      169852e libsoup-2.4: Upgrade 2.52.2 -> 2.54.1
      249dd79 json-glib: Upgrade 1.0.4 -> 1.2.0
      b1f4932 inputproto: Upgrade 2.3.1 -> 2.3.2
      d63463b gsettings-desktop-schemas: Upgrade 3.19.3 -> 3.20.0
      7e96b68 gdk-pixbuf: Upgrade 2.32.3 -> 2.34.0
      53c4318 pango: Upgrade 1.38.1 -> 1.40.1
      29b9316 glib-networking: Upgrade 2.46.1 -> 2.48.2
      7db0cc2 sstate: Ensure we sort the value used for SSTATETASKS for determinism
      9094ea9 classes/oeqa: Update for print statements and file() -> open() for python3
      ca2edae oeqa: Print function python3 fixes
      52b3cc9 tcmode-default: Bump glibc,gdb
      45da72b security_flags: Enable security flags on leafpad, ltp and libuser.
      b830a97 leafpad: Fix security formating issues.
      6523854 libuser: Fix security string formatting issues.
      eecba71 ltp: Fixes security string printf on testcases/network/nfsv4/acl/acl1.c
      574e9f4 linux-yocto/4.4: gcc6 build fixes (powerpc and mips)
      531c354 glibc-initial.inc: fix py3 SyntaxError in cfgscript print()
      144c517 autotools.bbclass: fix py3 SyntaxError in cfgscript print()
      bb44e5b oeqa/decorators: Use wraps consistently
      7a93223 linux-yocto: Update SRCREV for genericx86* for 4.4
      ba36be6 linux-yocto: Update SRCREV for genericx86* for 4.1
      0854035 bitbake: toaster: use new syntax of except statement
      519a85e bitbake: toaster: use print function in toaster script
      3249e33 bitbake: toaster: use 'in' instead of has_key
      bfc21fd bitbake: server/process: Fix missing log messages issue
      471310e bitbake: cooker/toasterui: Drop SEND_DEPENDS_TREE UI feature
      da46751 bitbake: runqueue.py: always emit bb.event.DepTreeGenerated
      ff5d6f8 selftest: add bmap test
      39498d0 image types: add bmap generation option
      8a8ed52 bmap-tools: initial commit, version 3.2
      dc93972 image_types: add support for zip compression
      c589aff wic: use next builtin instead of .next method
      dd732ee wic: don't encode unicode strings
      a173885 wic: decode output of subprocess.communicate
      5f06463 wic: use // operator instead of /
      bc89dc4 wic: use find_executable in favor of bb.utils.which
      b6b5b5e wic: don't use L suffix for integers
      5fedb5d wic: refactor pluginbase
      d4ded7f wic: remove unused functions
      e301be3 wic: use new syntax of 'except' statement
      ed10a80 wic: remove with_statement imports
      dac0e80 wic: don't inherit classes from object
      52ce79d wic: don't use dict.keys and dict.has_key
      e36d04a wic: use items instead of iteritems
      0c57dd9 wic: replace print statements with print function
      4dadbbd combo-layer: avoid too long command lines in update with history
      659ed87 combo-layer: fix default "update" mode
      f969ce9 python-native: Point to expat in native sysroot and add missing dep on expat-native
      45dd3d2 feature-arm-vfp.inc: fix overzealous ARMPKGSFX_FPU modification
      0c717ff gdb: Upgrade to 7.11
      6d27c16 glibc: Add recipes for 2.24 release
      9b25b35 gcc 4.9: backport gperf fixes
      31f98f9 openjade-native: work around bug exposed by GCC 6
      efe59db gcc-5.3: backport gperf fixes
      97531ef report-error: Replace the build directory path in the error text
      0ba9ce2 mmc-utils: update to latest git version
      ad03e92 connman: update to version 1.32
      0ff3f49 package_manager.py: Add extract() method for RPM package manager
      b372a82 package_manager.py: Add extract() method for opkg and dpkg
      c5aa524 package_manager.py: Move opkg_query() outside of Indexer class
      e81c8fc pong-clock: obey CFLAGS, LDFLAGS
      e593d3a ruby: obey LDFLAGS for the link of libruby
      01cbd46 pseudo: obey our LDFLAGS
      b39ddd9 image_types: adjust default level of XZ compression
      36912cd cmake: enable verbose builds
      3d11229 bitbake: toaster: fix progress bar in MySQL environment
      c0db739 bitbake: main: Ensure exceptions are correctly displayed
      2fc5d5d bitbake: cookerdata: Fix log messages and ensure we exit
      a46d485 bitbake: event/msg: Pass formatted exceptions
      ca824a9 bitbake: fetch: Use OrderedDict for url parameters
      ef4a7c3 bitbake: main: Change warn() -> warning()
      7c0a219 bitbake: cooker: Fix log message syntax
      a0db121 bitbake: utils: Force bitbake to en_US.UTF-8 locale setting everywhere
      221705a bitbake: bin/bitbake-worker: Fix invalid bb.msg.fatal usage
      df15469 bitbake: contrib/dump_cache.py, cache: Fix to use python 3 syntax
      7d06ec1 bitbake: knotty: Ensure consolelog file handle is closed
      6cc6818 bitbake: runqueue: Improve timestamp comparisons
      fce8da9 bitbake: daemonize/prserv/tests/fetch: Convert file() -> open()
      9a30968 gcc-runtime, libgcc: Symlink c++ header and startup files in target_triplet for SDK use
      7cabc9e mpfr: Upgrade to 3.1.4
      0dcc42c ruby: Upgrade to 2.2.5
      278f8e8 distcc: Upgrade to 3.2
      3a167e6 mdadm: Fix build with clang
      922c640 musl: Create symlinks for stub libraries
      6d7cbc6 bitbake: Oldest kernel for nios2 is 3.19
      f2f35cc gdb: Disable binutils components
      26698cd libunwind: Add a confgure option for tests
      f3c90e1 gdb,strace: Fix builds on ppc/musl
      af6bfed libgcc: Ensure that gcc configure options are passed to libgcc too
      cc86da0 libunwind: Upgrade to 1.2rc1+
      fb6ee22 libgcc: Ensure that gcc configure options are passed to libgcc too
      e260dc3 musl: Upgrade to tip of tree
      54d06c0 bitbake.conf: Empty out BUILDSDK_CPPFLAGS
      ca8ae66 libunwind: Upgrade to 1.2rc1+
      08a9f5d grub_git: Upgrade to latest tip
      e511478 conf: bump minimum kernel to 3.2.0
      f99fb6a libc-common.bbclass: Use sed instead of grep
      ec8c9eb busybox/mdev: Ensure /sys is mounted before using it
      4eec0cb valgrind: Fix build with gcc6
      a6f67e2 grub: Fix build with gcc-6
      f0d2bd3 binutils: disable werror on native build
      b83a808 pkgconfig: Fix build with gcc-6 and upgrade to 0.29.1
      40abaa6 nss: Upgrade to 3.23
      6ab12ea mdadm: Fix gcc 6 warnings
      faf16fd oprofile: Fix with gcc6
      268f66f webkitgtk: Upgrade to 2.12.1
      b5c1f58 lzop: Fix build with gcc-6
      54cbfa3 alsa-tools: Fix build with gcc6
      b8e70ce rpm: Fix build with gcc6
      24d9927 elfutils: Upgrade to 0.166
      a088a41 glib-2.0: Ignore useless warning found with gcc-6
      6ea164c gcc: Add gcc6 recipes
      1f2108f linux-yocto/4.4: bump to v4.4.10
      5968601 linux-yocto/4.4: beaglebone: Enable drm for omap
      322a783 linux-yocto/4.4: update to v4.4.9
      975fa0d linux-yocto/4.4: bump to v4.4.8
      55f6cc4 font-util: Remove ${datadir}/fonts from SYSROOT_DIRS_BLACKLIST
      fc8f228 libtool: Use SYSROOT_DIRS_BLACKLIST to exclude dirs from the sysroot
      9390701 gcc-target.inc: Use SYSROOT_DIRS_BLACKLIST to exclude dirs from sysroot
      2aa49bc gettext: Use SYSROOT_DIRS_BLACKLIST to exclude dirs from the sysroot
      2997f01 grub2.inc: Use SYSROOT_DIRS_BLACKLIST to exclude dirs from the sysroot
      4021e9b gobject-introspection: Use SYSROOT_DIRS to add dirs to stage in sysroot
      df02994 vala.inc: Use SYSROOT_DIRS to add dirs to stage in sysroot
      700ce6b signing-keys: Use SYSROOT_DIRS to add dirs to stage in sysroot
      40d19d9 base-files: Use SYSROOT_DIRS to add dirs to stage in sysroot
      138d161 depmodwrapper-cross: Use SYSROOT_DIRS to add dirs to stage in sysroot
      c486741 shadow-sysroot: Use SYSROOT_DIRS to add dirs to stage in sysroot
      f6ed023 tcl: Use SYSROOT_DIRS to add dirs to stage in sysroot
      bc217a6 qemuwrapper-cross: Use SYSROOT_DIRS to add dirs to stage in sysroot
      dad9316 libtool-cross: Use SYSROOT_DIRS to add dirs to stage in sysroot
      97f6ed3 u-boot-fw-utils: Use SYSROOT_DIRS to add dirs to stage in sysroot
      e839431 staging.bbclass: Make it easier to define which dirs to stage
      5f6e5e4 pixman: Upgrade 0.32.8 -> 0.34.0
      c2ceef3 mesa: Upgrade 11.1.1 -> 11.2.2
      8505fde libdrm: Upgrade 2.4.67 -> 2.4.68
      1c55101 libxkbcommon: Upgrade 0.5.0 -> 0.6.1
      f9d5328 videoproto: Upgrade 2.3.2 -> 2.3.3
      f264e09 xf86-input-evdev: Upgrade 2.10.1 -> 2.10.2
      06b53bf libinput: Upgrade 1.1.4 -> 1.3.0
      b74ee99 xkeyboard-config: Upgrade to 2.17
      376bba7 xrandr: Upgrade to 1.5.0
      2843331 bitbake: toaster: tests browser Add test for creating a project
      cd4f0b3 bitbake: toaster: models Add missing import sys
      7e2d501 bitbake: toaster: ui handles duplicate project name in project page
      dc57476 bitbake: toaster: ui handles duplicate project name in new project page
      9bdfed8 bitbake: toaster: projectNameValidation API added
      cc2f136 bitbake: runqueue: Fix missing fakeworker under dry run
      442acd2 bitbake: lib/bb/utils.py: Fix explode_dep_versions2() determinism issue
      3795f4d bitbake: bin, toaster: Fix print and exception syntax
      a9d90f7 bitbake: tests: assertEquals -> assertEqual
      654eadf bitbake: bitbake: Update logger.warn() -> logger.warning()
      5052bf9 oeqa/lic-checksum: Update after recent LIC_FILES_CHKSUM changes
      8320293 devtool: Fix build-sdk when pn doesn't match filename
      32d80fe Drop unneeded LIC_FILES_CHKSUM values
      296c7e1 classes/insane: do not force LIC_FILES_CHKSUM unless SRC_URI is set
      69cf7b3 lib/classextend: Fix determinism issue
      f49be7e update-alternatives: Fix determinism issue
      8a88c56 image: Fix IMAGE_FEATURES determinism issue
      015266a bitbake.conf: add default for IMAGE_FSTYPES_DEBUGFS
      88d5f56 metadata_scm.bbclass: Do not assume ${COREBASE} is a Git repo
      361c5be lttng-tools: filter random filename of ptest output
      c7bf1a8 feature-arm-neon.inc: restore vfpv3-d16 support
      3333002 gcc: obey ldflags in the link of libgcc
      47c994f populate_sdk_ext: Change lockedsigs task mismatch to a warning
      1e88c74 xserver-xorg: update 1.18.3 and add PACKAGECONFIG for glamor
      b86f8a0 populate_sdk_ext.bbclass : Show logfile in case the SDK EXT installation failed
      d53ed05 combo-layer: implement "update with history"
      107c35e combo-layer: runcmd() enhancements
      aa4de3c combo-layer: dummy "update with history"
      eb0ab04 sshcontrol.py: Add methods to copy dirs and delete files
      e81d7a8 classes/image_vm: allow different filesystems to be used for VM images.
      c1ce0d9 lib/oe/rootfs: Fix DEBUGFS generation for opkg & openssl-cnf
      442fbdd linux-yocto-rt/4.1: update to rt23
      834d316 linux-yocto/4.4: bump to v4.4.8
      3730f6f linux-yocto/4.4: broxton enablement and refactoring
      954bf18 linux-yocto/4.4: skylake configuration
      6fd2ec9 linux-yocto/4.4: BXT mmc fixes + PUNIT, tubropower, and telemetry backport
      3db6b64 linux-yocto/4.1: make ltsi content available
      ccfa498 linux-yocto/4.1: update to v4.1.22
      1ce221d kernel-yocto: allow branch auditing to be suspended
      0e50f6f kern-tools: handle directories with, or without, trailing /
      07f9133 linux-yocto/4.4: sched/cgroup: Fix/cleanup cgroup teardown/init
      bfe3731 linux-yocto/uvesafb: print error message when task timeout occurs
      9b9b983 image_types: fix image/compression dependency collection
      cf17882 libpcre: Fix CVE-2016-3191
      af4e319 image_types.bbclass: add WIC_CREATE_EXTRA_ARGS
      5ae5fc7 openssl: Security fix via update to 1.0.2h
      199b348 image-live.bbclass: make the INITRD optional
      26bf0e9 librsvg: Security fixes via update to 2.40.15
      01f6052 git: update to 2.8.2
      c63c1aa qemu: updgrade to 2.5.1
      6b0bdd6 alsa-lib: Fix incorrect appl pointer when mmap_commit() returns error.
      8c1932e iproute2: upgrade to version 4.5.0
      cc5e129 sqlite3: upgrade to 3.12.2
      cb3b214 harfbuzz: upgrade to 1.2.6
      64edecf orc: upgrade to 0.4.25
      8d66086 mc: upgrade to 4.8.16
      41a1bbf libtasn1: upgrade to 4.8
      a5f82b4 pkgconfig: update to version 0.29.1
      5a21422 ethtool: upgrade to 4.5
      db36fc9 acpid: upgrade to 2.0.27
      06aa0d4 gdb: fix QA warning (uClibc)
      0aba7d5 base-files: add some safety checks in profile
      548e55c bluez5: upgrade to 5.39
      7ca60ec test-empty-image: Fix LIC_FILES_CHKSUM typo
      912e372 scripts/lib/bsp/kernel.py: force patching when branch is machine branch is re-use
      3cdecde meta-selftest/images: Add LIC_FILES_CHKSUM to images using image.bbclass
      1ee4cc1 bitbake.conf: change APACHE_MIRROR to point at archive.apache.org
      2329274 mesa: add PACKAGECONFIG for gbm
      46bfdec libxsettings-client: fix COPYING file
      b13367b meta-world-pkgdata: add LIC_FILES_CHKSUM
      b31c7ab packagegroup-foo.bb: remove LICENSE = "MIT"
      d38c923 packagegroup.bbclass: set LICENSE and LIC_FILES_CHKSUM
      a8b3576 insane.bbclass: package_qa_check_license -> populate_lic_qa_checksum
      24eb9b1 tune-mips32r2.inc: add soft-float variants
      6e4b817 ddimage: if 'pv' is installed, use it
      6ebe903 dbus-test: install executables not libtool wrapper scripts
      b851cb0 mesa-demos: remove demos using obsolete screen surface
      7f70b10 arch-powerpc64.inc: disable the use of qemu usermode on ppc64
      1108bee eudev: add PACKAGECONFIG for hwdb
      41f7160 libxml2: fix dependencies and QA Issues
      1d9432a bash: fix dependencies and QA Issue
      7ce949c popt: fix dependencies and QA Issue
      0c26298 curl: add krb5 to PACKAGECONFIG
      9efd547 oeqa/selftest/buildoptions: remove buildhistory signature test
      692f9d4 mesa-gl: add missing MESA_CRYPTO to PACKAGECONFIG
      5f14204 cross-localedef-native_2.22.bb: Use autotools configure
      0bf6d57 insane.bbclass: remove workdir from package_qa_check_license()
      30ba663 qemu: remove explicit but redundant native build dependencies
      b73ebda webkitgtk: remove gnome-common dependency
      1b6ffd9 gnome-desktop3: remove redundant gnome-common dependency
      997beb0 python-pygobject: remove redundant gnome-common dependency
      8f275ff recipetool: create: fix falling back to declared license for npm packages
      6ddd408 recipetool: create: fix picking up false npm package directories
      de75626 arch-armv7ve: inherit armv7a tunes file
      f088e69 kernel: fitimage: basic support for fitimage signature
      cb565d5 kernel: fitimage: support device tree compiler options
      858ddd5 u-boot: deploy u-boot-nodtb and dtb files
      d8ae396 u-boot: basic support of dtb append for verified boot
      a78e4ad scripts/lib/argparse_oe: also change 'positional arguments' to 'arguments'
      09cbec8 scripts/lib/argparse_oe: simplify options title change
      3e79d54 scripts/lib/argparse_oe: show subparser help for unrecognized args
      55c760b scripts/lib/argparse_oe: show self.prog in the error message
      7669219 wic: use sparse_copy to preserve sparseness
      db9557c wic: use sparse_copy to copy partitions
      4b97156 wic: add sparse_copy API
      a468d4b wic: add FIEMAP and SEEK_HOLE / SEEK_DATA APIs
      f8959d4 wic: moved DiskImage to direct.py
      f318015 wic: get rid of fs_related.makedirs
      4daf903 wic: get rid of inheritance Disk->DiskImage
      d03cbac wic: use truncate utility to create sparse files
      e93254b autotools: add default for CACHED_CONFIGUREVARS
      8d6bb65 packagegroup-core-lsb: fix whitespace in meta-qt* warnings
      30f9a50 security_flags: turn potential string format security issues into an error
      8fa797d sysvinit-inittab: restrict labels to 4 chars
      36a2640 toolchain-scripts: replace source built-in call
      a2526b5 gstreamer1.0-rtsp-server: upgrade to version 1.8.1
      06f5b8a gstreamer1.0-libav: upgrade to version 1.8.1
      b8dbd21 gstreamer1.0-plugins-ugly: upgrade to version 1.8.1
      9f9e48c gstreamer1.0-plugins-good: upgrade to version 1.8.1
      32a315a gstreamer1.0-plugins-base: upgrade to version 1.8.1
      e9c85d5 gstreamer1.0: upgrade to version 1.8.1
      c6394a5 bitbake: bb.{cooker, data}: only emit a var as python if 'func' is set
      9465558 bitbake: bb.utils: let loaded plugins provide a plugin object
      19e6fd5 bitbake: bb.utils: use imp.get_suffixes for load_plugins
      7dc1211 bitbake: bb.utils: add load_plugins from scriptutils
      39b79ef bitbake: bb.data_smart: use iter() for __len__
      cd20dd0 bitbake: bb.event: handle __builtins__ as a module
      2d2d312 bitbake: bb.build: handle __builtins__ as a module
      4f4f1c1 bitbake: bitbake: fetch2: Safer check for BB_ORIGENV datastore
      f00b4e4 bitbake: toaster: bin/toaster Fix noweb command
      93853e0 bitbake: toaster: bin/toaster Add ability to specify port and address to bind to
      4446b35 bitbake: toaster: bin/toaster Add help text for unrecognised command
      be49d0a bitbake: bitake: main: fix line-too-long pytling warnings
      b5af50e bitbake: bitbake: main: fix bad-continuation warnings
      3437266 bitbake: bitbake: main: fix bad-witespace pylint warnings
      24f5c32 bitbake: bitbake: main: set defaults from env variables
      21b314d bitbake: bitbake: main: add 2 environment variables
      fce42a2 bitbake: toaster: customrecipe Only show download icon or button if it's possible
      d3b5b0b bitbake: toaster: orm Add get_base_recipe_file to CustomImageRecipe
      f7b5208 poky: Switch to post release name/version
      dfc5510 poky-tiny: Switch to using kernel 4.4 and busybox for init
      a4cf8bc bitbake: bitbake: Switch to post release version
      f9c623d bitbake: fetch2: export DBUS_SESSION_BUS_ADDRESS to support authentication agents
      768c796 utils.bbclass: note for deprecated base_contains
      f22380e oeqa/sstatetests: remove temporary DL_DIRs in noop_samesigs
      10ebdbb attr: Remove redundant "+=" after "_append"
      19d8760 oeqa/sstatetests: add http_proxy to no-op hash test
      0579719 bluez5: enable out-of-tree builds
      860dfaf mx: move to autotools instead of autotools-brokensep
      c4ee663 mx-1.0: inherit gtk-doc
      92f482b meta: add comments to explain autotools-brokensep use
      7f8b975 cups.inc: Fix ldflags warning.
      2daea56 wic: add help for --system-id option
      5bc1e42 wic: set partition system id
      514a878 wic: add system_id argument to Image.add_partition
      8d747c8 wic: add system_id attribute to Partition
      e6a5232 wic: add sfdisk to the list of utilities
      a48630b wic: add --system-id wks option
      4ed22ed wic: isoimage-isohybrid: fix splash file paths
      d73b756 image.bbclass: don't execute compression commands multiple times
      57136a6 grub_git: set COMPATIBLE_HOST_armv7a to null
      222c5c6 wic: isoimage-isohybrid: add grubefi configfile support
      5073e5b busybox: don't build ar
      002847a autotools: warn when running intltoolize if intltool isn't a dependemcy
      9563869 bash: fixed ptest run-builtins failed
      9c812e7 libunwind: backport aarch64_be support
      e7d3dcb image.bbclass: don't emit redundant IMAGE_CMD_xxx functions
      2c9ead4 linux-firmware: break out bnx2 mips firmware and WHENCE license
      f095fdc package: ensure do_split_packages doesn't return duplicates
      4e0d9d1 kernel-uimage: change target image to vmlinux
      5dc3f38 packagegroup-core-tools-profile: Enable valgrind on ARMv7a and above
      a13343b directfb/pango/webkit: base_contains -> bb.utils.contains
      cb61390 gcc-sanitizers: Depend on target gcc
      510344f babeltrace: Let autotools.bbclass run autoreconf
      a1d67b2 ref-manual: Added GObject Introspection to 2.1 migration section.
      8aebd1c dev-manual: Added Gobject Introspection section.
      ab3147e ref-manual: Added new 2.1 migration misc. Change
      6429369 sdk-manual: Applied review edits throughout the manual.
      d4c4b2f ref-manual: Applied 2.1 Migration section review edits.
      1ae33ba sdk-manual: Updated the normal customization.xml file.
      3f55657 ref-manual: Fixed a grammar consistency error
      01df6a7 ref-manual: Applied review edit comments to the 2.1 migration section.
      15a93e9 dev-manual: Updated the "varname" use to "VARNAME"
      b98a834 sdk-manual: Updated eclipse customization file.
      07286b6 build-appliance: Switch to master branch post release
      90f2040 qemu: Security fix CVE-2016-2858
      dbdf9bf qemu: Security fix CVE-2016-2857
      a421090 busybox: musl mips64 ip fix
      9f3d7ae busybox: Security fix CVE-2016-2147
      2928ca4 busybox: Security Fix CVE-2016-2148
      3c6ead9 openssh: Security Fix CVE-2016-3115
      3f75a64 tiff: Security fixes CVE-2015-8665 and CVE-2015-8683
      71979b2 rpm: explicitly disable tomcrypt
      592e5a9 recipetool.newappend: fix syntax error for 'not path_ok' error
      9de4e4a matchbox-panel-2: Depend on dbus-glib-native
      567483f connman-gnome: Depend on dbus-glib-native
      ea41b63 gobject-introspection: Depend on native flex and bison
      7c1badf gobject-introspection: fix floating dep on python-mako
      5bfd397 sdk.py: preserve packaging data when SDKIMAGE_FEATURES has "package-management"
      69d3df9 lib/oe/rootfs: Fix DEBUGFS generation when using opkg
      e717e28 boost: improve configure
      ff61a85 boost: delete the build directory before rebuilding
      a9b503b license.bbclass: make sure that image manifest dir exists
      2755304 busybox: update flock behavior to match upstream
      7da7587 valgrind: turn off the file level dependency
      1bcdc89 tzdata: update to 2016d
      b4057ae tzcode: update to 2016d
      04f7e29 meta: add missing intltool-native dependency
      2caf6e5 pulseaudio: Add intltool-native dependency
      6c1c013 build-appliance-image: Update to krogoth head revision
      5f84d65 syslinux.bbclass: Remove APPEND from variable dependency
      d9dd864 bitbake: toaster-tests: tests for build dashboard
      1cf8f21 bitbake: toaster: add modal to select custom image for editing
      a40a3e6 bitbake: toaster: add build dashboard buttons to edit/create custom images
      e65c980 bitbake: toaster-tests: make helper click on input before entering text
      484cbf8 bitbake: toaster-tests: add tests for new custom image page
      437b728 bitbake: toaster: prevent exception when Project.release is null
      cfc22d3 bitbake: toaster: only prevent duplicate custom image names within a project
      3036413 bitbake: toaster: disable/enable "Add layer" button according to input's content
      040dbf6 bitbake: toaster: fix sorting after hiding a column in build tables
      1b11b79 bitbake: toaster: ensure ToasterTable headings are reset when order by changes
      9855840 image.bbclass: The wrong name is being used for the debug filesystem
      38c7e2d image_types: Ensure rootfs dependencies cover DEBUGFS
      0c3eaa7 syslinux.bbclass: The AUTO_SYSLINUXMENU value needs to be boolean
      9c8a049 perf: pass DESTDIR in EXTRA_OEMAKE
      9de7324 buildtools-tarball: set INHIBIT_DEFAULT_DEPS
      ef09105 xf86-video-omapfb: remove EXTRA_OECONF_armv7a
      c2f7da2 base.bbclass: Introduce PACKAGECONFIG_CONFARGS variable
      e1c6890 git: update to 2.7.4
      98bf7de license.bbclass: do write_deploy_manifest in image postprocessing
      519600c devtool: sdk-update: fix handling of UNINATIVE_CHECKSUM changes
      c7980b6 bitbake: main: fix processing of BBEVENTLOG
      ee25d0e toasterconf.json: Update for krogoth release
      b8e5de2 toasterconf.json: Remove fido from supported configurations
      c59771e toasterconf.json: Update for krogoth release
      d0bce0b toasterconf.json: Remove fido from supported configurations
      d25eea3 poky-tiny.conf: set PREFERRED_VERSION_linux-yocto-tiny to 4.4
      9f970b6 dev-manual, profile-manual, ref-manual: Purging Oprofile stuff
      1d93104 ref-manual: Added description for the testsdk.bbclass.
      db47094 ref-manual: Updated the remove-libtool.bbclass description.
      a16eeca ref-manual: Added gobject-introspection.bbclass description.
      3e761b4 ref-manual: Added reference for npm.bbclass.
      5e50157 ref-manual: Fixed typo in the nopackages.bbclass description
      f7b68c7 ref-manual: Added description for bash-completion.bbclass
      ece900a ref-manual: Added nopackages.bbclass description. Fixed stray typo.
      9143e9e ref-manual: Added description for the INSTALL_TIMEZONE_FILE variable.
      6391dbf ref-manual: Updated the PREFERRED_PROVIDER variable with a note.
      6d86f7a ref-manual: Dropped references to the autotools_stage class
      4d5ff5e ref-manual, dev-manual: Scrubbed boot-directdisk and bootimg classes
      cd2aaaa ref-manual: Updated the uninative.bbclass description.
      e975d26 documentation: Converted "meta-yocto" to "meta-poky"
      84452ee bsp-guide: Updated yocto-bsp create example output.
      e00a62c ref-manual: Added the migration section for 2.1
      02db9e6 yocto-project-qs, ref-manual: Upgraded minimum Git requirement
      989841f ref-manual: Added rootfs-postcommands class description.
      d06b343 ref-manual: Updated the EXTRA_OEMAKE variable description.
      ecb2eb6 dev-manual: Updated "Additional Implementation Details" section
      004b939 bitbake: lib/bb/utils: add docstring for contains()
      524d04c ca-certificates: support Toybox
      ecaf12e oetest: make console output more verbose
      4946ecf dhcp: CVE-2016-2774
      c219c6d buildtools-tarball: fix perl being included when building with ipk
      9fe7738 buildtools-tarball.bb: fix unexpected operator
      ed07f43 lib/oeqa/selftest/base.py: Correct a reference to meta/lib/oeqa/selftest
      8953d83 oe-selftest: Correct the usage examples
      dee47ad devtool: sdk-update: reset git metadata on update
      396e64d build-appliance-image: Load TUN at startup
      55068b1 default-providers.inc: set openssl PREFERRED_PROVIDER to openssl
      74ab080 bind: CVE-2016-2088
      d488d78 rpm: Disable __sync_add_and_fetch_8 on nios2
      9d2d1ae kernel: fitimage: Fix do_deploy taskhash mismatch
      4693593 images: zero out the rootfs_extra_space in initramfs images
      8beb671 ext-sdk-prepare.py: exclude do_rm_work from unexpected output; create unit test
      0262bc5 bitbake: bitbake-user-manual: Updated the 'bitbake -h' output example.
      890ccd3 bitbake: bitbake-user-manual: Updated "Conditional Metadata" section
      20a0121 bitbake: bitbake-user-manual: Updated discussion about using "inherit"
      9f374c4 bitbake: providers: Add PREFERRED_RPROVIDER support
      4b8b110 bitbake: providers: We don't depend on previous build results
      8e7282c bitbake: cooker/knotty: Prefix parse logs with filename being parsed
      1131303 bitbake: cooker: pass exception to finishAsyncCommand
      ffa2ca0 fs-perms.txt: fix ROOT_HOME's permission
      fd66a38 Revert "fs-perms.txt: fix ROOT_HOME's permission"
      9ec9557 buildstats: Fix tracebacks for early task failures
      7f9d01e default-providers: Update to use PREFERRED_RPROVIDER
      76f4bbc oeqa/selftest/sstatetests: fix no-op sstate test
      6326812 buildhistory: don't alter SDK creation stamps
      bb40b5e dhcp: Enable update-rc.d service
      27e202f meta/classes/qemu.bbclass: set -cpu of ppce5500/ppce6500 to e500mc
      7c5823a shadow: Disable syslog for more commands
      60a8719 devtool: upgrade: handle recipes where source is not first entry in SRC_URI
      8353557 devtool: update-recipe: handle where SRC_URI is appended to with +=
      aab3c8d linux-yocto: make aufs4 optional
      d75d2be linux-yocto: tiny and pin ctrl config updates
      8547cbf linux-yocto/4.4: BXT enablement
      ffad386 linux-yocto/4.1: mainline SPI backports
      4ba33a3 linux-yocto/4.4: gpio-pca953x: fix the "drive" property cannot read/write
      86571db devtool: don't copy .git when building the eSDK
      83eac65 package.bbclass: improve permission handling
      eeae2ac fs-perms.txt: fix ROOT_HOME's permission
      1db3dc8 runqemu: let ramfs equal to cpio.gz
      a8c8e81 gcc-common.inc: String format tweak for available tunes
      a7c426a pbzip2: fix LIC_FILES_CHKSUM following 1.1.12 -> 1.1.13 upgrade
      1229009 pbzip2: don't skip do_configure
      1e4ee30 useradd_base.bbclass: remove flock option '-w'
      cb45ef3 matchbox-keyboard: Hide desktop launcher
      69e20ca npm.bbclass: Stop packagenames containing underscores from being generated
      c3c55478 bind: CVE-2016-1285 CVE-2016-1286
      c4387a8 image.bbclass: add DEB_{PRE, POST}PROCESS_COMMANDS to rootfs_command_variables list
      967bc74 rootfs.py: apply ROOTFS_POSTINSTALL_COMMAND to all package formats
      f7352ca wic: fix bug in handling fsoptions
      b2f5de5 buildtools-tarball.bb: set TOOLCHAIN_NEED_CONFIGSITE_CACHE to null
      a460b04 rpm: more verbose errors in rpmTempFile
      a43991d rootfs-postcommands: handle broken links when writing manifest
      2c81e17 socat: Use c_ispeed and c_ospeed based upon libc
      5c8124d archiver: Improve debug output
      e912c46 kbd: remove uclibc-stdarg.patch
      965fd3c image.bbclass: use max() instead of indexing booleans
      6d85874 linux-yocto-tiny: fix KBRANCH
      440d949 sudo: fix pam config on systemd systems
      3fd5a6d sysvinit: make lastb.1 an alternative
      175263e lib/oe/lsb: sanitise the distro identifier
      9262d2f package.bbclass: handle links in sorted order
      29cf263 sanity: allow sftp and ssh mirrors
      f503317 toaster.bbclass: improve package information collection
      88f4178 rsync: remove upstream's rebuild logic
      8d59d06 rsync: pass cached configure values through the right variable
      384e41c rsync: don't install acinclude.m4
      e80800e Revert "oeqa/selftest/wic: add test case for sparse images"
      45c0763 Revert "wic/utils/partitionedfs.py: assemble .wic images as sparse files"
      e0e5426 bitbake: runqueue: Improve 'mulitiple .bb files are due to be built' message
      380004b archiver: Ensure sstate-inputdir directory is created
      3ad70a5 linux-yocto-tiny: fix COMPATIBLE_MACHINE
      0e59727 glib-2.0: Put glib-compile-schemas back in -utils
      d27ca36 oeqa/runexported.py: Fix exported test
      85dbd7b oeqa/selftest/sstatetests: split 32/64 build host from no-op action tests
      57be6dd util-linux: take ownership of hwclock if installed
      acc1f96 meta: remove redundant ac_cv_sizeof_off_t assignments
      92759d8 meta/site: remove sizeof_off_t
      5602f64 archiver: Fix ASSUME_PROVIDED issues
      fab626c distrodata: Exclude DATETIME reference from sstate checksum
      faaeaf9 build-appliance-image: Support for VirtualBox guest additions
      778121a local.conf.sample: Make it possible to override EXTRA_IMAGE_FEATURES
      f947c27 poky.conf: add Fedora 23 to supported distros
      f33a110 maintainers.inc: remove adt-installer
      83d4fab local.conf.sample: remove reference to adt
      52cfdb6 bitbake: toaster: fixes for customimage package not found
      dae4ffb bitbake: data_smart: Restrict expansion regexp to not include : characters
      7e739ac bitbake: tests/utils.py: test origvalue in a callback matches what is expected
      e1e459e bitbake: lib/bb/utils.py: Fix a bug in edit_metadata() that could corrupt vars
      43150ab oeqa/selftest/wic: add test case for sparse images
      29bc2f7 wic/utils/partitionedfs.py: assemble .wic images as sparse files
      7fdb061 image-vm.bbclass/image_types.bbclass: IMAGE_NAME -> IMAGE_LINK_NAME
      04e1978 image_types.bbclass: fix elf
      513ea49 image_types.bbclass: set nodesize for btrfs
      bad434b libxml2: fix AM_PATH_XML2
      9fe3d01 useradd_base.bbclass: prevent variable expansion in $opts
      fb8e5f9 extrausers.bbclass: drop retry count for perform_user/group* calls
      f737af4 build-perf-test: add eSDK installed size to metrics
      50f5ca3 rpm: brace expansion is a bashism
      66ecbd3 openssl.inc: minor packaging cleanup
      e38ec0c systemd-systemctl-native: fix unit detection
      4019058 apr-util: fix path in rules.mk for nativesdk
      bdf453f bdwgc: installed-vs-shipped for nativesdk
      12ca8df libsolv: fix installed-vs-shipped for nativesdk
      c88c894 desktop-file-utils-native: disable emacs
      d4f6c0e toaster: add DL_DIR and SSTATE_DIR to oe toasterconf
      69b3f87 toaster.bbclass: strip task from the target
      aa45c75 x11-common: Add PACKAGECONFIG for screen blanking
      d366a33 opkg-utils: re-do find/ls code to not fail on filenames with spaces
      5e360ca image-live.bbclass: fix iso + efi only
      f5adb23 Add missing runtime dependency to python-pygobject
      0720425 devtool: Create unlocked-sigs.inc containing items in the workspace
      64cca7e sstatesig.py: Add a method to "unlock" recipes
      1cb99dd populate_sdk_ext.bbclass: Enable locked sigs errors
      2431ed7 sstatesig.py: Improve the SIGGEN_LOCKEDSIGS_TASKSIG_CHECK message
      7e90280 sstatesig.py: Split single locked sigs check into multiple checks
      7ce800c toasterconf.json: Set default distro to nodistro
      1b7b548 dev-manual: Updated poky-floating-revisions file snippit example.
      8d9e233 dev-manual: set correct task name for do_kernel_configme
      6971029 poky-floating-revisions: Fix typo
      14e2b90 toasterconf.json: Add DL_DIR and SSTATE_DIR to poky toasterconf
      296dfbc build-appliance-image: Update to master head revision
      00c4c9b poky: Convetion is 2.1, not 2.1.0
      8cd1dec build-appliance-image: Update to master head revision
      ecd58bb poky.conf: Bump version for 2.1.0 krogoth release
      e955b5d bitbake: Update version to 1.30.0
      4fd14e3 build-appliance-image: Update to master head revision
      133224f documentation: Fixed references using the DISTRO_NAME variable
      3831ca0 documentation: Updated release date in manual history tables.
      b590fab dev-manual, ref-manual, sdk-manual: Removing oprofile references.
      d2084cc Makefile: Removed adt-manual support
      2677098 mega-manual: Removed the adt title .PNG file.
      d9b4c80 README: Updated to remove the ADT manual and add the SDK manual.
      9796cbb mega-manual.sed: Removed adt-manual processing
      aa4b72b yocto-project-qs: Updated the minnowboard example.
      f2505af poky.ent: Added lower-case distro name variable.
      ee42a9b kernel-dev: Applied review comments to "Adding Recipe-Space Kernel Features"
      d57fe7c ref-manual: Updated the PREFERRED_VERSION variable description.
      53bade8 dev-manual: Added new section describing hardware and non-hardware config
      763ae4e ref-manual: Updated verbiage on proxy handling
      a1295ed ref-manual: Updated PREFERRED_VERSION variable description
      879eec2 ref-manual: Updated debugging tips and tricks
      23dbf81 kernel-dev: Added new "Adding Recipe-Space Kernel Features" section.
      f30bfe9 kernel-dev: Updated the "Kernel Metadata Location" section.
      53729bc sdk-manual: Removed three sections of writer notes.
      9f0c571 sdk-manual: Applied review edits.
      d4bdafa sdk-manual: Added sections in Appendix B.
      d94fa00 dev-manual, profile-manual: Removed oprofile section and link
      4f3dfa8 bitbake: bitbake: update LICENSE file with QUnit details
      013984d bitbake: tests: browser Add test to run the js unit tests
      7609888 bitbake: toaster: views jsunittest Add MACHINE and an extra layer to test project
      fbc2c5d bitbake: toaster: tests Set MACHINE for the test projects
      cb6b4eb bitbake: toaster: Add quint to project so that it can be used offline
      18cb7fe bitbake: toaster: add rev dep column to image detail pages
      7a309d9 bitbake: buildinfohelper: work around unicode exceptions
      860cba8 bitbake: toasterui: update build in internal state
      acb9407 bitbake: buildinfohelper: fix KeyError
      52c8740 bitbake: toaster: get bitbake location from BBBASEDIR
      f5d3ef6 bitbake: toaster: export BBBASEDIR variable
      71ff9b9 bitbake: toaster: update projectconf.html for DL_DIR and SSTATE_DIR
      705d44f bitbake: toaster: update view to support DL_DIR and SSTATE_DIR
      4aafcae bitbake: toaster: use empty token
      5ce4665 bitbake: toaster: runbuilds Clean up runbuilds
      55b6fab bitbake: toaster: runbuilds Make runbuilds aware of the build CANCELLED state
      f4cee88 bitbake: toaster: models Exclude the CANCELLED builds from get_number_of_builds
      296d373 bitbake: toaster: mrb_section template Add build cancel button
      f1b49dc bitbake: toaster: tables BuildsTable exclude cancelled builds
      22242ae bitbake: buildinfohelper: Add handler for cancelling a build
      9dcb9cb bitbake: toaster: bldcontrol models Add a cancelling state the BuildRequest
      dfa8510 bitbake: toaster: models Add cancelled state to build outcome
      5f862bb bitbake: toaster: update BuildEnvironmentController and BitbakeController
      0db62c5 bitbake: toaster: libtoaster Update implementation of startABuild and cancelABuild
      afab95c bitbake: toaster: xhr Update the implementation of the build cancellation request
      eead032 bitbake: toaster: Move xhr calls for starting and stopping builds
      f5aa970 bitbake: toaster: bldcontrol Add forceShutDown function to BitbakeController
      d6992a8 bitbake: toasterui: shutdown on BuildCompleted event
      c4ae028 bitbake: toaster: use bash explicitly
      4adddfd bitbake: toaster: fix jethro build
      b1a919a bitbake: toaster: update conf/local.conf
      590a815 bitbake: toaster: stop bitbake server after the build
      a8f6001 bitbake: toaster: add new parameter to _shellcmd
      a43a16b bitbake: toaster: reimplement triggerBuild
      ab18c20 bitbake: toaster: modified setLayers API
      22fba9b bitbake: toaster: add brbe parameter to triggerBuild
      829a0bd bitbake: toaster: remove release API
      7068e8a bitbake: toaster: remove startBBServer API
      9d4c62d bitbake: toasterui: fix brbe reporting
      5bcce68 bitbake: buildinfohelper: improve handling of providermap
      61b6b98 bitbake: uievent: improve BBUIEventQueue code
      0b0d754 bitbake: toasterui: add brbe parameter to buildinfohelper
      94ac3f0 bitbake: toaster: set BITBAKE_UI environment variable
      e23a23b bitbake: toaster: get rid of noui option
      f77baec bitbake: toaster: don't start bitbake server
      4127fef image_types: use compress framework to produce checksums for images
      60786b8 runqemu-gen-tapdevs: Add note about NetworkManager & tap devices
      634aeed libtool: fix contaminated path to lt_truncate_bin
      298d875 create-pull-request: fix for newer git
      4faeff9 wget: fix build when len(TMPDIR) == 410
      b667f4d sanity.bbclass: fix a hardcode in check_path_length()
      94b3583 grub: remove unused 0001-Fix-build-with-glibc-2.20.patch
      ef163ab glibc: remove unused CVE patches
      b050ab2 clutter-gst-3.0: remove unused enable-tests.patch
      064ebd5 cmake: remove unused dont-run-cross-binaries.patch
      a71db4c tcl: remove unused fix-configure.patch
      476eeea rpm: remove two unused patch
      3d56864 ffmpeg, gstreamer1.0-libav: add textrel INSANE_SKIPs
      8cc10a9 ffmpeg: Make configure options explicit
      45c1944 bzip2: set correct soname
      cbe33ec useradd.bbclass: remove user/group created by the package in clean* task
      c115740 bitbake: fetch2/git.py: remove .indirectiondir workaround
      4f07c22 bitbake: persist_data: Return str instead of unicode for sqlite3 text queries
      d8f1f42 scripts/oe-selftest: avoid the creation of coverage file when coverage not installed
      6e5e225 scripts/oe-selftest: remove coverage file if any coverage option is given
      5edfec4 scripts/oe-selftest: remove unneeded coverage warning
      8109e93 patch.bbclass: remove useless path assignment
      7963613 gstreamer: remove now-redundant expansion in do_split_packages
      37f4f5b package: do_split_packages: expand variables in extra_depends
      2ed2089 xf86-video-intel: Add patch to fix some poor image quality
      c1436b3 sanity: Increase minimum git version to 1.8.3.1
      672545b scripts/oe-buildenv-internal: Fix regression in BB_ENV_EXTRAWHITE setting
      f7fed7c license.bbclass: fix warnings when run in unprivileged "container" env
      43071a0 externalsrc: avoid race in temporary git index file
      f4f1d20 scripts/lib/bsp/help.py: Typo in help for yocto-bsp create
      1bd2c8e bdwgc: use github repo for source location
      0e6743b xf86-video-intel: Add patch to allow UXA to build
      21e31c2 package_manager.py: better error handling in opkg's package listing
      f2d5e20 systemd: make systemd-serialgetty optional
      e699404 ncurses: reorder PACKAGES
      f94ad4d bluez5.inc: remove obsolete workaround
      a0cd8c0 buildtools-tarball: Add texinfo (for makeinfo)
      9877795 cogl: fix G-I .typelib installation
      b13184c classes/buildhistory: fix grammar in comments
      e5c0a9f classes/buildhistory: fix filtering of depends-nokernel.dot
      4d364f2 classes/buildhistory: optimise getting package size list
      af5f423 bitbake: siggen: Ensure tainted stamps are accounted for with writing custom stamps
      47e9e12 bitbake: siggen: Fix nostamp taint handling
      8033627 bitbake: siggen: Add checksum recalculation/checking code
      3e1b5e0 bitbake: siggen: Fix check calculation problem with file_checksums
      39b637c bitbake: siggen: Drop misleading duplicate method
      2c722e2 bitbake: tests/fetch.py: Improve unit tests for trusted network check
      cf6d12d bitbake: fetch2: BB_ALLOWED_NETWORKS should not care about port numbers
      158575c bitbake: toaster: orm better detect requires during CustomImageRecipe generation
      c634473 bitbake: toaster: Correct typo on build form help text
      c9ad1e6 bitbake: toaster: buildinfohelper Add additional metadata to the built layer
      072a0b3 poky: Exclude DATE from DISTRO/SDK_VERSION checksums
      f3c029f build-appliance-image: Exclude DDATETIME from task signature
      7833eb4 image-vm: Exclude DISK_SIGNATURE_GENERATED from task signature
      85ff4ff populate_sdk_ext: Exclude BBTASKDEPDATA from task signature
      66412ab opkg-utils: opkg-build exit when fail to list files.
      6b8f8a4 kernel-yocto: enforce SRC_URI specified branch
      6ebd43c linux-yocto/4.4: UVC: Add support for R200 depth camera
      6d2299f linux-yocto/4.4: fix PAT for 32bit x86
      5559301 Revert "linux-yocto: Work around PAT issue on qemux86"
      686c74f linux-yocto-dev: bump to v4.6-rcX
      b3ba813 linux-yocto/4.1: ahci: backport AHCI runtime PM
      8f7bbea linux-yocto/4.4: gpio-pca953x: add PCAL9535 interrupt support
      4a50c05 linux-yocto/4.1: telemetry and dmaengine backports
      31a10cb wic/isoimage-isohybrid.py: change cpio generated uid&gid to root
      5cabf3b wic/isoimage-isohybrid.py: use glob to find initramfs location
      5c60c36 bluez5: add ptest support
      fc8b24d oe/patch: print cleaner error message when patch fails to apply
      bf14014 oe/patch: more detailed error reporting
      a2bf9e3 insane.bbclass: avoid false positives on library location
      1f2f43c grub-efi.bbclass: use GRUB_ROOT rather than APPEND for root device
      bf58526 bitbake.conf: Add BB_WORKERCONTEXT to HASHBASE_WHITELIST
      1c1e851 gdb-cross-canadian: use PACKAGECONFIG for python and readline
      370a50a base: Fixup PACKAGECONFIG incorrect mappings
      dea3423 classes/packagegroup: Refactor code to be simpler
      5defbcd default-distrovars.inc: remove libassuan from LGPLv2_WHITELIST_GPL-3.0
      58d8123 libassuan: use package specific licensing
      1f2a01b init-install-efi.sh: remove all root=foo from grub.cfg
      3ce7d8c init-install.sh: fix disk_size
      46eed0a ltp: fix test_proc_kill hanging
      207ee90 ltp: add periodic output for memcg stress test
      feafad1 epiphany: Depend on intltool-native for configure
      2510239 image: Fix debugfs image type recursion loop
      7dcb4c4 bitbake: toaster: tests Migrate landing page tests to Selenium
      5b848fa bitbake: toaster: tests Migrate all projects page tests to Selenium
      f2a38ea bitbake: toaster: tests Migrate project builds page tests to Selenium
      961cd90 bitbake: toaster: tests Migrate all builds page and project page tests to Selenium
      f859a3d bitbake: toaster: tests Migrate to Selenium for UI tests
      965c72c yocto-bsp: Set correct default branches and branches base for i386, qemu and x86_64 archs
      d110eba selftest/signing: Use packagedata to obtain PR value for signing test
      34f11b5 lib/oe/packagedata: Add import os
      0012b90 base.bbclass: avoid duplicate call to d.getVar('LICENSE', True)
      efe73cb base.bbclass: drop obsolete HOSTTOOLS_WHITELIST_GPL-3.0
      5293b83 man: use BUILD_CC and target include files for configure
      5121705 scripts, lib: Don't limit traceback lengths to arbitrary values
      3168134 bitbake: bitbake: Don't limit traceback lengths to arbitrary values
      88ea0b9 image-vm.bbclass: remove invalid code
      4d1df2c image-live.bbclass/image-vm.bbclass: remove duplicated code
      d6d7526 bootimg.bbclass: merge it into image-live.bbclass
      723fa56 boot-directdisk.bbclass: merge it into image-vm.bbclass
      9e588481 man: fix several annoying compile/build warnings
      aa13b97 image.bbclass: Make unneeded packages for a read-only rootfs configurable
      4dde12f relocate_sdk: additional error checks
      22bd875 systemd: fix build with gcrypt PACKAGECONFIG disabled
      4b77909 devtool: modify: call shutdown on tinfoil when done
      43da712 toolchain-shar-extract.sh: ensure all_proxy is allowed through
      2aec71e oe-publish-sdk: exclude sstate-cache if publishing minimal SDK
      8ef7016 oe-publish-sdk: prevent specifying a directory for the SDK argument
      591b97c classes/populate_sdk_ext: support setting vars from environment at build time
      c37d542 scripts, lib: Don't limit traceback lengths to arbitrary values
      8049f25 pyton-numpy: Add definition of off_t size
      b75505e image-live.bbclass: DEPENDS on syslinux
      3ece012 ldconfig-native: Fix ELF flags on 64-bit binaries
      d492aec recipes-support/rng-tools: Change runlevel start from S to 2, 3, 4, 5.
      ab5c62e oeqa/runtime/parselogs.py: Add systemd unit circular dependencies errors.
      9be3fb2 systemd-serialgetty: allow baud rate overriding
      cf6788c psmisc: Remove including sys/user.h and __WORDSIZE
      ede11b6 selftest: Added testcase decorator to tests
      ccfe48c linux-yocto: add overlayfs feature
      6ae0224 linux-yocto/4.4: broxton and usb type-c backports
      e1ae3ee linux-yocto/4.4: drm/i915/skl: Fix DMC load on Skylake J0 and K0
      0a1d621 linux-yocto/4.1: Intel Broxton: pwm backports
      6ce8802 linux-yocto/4.1: Apollo Lake/Broxton mmc backports
      a256628 linux-yocto/4.1: i2c: designware: Backport i2c patches
      fbd209d linux-yocto/4.1: device property backports
      ccf1b33 linux-yocto/qemuarm64: enable 32 bit compatibility
      dacf9f2 linux-yocto/4.1: SMBus/iTCO backports
      ab6fd48 default-distrovars.inc: remove gnutls + libtasn1 from LGPLv2_WHITELIST_GPL-3.0
      2123a7e sanity.bbclass: Use pythonexception to raise real exceptions without backtraces
      6af88d8 sanity: Require bitbake 1.29.1
      1b2df6e uninative: Switch md5sum -> sha256
      f719386 bitbake: cookerdata.py: remove slash in the end
      e26087f bitbake: Bump version to 1.29.1
      d73da22 bitbake: build/utils: Allow python functions to execute with real exception handling
      672c07d bitbake: fetch2: Ensure that incorrect checksumed files are always renamed
      2554be4 bitbake: cooker: fix CookerParser.shutdown()
      53b5dc0 gcc: Fix musl ldso name for mips64
      dd31bca selftest/buildoptions.py: use INHERIT +=
      71db079 archiver.bbclass: addtask do_deploy_archives_setscene
      1ca71e5 bitbake: cooker: Ensure bbappend order is deterministic
      292c3e8 bitbake: checksum: In FileChecksumCache don't follow directory symlinks
      326fc29 gcc-5.3/gcc-4.9: -fdebug-prefix-map support to remap relative path
      9e20f94 ptest-runner_2.0.bb: Update recipe to point git.yoctoproject.org repo.
      437841c man: fix src/Makefile to work with parallel make
      abb5b46 oeqa/selftest/bbtests: Test bbappend order
      ddbeb56 bitbake: cookerdata: Improve handling of ParseError
      6dff639 gcc: Backport fixes for musl ssp configuration
      ab20659 siteinfo: Fix musl 64bit targets
      cd16b65 musl: Update to tip
      0883aff buildhistory.bbclass: create image directory when needed
      c093f7c runqemu: fix for iso
      f1f9f89 init-live.sh: fix overlay fs
      4e7eaed init-live.sh: fix ROOT_MOUNT
      1622077 no-static-libs.inc: build static libusb1-native
      b3e4a31 sstatesig: Ensure we keep native depends for allarch recipes
      528a890 oe-selftest: generate .env only in test_image_env
      21823cb build-appliance-image: Update to master head revision
      7d251f7 build-appliance-image: Fix permissions
      60656d0 bitbake: fetch2/wget.py: _check_latest_version_by_dir fix prefix detection
      45ee2b1 bitbake: fetch2/wget.py: _check_latest_version_by_dir use group names
      55cd35b conf/bitbake.conf package.bbclass: fix dbg package not contain sources while -fdebug-prefix-map used
      e2b919c externalsrc: remove nostamp from do_configure
      bbfc210 externalsrc: do not use do_configure[nostamp] for git srctrees
      9ee403b archiver.bbclass: Just archive gcc-source for all gcc recipes
      37683ef oeqa/utils/ftools: improve remove_from_file algorithm
      3a934a8 scripts:/oe-selftest: Use timestamp instead of test names in coverage data file
      71304d8 xcursor-transparent-theme: upgrade to latest git revision
      7c5343a gdb: Fix build on mips64/musl
      856be1f libunwind: Fix build on mips/mips64 for musl targets
      dd61341 toolchain-shar-extract.sh: check the length for target_sdk_dir
      c3c793b relocate_sdk: fixed .gccrelocprefix section handling
      cc97d57 glib-2.0: Fix packaging
      cef8bc9 gio-module-cache: Add class for Gio modules
      0cda9d8 glib-2.0: Install gio-querymodules in main package
      9ac1b6f oe-git-proxy: support username / password in http proxy
      a15541d oe-git-proxy: also check all_proxy and http_proxy env variables
      92b2bc5 wic: Update after task ordering changes
      d6cb46c image.bbclass: run wicenv task only for wic images
      5cb7705 wic: fix type of no-table option
      1209eb2 matchbox-desktop: Do not close desktop on alt-F4
      0361676 rootfs-postcommands: don't write manifest when IMAGE_MANIFEST empty
      abd5b24 bitbake.conf: rename 'gobject-introspection-data' machine feature to 'qemu-usermode'
      f81065f selftest/devtool: Update after make PROVIDER changes
      25a04ee make, remake: make them properly exclude each other
      f3a92ff kernel.bbclass: consider .csp firmware files
      0569b69 tzdata: update to 2016c
      a7e726a tzcode: update to 2016c
      201d9d3 icecc.bbclass: replace icc with icecc
      da00f6c icecc.bbclass: expand package arch
      3f1702c icecc.bbclass: add icc_is_allarch inherit check
      39170fe classes/sanity: use proper multi-line string literals
      33a6135 oe-buildenv-internal: simplify derivation of BB_ENV_EXTRAWHITE
      c6ab828 u-boot.inc: Add sub-dir support for SPL_BINARY
      ddedab4 quilt: run ptest as normal user
      afa4d5e site: Cache config vars for ccache
      04344eb gdb-cross: use PACKAGECONFIG for python and readline
      5005cab add !meta-poky to .gitignore file
      1dd9348 scripts/lib/bsp/help.py: Add missing options to yocto-bsp help and usage
      54eca75 poky-sanity.bbclass: update conf/templateconf.cfg for existing installations
      2b992f3 site.conf.sample: fix reference to oe-git-proxy script
      af63b49 conf-notes: remove reference to adt-installer
      1d219ce linux-yocto: Update SRCREV for genericx86* for 4.4
      8d4f43e linux-yocto: Update SRCREV for genericx86* for 4.1
      84d5924 bitbake: fetch2: Handle lockfiles for file:// urls redirected to mirrors
      b036afb bitbake: toaster: get all dependents for pkg for removal
      9bf98a9 bitbake: toaster: new customise package-remove modal dlg
      d5a419d bitbake: toaster: show full list of dependents to remove
      fda94f4 bitbake: bitbake: fetch2/gitsm: Fix fetch when the repository contains nested submodules
      1341c17 pseudo: backport a patch to fix xattr removal
      07f0af3 uninative: don't try to relocate static binaries
      c3c0d0a lib/oe/qa: add method to check if static or dynamic linked
      10b6037 uninative: ensure patchelf errors are visible
      86d7e44 libmad: remove use of obsolete _thumb over-ride
      e7395c8 perf: package python modules into perf-python
      b47225f perf: fix python scripts QA errors
      ea8b914 linux-yocto/4.1: MFD backports
      b6563a1 linux-yocto/4.1: device property : Backport device property patches
      46baceb linux-yocto: ktypes/standard: Add tmpfs-posix-acl feature
      bdf6b20 linux-firmware: Break out some additional firmware
      6d8141f linux-firmware: Clean-up and sync license data
      cea2a21 linux-firmware: Collapse iwlwifi firmware blobs for 7260 and 7265
      3b3fe1d linux-firmware: Update to latest HEAD
      d7cf2c3 archiver.bbclass: Fix tar name for git repositories
      2cb4cb7 archiver.bbclass: Fix gcc-source corner case
      c29eea0 archiver.bbclass: Fix use of ARCHIVER_WORKDIR and ARCHIVER_OUTDIR
      8b7ee6e archiver.bbclass: Don't expand python functions in dumpdata
      bc100b3 bind: /var/cache/bind
      04d883c sysvinit: downgrade ALTERNATIVE_PRIORITY[mountpoint]
      688d9a6 util-linux: split out util-linux-mountpoint
      85ff75d gconf: fix buildpaths QA issue
      7f7c9ab python-pygobject: use Python 2 instead of Python 3
      e33124f sanity.bbclass: check host tool dependencies on change in NATIVELSBSTRING
      4fe64d7 libunwind: Fix build with fstack-protector on musl
      4aa08b8 ltp: Fix build on x86/musl
      959b7f2 package.bbclass: Treat .node files same as .so when checking what to strip
      e0bc781 bootimg.bbclass: only inherit syslinux when pcbios
      1b1de89 grub-efi.bbclass: make it can build vm and live together
      4ebaeb2 bootimg.bbclass: fix settings for grub-efi.bbclass
      af1f77a pixz: Fix build on big-endian/musl systems
      421289c sanity.bbclass cleanup
      93e411e matchbox-wm: Update to fix XChangeProperty datatype issue
      c843022 matchbox-panel-2: Fix Home-button icon load issue
      01f6818 gstreamer1.0: fix introspection support also for git recipes
      171adb1 gstreamer1.0-plugins-bad: fix incorrect handling of Cflags in gstreamer-gl.pc file
      6462d08 x86-base.inc: suggest the latest kernel
      c5c9ed6 at: fix configure option with/without-selinux
      9b2b1f0 no-static-libs: just like target and native, nativesk-libcap doesn't like unrecognised options
      bf90d0c linux-firmware: package firmware for Marvell 88W8688
      cd17ab0 tune-arm926ejs: Handle missing thumb suffix
      5b70c7e nativesdk-coreutils: a lot of warnings fixed
      b47c53b runqemu-internal: split the code into functions
      fae732f runqemu-internal: cleanup unsed code
      e469bb7 runqemu: simplify checking for iso and ramfs
      3610329 runqemu: add support for qcow2 and vdi
      d85ca4a runqemu: remove ISO and RAMFS from help text
      58bc854 runqemu: simplify the checking for vm images
      6716eb2 runqemu: fix ROOTFS for vmdk
      258cfa8 python(3): Disable tkinter
      5988b5c selftest/signing.py: RPM_GPG_PASSPHRASE_FILE -> RPM_GPG_PASSPHRASE
      3e5c5fe gpg_sign.py: get rid of pexpect
      05d7e0d rpm: check _gpg_passphrase before ask for input
      13a31b1 oe-publish-sdk: fix remote publishing
      9926425 oe-publish-sdk: improve help output slightly
      905286c oe-publish-sdk: drop SDK installer file from published output
      0523378 devtool: add: create git repository if URL specified as positional argument
      11c1d30 devtool: add: delete externalsrc files on npm recipe do_install
      552a68a devtool: configure-help: fix error if do_configure not already run
      eab3f06 bitbake.conf: whitelist proxy variables in config hash
      58d2e56 classes/populate_sdk_ext: parse metadata on minimal SDK install
      0684572 devtool: sdk-install: add option to allow building from source
      50addfb classes/distutils*: don't hide logs when setup script fails
      0ec30c7 classes/packagegroup: drop complementary -ptest if ptest not in DISTRO_FEATURES
      d96ea29 classes/packagegroup: fix dbg/dev/ptest complementary packages
      b58e5b1 bitbake: bitbake: xmlrpc: set single use mode differently
      2df514b sdk-manual: Added note for running remote apps with SSH port forw enabled.
      12f5c25 poky.ent: Added code name for 2.1 release to the variable
      64241e0 sdk-manual: Applied more review edits to the manual per Eggleton.
      b44d9e5 ref-manual: Created distrodata and checkpkg tasks, updated distrodata class
      54050ff sdk-manual: Applied 2nd round of review edits.
      6db8cbc sdk-manual: Applied review edits to the manual.
      922eaeb sdk-manual: Updated the SDK devtool modify flow diagram.
      2bbf77a dev-manual: Fixed a grammar error
      286b76f sdk-manual, mega-manual: Updated the SDK devtool modify diagram
      c3946bc dev-manual, profile-manual, ref-manual: Updates to remove meta-toolchain
      7233e35 sdk-manual: Edits to add extensible SDK configuration sections.
      b31bf7c ref-manual, sdk-manual: Changed section heading.
      670735e ref-manual: Added some SDK manual support to introduction
      266742b profile-manual: Updated screen output for oe-init-build-env
      0654224 kernel-dev: Changed a link from an example to in-text.
      19e3648 dev-manual: Edits from a 2.1 read-through.
      a389684 poky.ent: Fixed a typo in one of the variables "ftar" to "tar"
      b5d3065 poky.ent, bsp-guide: Removed eMenlow example and updated 2.1 variables
      884b528 yocto-project-qs: Performed a read-through edit.
      4b42385 poky.ent: Updated copyright year and version variables.
      ae48b1f mega-manual: Added two new sections for the sdk manual
      815d686 sdk-manual: Added some intro stuff about the SDK
      4c5157f ref-manual: Resolving a conflict
      4306f7f sdk-manual, mega-manual: Added new figure for Eclipse flow.
      0bb6e48 sdk-manual: WIP on the book.
      5a64701 sdk-manual, mega-manual, Makefile: Added new figures
      32629e0 Makefile: Resolving a conflict
      af40e9a sdk-manual: Added a new figure for installed extensible sdk directory.
      6247788 sdk-manual: Applied some "red" text formatting to indicate notes
      7ab8afa Makefile: Added the ".png" part to a figure I forgot.
      fc43555 sdk-manual: Added a red-text "role" to the style sheet.
      d07100d sdk-manual: Added new section detailing installed SDK directory.
      b750729 sdk-manual-customization: Fixed XSL Appendix numbering parameter
      ad7a994 Makefile: Updated the figure list for the mega-manual.
      890f721 sdk-manual: WIP - Various small edits as WIP
      f15f96c sdk-manual: New content for outline purposes.
      4643b04 sdk-manual: Updated with two new appendices for new files.
      d05566b sdk-manual: Added sdk-environment.png diagram.
      0936eed sdk-manual: Added two appendix files to SDK Manual.
      6996a1c Makefile: Added sdk-environment.png to figure list for SDK Manual
      6cdb356 toaster-manual: Edits to a previous patch.
      77594c0 mega-manual, Makefile: Added support for three new toaster figures.
      00fe95d toaster-manual: Explain the local release
      d06c7b8 documentation: remove all references to Hob
      be8af37 ref-manual: Updated COREBASE_FILES variable.
      5c7e5aa bitbake: bitbake-user-manual: include/require checks current directory
      7ec8f28 bitbake: bitbake-user-manual: Updated the "inherit Directive" section.
      75cba54 bitbake: bitbake-user-manual: Updated the copyright year to 2016
      2918b50 bitbake: toasterui: remove ParseStarted from the event list
      ab2abd4 bitbake: toasterui: Remove the excessive exception logging
      d8137be bitbake: cache: Make BB_DONT_CACHE variable external
      1d1aaa2 bitbake: toaster: orm generate CustomImageRecipe contents try secondary path
      5c49230 bitbake: toaster: localhostbecontroller put generated layer in the builddir
      b60c994 bitbake: toaster: localhostbecontroller Allow file:/// uri type for git repo
      3025092 bitbake: toaster: orm Add a constant for the CustomImageRecipe's layer name
      3df6551 bitbake: toaster: localhostbecontroller Don't clear out toaster custom layer dir
      2f2f784 parselogs: add new whitelist entries to address 4.4.3 issues
      8037ba4 bitbake: bb/tests/fetch: Update cups url
      dab6d59 oe-buildenv-internal: Correct the sed expression which updates $PATH
      068afc5 tzdata: update to 2016b
      e140272 tzcode: update to 2016b
      c0b3667 ffmpeg: Remove RSUGGEST=mplayer
      e528a0a lttng-tools: Remove lttng-ust from PACKAGECONFIG for musl
      42b9bdf packagegroup: Disable packages not available on musl
      f148a2e world-broken: Add packages broken on musl
      624ca6a siteinfo: Move apr configure cache to common-linux
      90234f1 parselogs: add new whitelist entries to address 4.4.3 issues
      13a2a3f u-boot: Upgrade to 2016.03 release
      ecf3396 grub: add -Wno-error=trampolines to native CFLAGS
      07515b0 dhcpd: create dhcpd user for dhcp dameon
      b9ad80d valgrind: fix buildpath QA issue
      7985006 gcc-5.3/gcc-4.9:Reuse -fdebug-prefix-map to replace -ffile-prefix-map
      2faa718 gcc-5.3/gcc-4.9:replace build path with target path in __FILE__
      76f10fd oe-buildenv-internal: Some clean up
      4d1efc3 oe-buildenv-internal: Add variables individually to BB_ENV_EXTRAWHITE
      39ac332 oe-buildenv-internal: Add paths to $PATH individually
      dd5f2f7 oe-init-build-env*: Make them actually return failures
      ea28de6 oe-init-build-env*: Remove unnecessary differences between the scripts
      51aa00f oe-init-build-env*: Update/correct comment about specifying arguments
      16fb9b8 oe-init-build-env*: Allow $OEROOT to be predefined
      3173979 bluez5: allow D-Bus to spawn obexd in systems without systemd
      10ef68f oeqa: remove RPM 4 self test
      d915965 lib/package_manager: remove RPM4 support code
      03fce73 smartpm: remove rpm4 patch
      1e9de52 rpm: remove RPM 4
      a7dd04d grub: fix documentation rebuilds
      ee4f61b oe-selftest: Fixed --list-tests-by tag option
      068e898 gcc-runtime.inc: set LICENSE for all gcc-runtime packages
      788dfdd ParaTypeFFL-1.3: Add license file
      62ddde6 externalsrc: use shared stamp directory if B=S
      1969332 rpm: fix error when 'lua' is enabled
      a31301e matchbox-keyboard: Update to latest HEAD to fix 64bit issue
      40a55f1 oeqa/selftest/buildoptions: test read-only-rootfs
      f64fdd2 oeqa/selftest/sstatetests: verify more variables don't impact the hash
      ac347da gobject-introspection.bbclass: wrap comments at 80 columns
      ae63b88 qemuarm64.conf: don't clear MACHINE_FEATURES
      cad415d sanity.bbclass: allow customizing config file update error messages
      96a5cb4 sanity.bbclass: fix success message when config file was updated
      805aca8 sanity.bbclass: expand error messages for version checks
      7d6801c lighttpd: fix /usr/lib/mod_cgi.so: undefined symbol: chunkqueue_written
      5f7b9f0 valgrind: Disable nios2 support
      aaaccc4 systemtap: Disable nios2 support
      5857b20 lttng-modules: Add nios2 support
      26248cd kexec: Disable on nios2
      3e4d99b packagegroup-core-sdk: Disable sanitizers for nios2
      797ffc8 bdgwc: Backport nios2 support
      238e2c1 libatomic-ops: Backport nios2 support
      7e83af3 selftest/buildoptions: Renamed one test case
      0d9f515 python-numpy: Fix build on musl
      e1f3f4c socat: Access c_ispeed and c_ospeed via APIs
      bb4e6e0 watchdog: Disable nfs on musl targets
      f00cca8 bdwgc: Check for getcontext() API during configure
      51464e7 devtool: change config symlink name to .config.new
      8c0148f systemd: Fix and expand ptests
      427e369 oeqa/utils/testexport.py: add functionality for exporting binaries
      2191623 init-live : make it easier to add custom boot targets
      57a525c useradd_base.bbclass: replace retry logic with flock
      5d06f00 image.bbclass: track ROOTFS_POSTUNINSTALL_COMMAND in do_rootfs vardeps
      6129d86 eudev: split eudev-hwdb from eudev
      9aa27fe openssl: don't move libcrypto to base_libdir
      370419e xcb-util-image: Fix build with clang
      8727975 musl: Update to get mips64 port
      4653fdd dhcp: enable gentle shutdown
      e382d96 coreutils: fix reporting 'unknown' by `uname -p' and `uname -i'
      3b8cd1d ncurses_6: Improve installation
      9cc65ed Revert "selftest: Added MACHINE = "qemux86" to tests that use runqemu"
      3c5ee61 busybox: Drop -r passthrough patch
      2c666af linux-yocto/4.1: usb: add usb_otg_caps to usb_gadget structure.
      8dc9162 linux-yocto/4.1: Intel Broxton and Sunrisepoint-H: pinctrl and drm
      99ad4c9 linux-yocto/4.1: powercap/RAPL: Backport powercap/RAPL
      c4f544e linux-yocto/4.1: Thermal: Enable Broxton SoC thermal reporting device
      123c2c6 linux-yocto/4.1: usb backports for Apollo Lake/Broxton
      600b700 recipetool: create: don't create extra files directory unconditionally
      8debfea local.conf.sample: Disable prelink by default
      efa0881 oeqa/selftest/recipetool: Fix test_recipetool_create_simple
      c9d269c Revert "packagegroup-core-x11-sato: add python-pygobject and gtk+3"
      d24a39a oeqa/recipetool: Fix syntax error
      55a1e52 oeqa/recipetool: Improve debugging output by adding dirlist
      637b3c8 uninative: Add a fix for icu-native to use the correct ABI
      9dbfbe9 scripts/oe-selftest: Add short names to most common options
      681a452 gcc: Fix the license on GNU OpenMP
      15c5b2a Revert "gcc: Fix the license on GNU OpenMP"
      d5cdb48 perl: fix missing dependency for perl-misc
      0eb52b9 classes/buildhistory: record a few more variables for extensible SDK
      cbb4c5b package-deb: Ignore circular dependencies
      fcc7ff0 package_deb: Fix python runtime error
      9155b24 python-numpy: fix buildpaths QA issue
      9e69963 python: move ast module into python-core
      1a35166 xserver: require sufficiently new libdrm
      36bf666 package_manager.py: Fix race condition in OpkgIndexer.write_index()
      35be679 scripts/oe-selftest: Add search expression matching to run/list options
      4489ef1 glib-2.0: relocate the GIO module directory for native builds
      cf3402e image-buildinfo.bbclass: fix performance problems
      e2fe28c linux-yocto/4.4: gpio-pca953x: add "drive" property
      3d45853 python3: fix do_configure check platform triplet error
      03b167d ncurses_6: Fix an install race condition
      09eab6b build-appliance: make the inclusion of downloaded sources optional
      8ea5cdc builder: remove hob from autostart
      ff5d9f7 Revert "gstreamer1.0-plugins-XXX: move inherit gettext into common .inc file"
      c99da8d musl: disable building of gobject introspection data
      0dea50e machine/include/arch-x86: Make x32 ABI not supporting gobject-introspection-data
      8c14c74 bitbake.conf: add 'gobject-introspection-data' to DISTRO/MACHINE_FEATURES_BACKFILL
      2e27994 packagegroup-core-x11-sato: add python-pygobject and gtk+3
      8b1fa2a webkitgtk: enable gobject introspection
      7bd32b9 recipes-gnome: fix introspection support
      efd37c5 python-pygobject: update to 3.18.2
      ff3500b gnomebase.bbclass: do not disable gobject introspection
      ac5cc0c gstreamer: enable gobject introspection
      03cd714 libsoup-2.4: enable gobject introspection
      c1d67e4 clutter: enable gobject introspection
      0ec412b gtk+3: enable gobject-introspection
      d6f8028 gtk+: enable gobject introspection
      0d1e4b2 avahi: enable gobject-introspection
      d2e0dc1 python-pygtk: remove the recipe
      0c6d7cb avahi-ui: remove the dependency on python-pygtk by disabling avahi-discover
      4fbf761 vala.bbclass: remove pre-packaged vapigen.m4 from tarballs
      235455d vala: enable the use of vapigen by packages with vala support
      d1b96f1 gobject-introspection.bbclass: add a class that enables gobject introspection
      96b5847 gtk-doc-stub: remove introspection stubs
      3a1d9fb gobject-introspection: Override GIO_MODULE_DIR when scanning
      10e9977 gobject-introspection: add the recipe
      3c66619 bitbake: fetch2/npm: fix ud.registry so that alternative registries can be handled
      0155472 ref-manual: Updated "Application Development SDK" section.
      4438460 ref-manual: Applied review edits to several SDK variables.
      3c727ff ref-manual: Updated "Cross-Development Toolchain Development" section.
      af1517c ref-manual: Updated "Build History SDK Information" section.
      d9fc04b dev-manual, mega-manual: Updated "Application Development SDK" section.
      357aa33 ref-manual, mega-manual: Updated "SDK Generation" section.
      54490c0 ref-manual: Added several extensible SDK variables to glossary.
      6dfd441 ref-manual: Updated IMAGE_PKGTYPE variable.
      77f002c ref-manual: Updated "Cross-Development Toolchain Generation"
      ee90cc6 ref-manual: Updated the "Build History SDK Information" section.
      53dd8a0 dev-manual: Moved "Optionally Using an External Toolchain" to Tasks chapter.
      9d76cfe meta: toolchain-shar-relocate.sh: Fix for extracting SDK in the same directory as SDK script.
      054abad nettle: The variable named p in the patch file was incorrectly named.
      93a5417 valgrind: Make dep on glibc-utils conditional on TCLIBC = glibc
      40c9774 make 4.1: fix segfault when ttyname fails
      7f27713 gcc: Disable libitm for MicroBlaze
      81d58d6 sign_package_feed: add feed signature type
      42f612c package_manager: sign IPK package feeds
      c637783 signing-keys: create ipk package
      14e809e gpg_sign: export_pubkey: add signature type support
      0b088e0 gpg_sign: detach_sign: fix gpg > 2.1 STDIN file descriptor
      2fccd8a gpg_sign: add local ipk package signing functionality
      6bd6a2b systemd: add comment stating that resolved needs gcrypt
      a5fd57d selftest/bblayers.py: Remove harcoded recipe files
      dce7290 selftest/prservice.py: Sanitize package version when looking for stamp
      cbd87f3 lsof: update UPSTREAM_CHECK_URI
      57fb05a eudev: provide UPSTREAM_CHECK_URI
      3f8d5bf toaster.bbclass: show packages that were setscened into existence too
      39e1351 gcc: Fix the license on GNU OpenMP
      c6aeef3 linux-yocto/4.4: Galileo updates
      37b61b0 siteinfo: Add ppc64le support.
      0265fcc nettle: disable static for 2.7.1
      8660cd1 nettle: Security fix CVE-2015-8804
      dae5715 nettle: Security fix CVE-2015-8803 and CVE-2015-8805
      24aea3a glib-2.0: silence warnings when parsing headers for introspection
      3331992 qemu: Limit paths searched during user mode emulation
      b578a06 image-mklibs: handle position independent binaries
      c706b5e libpam: define limits.conf as CONFFILES of package libpam-runtime
      82dec46 perl-rdepends: Remove circular dependencies
      815c36f rpm: Sync CVS to regular version
      775f22e rpm: Fix musl integration with RPM5
      001bdef gcc: Disable libitm for nios2
      d53413d bitbake: server/process: Try connecting 4 times before giving up
      0f01059 bitbake: toaster: models List only have the specified project's imported layers
      0dcab02 bitbake: toaster: rework task buildstats storage and display
      cc74a8a bitbake: toaster: use force_bytes to display non-ascii project names
      aebc22d bitbake: fetch2: Make SRC_URI[md5sum] and SRC_URI[sha256sum] expand their values
      d405f97 bitbake: xmlrpc: fix bug in setting XMLRPCServer.single_use
      c50bdb3 bitbake: fetch2/npm: add missing URL argument to ParameterError
      fbf27c4 bitbake: fetch2/npm: properly handle npm dependencies
      ef6a451 bitbake: fetch2/npm: fix errors with some version specifications
      ad50ce9 populate_sdk_ext: Correct commit 8b81bb56c69aabdea984352f8e267a9783c0bdbc
      bc0e99d recipetool: create: shrinkwrap and lockdown npm modules
      309b2e6 recipetool: create: support creation of additional files by plugins
      2279eb2 recipetool: create: check if npm available if npm:// URL specified
      9145500 recipetool: create: split npm module dependencies into packages
      d46827c recipetool: create: add license file crunching
      3fd244b recipetool: create: match *LICENSE* as a license file
      2b6a352 recipetool: create: improve mapping for autotools program macros
      1607fac recipetool: create: be more tolerant of spacing in configure.ac
      9dca5c8 lib/sstatesig: skip shared_workdir when checking locked sigs
      142bad3 python3: fix patching get_python_lib() in distutils/sysconfig.py
      50d07e9 python3-native: use the previous version of python-config script
      5dce2e3 qemu.bbclass: add qemu_wrapper_cmdline()
      8b5afcd db: remove the NO_UPDATE_REASON and replace it a comment about RPM
      5699c67 rpmresolve: It is not necessary to manually specify -lpopt
      8ea55ba rpm: A number of the patches have been submitted upstream
      6833c5d rpm: Enable specific crypto and digest settings via variables
      59a4d99 security_flags.inc: Special flags are needed for RPM
      007c284 rpm: Uprev to rpm-5.4.16 (pre) and rpm-5.4+cvs to current CVS head
      a27ca6d yocto-bsp: Update templates to 4.4 kernel
      2d0933c conf/distro/include: drop old recipes
      1fd183e bblayers.conf.sample: remove BBLAYERS_NON_REMOVABLE
      477b8fb poky: Enable uninative
      1b7cc9c linux-yocto/4.4: explicitly enable ftrace in tracing fragment
      aee7482 linux-yocto/4.4: iwlwifi: mvm: don't allow sched scans without matches to be started
      2408f49 linux-yocto/kernel-meta: ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED
      9ac029b xmlto: tell xmlto where cp is
      6d89b52 toaster.bbclass: improve how we gather buildstats for Toaster
      4dd3e40 image-prelink: use STAGING_*_NATIVE variables
      2193e9d strace: Backport fixes for compiling with clang
      ee8ff42 ghostscript: 9.16 -> 9.18
      3f5725c fontconfig: Revert changes made to FcConfigAppFontAddDir() recently
      433d866 populate_sdk_ext: Make populate_sdk_ext nostamp
      e186d6d systemd: binfmt should be added to SYSTEMD_PACKAGES only if binfmt is enabled
      b051a95 license.bbclass: fix host contamination warnings for license files
      f8a9774 oeqa/selftest/buildoptions: Test build does not fail without git rev
      656aeff busybox.inc: add tail symlink so busybox can commit suicide cleanly
      a321f4e avahi-ui: add dbus to PACKAGECONFIG
      1bd4b72 avahi: add missing intltool-native build dependency
      72f9e39 avahi: make dbus optional but default
      424466b oe-setup-builddir: tidy up local.conf and bblayers.conf commentary
      07919e9 net-tools: Add SCTP option support
      e8254bc tune-corei7.inc: Fix PACKAGE_EXTRA_ARCHS for corei7-32
      5346675 eudev: remove redundant udev_run assignment
      adad264 xcursor-transparent-theme: use a version glob in the selftest bbappend
      946d00c populate_sdk_ext: Update after uninative changes
      ba57ba1 image.bbclass: support chaining compression (aka conversion) commands
      5ac3dc7 image.bbclass: fix incomplete .rootfs customization
      3322fa7 bitbake: toasterui: fix warning 'Unknown event'
      621cbc8 bitbake: toasterui: exit on final events
      8e138b7 bitbake: toasterui: make toasterui to work in build mode
      0a61306 bitbake: toasterui: check if setEventMask succeeded
      ac941ac bitbake: command: make setEventMask readonly
      dd3da9a bitbake: toasterui: update list of events
      f56fa5d bitbake: toasterui: reformat list of events
      a71d32a bitbake: toaster: remove sshbecontroller module
      3db71b4 bitbake: toaster: don't use sshbecontroller
      790b2d1 bitbake: toaster: raise NotImplementedError
      96535ba bitbake: toaster: bring back the strict directive
      5b8b399 bitbake: toaster: change 'revision' to 'Git revision'
      07ead98 bitbake: toaster: views api Package info return both kinds of RDEPENDS
      9cda2ab bitbake: toaster: fixup dependency excludes for customimage
      a54cebe bitbake: fetch2/npm: ignore unknown headers in tarballs
      0cd1be1 bitbake: fetch2/npm: handle alternative dependency syntax
      d999927 bitbake: fetch2/npm: fix indentation
      26ee4dd image creation: allow overriding .rootfs suffix
      e43fcdf scripts/hob: drop
      59b4cef classes/packageinfo: remove
      bbf2a5d conf/documentation.conf: remove BBLAYERS_NON_REMOVABLE
      7054882 yocto-uninative: Add common include for uninative
      d2c96ca mtools: Drop GCONV_PATH manipulation
      d27644e uninative: Handle relocate of GCONV_PATH in libc
      0523499 uninative: Add checksum support
      73265d1 uninative: Refactor common code
      4feb00d uninative: Use CXX11 ABI for interoperation between gcc4 and gcc5
      013dd24 uninative: correctly enable uninative
      034618d glibc: Add relocation of GCONV_PATH
      8dca343 uninative-tarball: Add glibc-gconv-iso8859-1 for guile
      1f50f29 dkpg: Use tar everywhere (not gtar)
      b158d6c gtk3+: Add missing DEPENDS on wayland-native
      e395e81 tune-cortexa17.inc: apply changes similar to a15
      ea53d1e sstate: Allow late expansion of NATIVELSBSTRING
      bd3a1d5 linux-yocto: Update SRCREV for genericx86* for 4.4
      70c6df2 linux-yocto: Update SRCREV for genericx86* for 4.1
      ae85c4b linuxloader/image-prelink/image-mklibs: Fix non-standard path prelinking
      0b84897 insane/prelink: Handle nonstandard library paths
      6b564ae ext-sdk-prepare: Catch setscene tasks which should have run but didn't
      d8efd2e createrepo: Fix stat floating timestamps
      ce5a9df xmlto: ensure /bin/bash is used as bash
      70b4f36 openssl: add a patch to fix parallel builds
      1632742 xdg-utils: remove trailing whitespace in multiline string
      816391a btrfs-tools: Add libgcc to RDEPENDS
      e467156 bitbake.conf: Add libgcc-native to ASSUME_PROVIDED
      a91713f net-tools: Override CFLAGS/LDFLAGS in do_install too
      fb0c3c5 nspr: Fix build regression on musl from last upgrade
      37f5fb9 gdb: fix builds with internal readline and no static libraries
      6518db4 feature-arm-thumb.inc: Fix thumb tune override warning
      afb1d09 recipetool: create: fix support for AX_CHECK_LIBRARY
      463fd5e formfactor: assume a keyboard is plugged in
      e2107f5 acl: Fix re pattern in test cases
      82a8064 gcc-runtime.inc: disable libitm for little endian MIPS too
      25d9c4e devtool: add build-sdk subcommand
      41eb36d devtool: build-image: rename module
      82d0c8a oeqa/buildoptions: Improve unsafe references tests
      4284fdf insane.bbclass: make the checking stricter for unsafe references in scripts
      5cd71fe yocto-project-qs: Updated flow to mention Toaster
      cd041b7 dev-manual: Applied review comments to the devshell section.
      f54fe56 ref-manual: Updates for nativesdk clarifications.
      a882267 dev-manual: Fixed typo in the devshell section.
      70c7e36 dev-manual: Created devtool upgrade section.
      b2b22d5 dev-manual, mega-manual, Makefile: Added support for new upgrade flow
      0b7d8a4 dev-manual, mega-manual: Updated the workspace directory structure image
      050e021 dev-manual: Applied review changes to the devtool section.
      09ecf38 dev-manual, mega-manual: Updated three figures for devtool
      f33ffaa dev-manual: Applied more review comments to the section.
      fe70eb2 dev-manual, mega-manual: Updated the devtool modify flow diagram.
      eb3b414 dev-manual, mega-manual: Updated the devtool add flow diagram.
      4c5bd3f dev-manual, mega-manual: Updated the devtool workspace figure.
      9cee16b dev-manual: Applied review comments to the devtool section
      c678d1a dev-manual: Updated the devtool add section.
      a09238a dev-manual, mega-manual: Updated devtool add flow diagram
      7699f0a dev-manual: Added section for devtool modify flow
      1eecaea dev-manual, mega-manual: Added new figure for devtool modify flow
      9582da6 dev-manual: Edits to the devtool-add section.
      740369f dev-manual, mega-manual: Updated the devtool add flow figure
      a848e9f dev-manual, mega-manual: Updated the workflow layer content figure.
      34e08b3 dev-manual: Added new "writernotes" style.
      17a21e6 Makefile, dev-manual, mega-manual: Added new figure support
      d346c35 dev-manual: Applied review comments to devshell section.
      3b41049 ref-manual, dev-manual: Clarifying "native" and "sdknative"
      a1970eb dev-manual: Updated devshell section.
      a58cde0 toaster-manual: Updated how manage.py createsuperuser command is run
      c5b4f69 ref-manual, dev-manual: Clarification of "native" and "sdknative"
      952bcc7 toaster-manual: Removed prompts for json file.
      34c75fa ref-manual: Updated the S variable description with feedback
      2b2ced0 ref-manual: Updated the staging.bbclass description
      b9dddd5 ref-manual: Updated the S variable description.
      41e9f7c dev-manual, ref-manual: Updated licensing text information.
      5066fbc ref-manual: Added order information for conf file parsing.
      ad6b2f2 toaster-manual: Removed typo - double "allow" words.
      c8c533e ref-manual: Updated the do_populate_sysroot task.
      2a3942b dev-manual: Updated section on adding license text.
      77b3d06 ref-manual: Updated the S variable entry in the glossary.
      a1a4808 toaster-manual: Applied a patch to weed out build mode (modes).
      353b755 bitbake: bitbake-user-manual: Added expand() function to list.
      638ad17 bitbake: bitbake-user-manual: Added note for Python variable ref expansion.
      da22add bitbake: bitbake-user-manual: Enhance environment variable discussion.
      f11de9d e2fsprogs: do not enable non-stable features by default
      b04280a sdk_update.py: Enable local sdk-update tests
      14dd07c sdk.py: Fix undefined variable
      c12e919 eudev: recipe formatting improvements
      73a43fc openssl: Security fix Drown via 1.0.2g update
      ed14aef layer.conf: Update after replacement of udev with eudev
      e72233a bootimg: set default value for LABELS variable
      4eaef67 sanity: Do not mistake meta-yocto-bsp for meta-yocto
      86759de sanity.bbclass: remove conflict checking for image vm and live
      bb1c719 syslinux.bbclass: make vm and live can be built together
      5c5c13d recipetool: create: add basic support for new npm fetcher/class
      2be37a9 recipetool: create: add basic support for generating linux kernel recipes
      5cf15ff recipetool: create: add support for out-of-tree kernel modules
      937ecd0 bitbake: toaster: cleanup of bin/toaster startup code
      a7d1b95 bitbake: ui: remove the puccho ui
      a9dc72f bitbake: hob: removal of hob ui and associated ui files
      27468db bitbake: fetch2/npm: Add missing ParameterError import
      44e3461 bitbake: npm: in cases where shrinkwrap resolved a git URL, ignore it and grab dist.tarball
      2a73181 bitbake: fetch2: Fix unpack for absolute file urls
      865d2fe bitbake: fetch2: fixes copying of file://dir; subdir=foo, bug 6128 and bug 6129
      fb437d3 meta-yocto-bsp: bump to linux-yocto 4.4 for the non-x86 BSPs
      fbedac4 maintainers.inc: Add new eudev package and change maintainership for udev
      0138874 gcc: Add support for atomic opertions (libitm) where available
      70153b4 classes/externalsrc: fix symlinking if symlink exists pointing to another path
      eac4061 populate_sdk_ext: Only write LCONF_VERSION to bblayers if it is set
      c366343 automake: don't delete .pyc files
      d6e63be cracklib: fix Python packaging
      a005d25 populate_sdk_base: handle empty SDK_PACKAGING_FUNC
      ec3be9f linux-yocto/4.4: update to 4.4.3
      6ed16ff linux-yocto/4.1: iwlwifi: mvm: don't allow sched scans without matches to be started
      2497e80 linux-yocto/4.4: update to -stable 4.4.2
      aa2c1f7 linux-yocto: braswell: Remove feature and move DRM_I915_PRELIMINARY_HW_SUPPORT option
      702701d linux-yocto/4.4: yaffs2 build fixes
      c2152b8 linux-yocto/4.1: update to 4.1.18
      45d4cd7 linux-yocto/4.1: clkdev updates
      79ecef6 linux-yocto/4.1: Galileo updates
      5f61693 usbutils: Fix for new eudev implementation
      c89b777 libgudev: Fix for new eudev implementation
      3e5e540 eudev: Replaces udev with eudev for compatibility when using sysvinit on newer kernels
      674e55f populate_sdk_ext: Delete the buildtools tar file after installation
      d8acef2 libarchive: Set xattrs after setting times
      431c1e1 combo-layer: handle empty commits during "init --history"
      695cc45 classes/populate_sdk_ext: prepend to PATH rather than appending
      b145480 classes/module: allow substitution of the modules_install target name
      b03936c grub2.inc: drop bogus dependency on xz
      7328765 grub2.inc: avoid passing -isystem to native builds
      576587d grub2.inc: dont export TARGET_CFLAGS etc to grub2 configure
      97a3322 harfbuzz: update 1.2.1 -> 1.2.3
      edf93a0 gstreamer1.0-plugins-bad.inc: limit ARM_INSTRUCTION_SET over-rides to armv4/armv5
      89140b0 dhcp: CVE-2015-8605
      6ccd8cd sato/images: Add ptest image
      f38debb layer.conf: Whitelist cantarell-fonts fontconfig dependency
      b307937 pango: make ${PN}-ptest RDEPENDS on cantarell-fonts
      0c80f29 cantarell-fonts: Add recipe
      4006a7f sanity: Fix int verses string reference
      2e27c4b bitbake: fetch2/npm: Enable fetcher
      1c060d7 pseudo: Increase number of retries
      030d920 bitbake: providers: Fix PREFERRED_VERSION lookup for '_' in PN
      c679a3d bitbake: fetch2: Skip lockfiles and donestamps for local files
      d01042e bitbake: fetch2/__init__.py: Error if lockfile path invalid
      ab7b7bf bitbake: fetch2/__init__: Fix decodeurl to better handle urls without paths
      06b4d8f bitbake: fetch2/wget: Set localfile for directories
      8d7e799 genericx86-common: Update PREFERRED_VERSION_linux-yocto to 4.4
      65d6a62 gstreamer1.0-plugins-bad.inc: enable webp PACKAGECONFIG by default
      cd00748 gettext: Delete libintl.la file from install
      b33efa9 systemctl: handle RequiredBy dependencies
      8caa592 ffmpeg: add bzlib, lzma and xv PACKAGECONFIGs
      0011760 rootfs-postcommands: fix ssh_allow_empty_password checking
      96f5f89 musl: Add linux-libc-headers to deps
      3354878 mesa: Fix build on musl
      7651342 dosfstools_2.11: fix build following removal of -e from EXTRA_OEMAKE
      6c8abea uclibc support for rng-tools
      c7e5a38 oeqa/sdkext: Add sdk_update.SDKUpdateTest class.
      738bd1a classes/testsdk: Pass tcname to SDK and SDKExt contexts
      2a410b2 classes/testsdk: Move the removal of bitbake PATH to eSDK context only
      eb1f8b9 classes/testsdk: Move code for avoid PATHs to oeqa.utils
      55d4849 gstreamer1.0-plugins-XXX: control orc PACKAGECONFIG via GSTREAMER_ORC
      083c63d boost.inc: fix BJAM_OPTS --build-dir option
      f4e17c6 shared-mime-info: update to 1.6
      4ffdfdf vala: update to 0.30.1
      f53f374 python-git: update to 1.0.2
      ec73437 pax-utils: update to 1.1.5
      447ddb9 nettle: update to 3.2
      26a3d25 ncurses: update to revision 20160213
      dc42d30 libdrm: update to 2.4.67
      0296e0a gtk+3: update to 3.18.8
      e08ad62 gtk-icon-utils-native: update to 3.18.8
      9daf153 git: update to 2.7.2
      927dfaf gnupg: update to 2.1.11
      2c39358 clutter-gst-3.0: update to 3.0.16
      b8a1e59 ccache: update to 3.2.4
      4d4aa1f libsolv: update to 0.6.19
      8c2e420 ffmpeg: update to 3.0
      afce247 nspr: update to 4.12
      b19dbe5 pcmanfm: update to 1.2.4
      6b41608 libfm: update to 1.2.4
      325a9d3 epiphany: update to 3.18.4
      d4da534 wic: don't throw away our created swap partition
      5f82d17 automake: set test-driver path relative to top_builddir
      b41862d uninative-tarball: respect SDKMACHINE when building
      4d1c14f boost.inc: enable more verbose build logs
      7f84ad0 gstreamer1.0-plugins-XXX: move inherit gettext into common .inc file
      2ce48e6 gstreamer1.0.inc: add explicit PACKAGECONFIG init
      935d88a gstreamer1.0-libav: move LIBAV_EXTRA_CONFIGURE_COMMON_ARG into .inc
      3a8ff19 gstreamer1.0-libav_git: add --ranlib option to LIBAV_EXTRA_CONFIGURE_COMMON_ARG
      b8bdb99 boost.inc: limit ARM_INSTRUCTION_SET over-rides to armv4/armv5
      9ca8f30 populate_sdk_ext: Add images to SDK_INSTALL_TARGETS
      07dc765 boot-directdisk.bbclass: drop IS_VM chechking
      a87574c image-live/boot-directdisk.bbclass: remove AUTO_SYSLINUXCFG
      76eb815 testimage.bbclass: reuse generic test suites
      6571a84 testimage.bbclass: add generic, image test suites
      8c45747 gconf: remove redundant dependencies
      a74c389 gtk-doc-stub: don't inherit autotools
      2269f90 os-release: sanitise VERSION_ID field
      9d86b26 apr-util: add ldap crypto and sqlite3 to PACKAGECONFIG
      d8d2f57 apr-util: fix loadable module packaging
      77cfa2b glibc.inc: improve optimisation level sanity checking
      04c4719 rsync: add native variant
      2c20fe4 core-tools-profile: add lttng tools for aarch64
      8a0b997 lttng-ust: add support for aarch64_be
      6081c35 liburcu: add support for aarch64_be
      07a3c71 harfbuzz: add explicit dependency on fontconfig
      73cc8b8 harfbuzz: update 1.2.0 -> 1.2.1
      bb151b8 fontconfig: Don't add font directories from host
      e9f5134 musl: Upgrade to 1.1.14
      bf4d380 oe-selftest: devtool: add an additional test for devtool upgrade
      4bae2f2 oe-selftest: devtool: rework devtool upgrade test
      10290f2 devtool: upgrade: print new recipe name
      5cd3be3 devtool: upgrade: drop PR on upgrade
      e6f684b devtool: upgrade: eliminate unnecessary datastore copy
      860574e devtool: upgrade: fix several issues with extraction of new source
      66a781c devtool: upgrade: fix constructing new branch from tarball releases
      d30cc76 devtool: upgrade: fix renaming of recipe if PV is not in name
      75eeeab devtool: upgrade: fix moving version-specific files directory
      81ebb0b devtool: upgrade: fix version argument checking
      e953b57 devtool: upgrade: drop superfluous call to validate_pn
      492b1eb devtool: upgrade: make source tree path optional
      942ae25 devtool: modify: fix source tree default name when mapping virtuals
      e2334e1 devtool: add: tweak auto-determining name failure message
      55ae566 uninative.bbclass: if the loader can't be found disable instead of failing
      50b8740 uninative: use check_output instead of Popen directly
      4495e8b lib/oe/qa: add explicit exception for 'file isn't an ELF'
      4553bb1 libdrm: fix build with uclibc
      4e5a871 strace: fix ptest execution
      e8e0489 clutter-1.0: Fix confgure test errors found by clang
      b748f40 oeqa/parselogs: Updated whitelist
      4b32351 buildstats.bbclass: Don't assume /proc/<pid>/io present
      07e1f10 sysvinit-inittab: Move start_getty scrip to base_bindir.
      8d07e14 oeqa/selftest/prservice: Added new TC: check pr-server starts and stop correctly on localhost.
      d2a563c oe-selftest: Add support for lib/oeqa/selftest subdirectories
      7f58b92 musl: Upgrade to 1.1.14
      73bf792 devtool: update-recipe: create config fragment
      2fbd1d7 devtool: sync: update kernel config
      26f951b git: fix installed-vs-shipped QA Issue
      033db24 btrfs-tools: fix symlink creation multiple times
      9af773f bison/gettext: add --with-bisonlocaledir to assign BISON_LOCALEDIR
      b14e2ae gcc: use relative path for configure script
      1f00fb2 depmodwrapper-cross: nopackages to avoid QA [buildpaths] issue
      00a6f5a oeqa/utils: added new network module
      3f7aa6f scripts/oe-selftest: Use site.USER_SITE to run coverage configuration code for sub-process
      1c6c76e scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest
      4a21827 oeqa/selftest/signing: Added test for locked signatures
      604dc1c package: check inherit instead of PN to decide if a recipe is a packagegroup
      b4df005 tune-cortexa9.inc: add vfpv3 tunes
      889a5cc mirrors/own-mirrors/sanity: Updates after npm fetcher addition
      28d17cf npm.bbclass: Add npm class to match fetcher
      bc5a1d1 base: Add nodejs-native dependency for npm:// urls
      9d5483c meta-yocto: Rename to meta-poky to better match its purpose
      ab3a718 adt-installer: Drop since its replaced by the extensible SDK
      c1c6a9d sanity: Improve configuration upgrade capabilities (support meta-yocto -> poky transition)
      2587101 image: Run do_rootfs_wicenv after do_image
      e0fd964 bitbake: toaster: change 'delete layer' to 'remove layer'
      6e82820 bitbake: toaster: rename 'run again' button
      c8dd72c bitbake: toaster: fix banner after customimage package add
      149f574 bitbake: toaster: custom breadcrumb for the default project
      4a12865 bitbake: prserv: Add dump_db()
      bdb51ab bitbake: toaster: remove custom images from Image Recipes
      98d462c bitbake: toaster: show suffix for image files and basename for artifact files
      88b5660 bitbake: toaster: add missing link to image recipe details
      25b179d bitbake: toaster: adjust the search field width
      a97081b bitbake: toaster: make 'configuration' the first tab
      e1fc319 bitbake: toaster: link to configuration in all breadcrumbs
      df2808f bitbake: toaster: reduce max height of modal dialogs
      6c51f08 bitbake: toaster: disable add layer button on click
      d4a663a bitbake: toaster: apply error class to name field
      48f0ae2 bitbake: toaster: fix custom image name form
      07eb4f2 bitbake: toaster: comment out project release change
      12ade9b bitbake: fetch2/npm: Add mirroring support for npm fetcher
      ca5b6d6 bitbake: fetch2/npm: Add npm fetcher
      813bd1f bitbake: utils.py: Add sha1_file call
      7bb9e8d signing-keys: Make signing keys the only publisher of keys
      64ab17b systemd: Upgrade to 229
      44248af harfbuzz: update to version 1.2.0
      f4f5573 perf: add sysroot handling to subcmd
      7a95c2c oeqa/selftest/buildoptions: build -minimal instead of -sato images
      2980ac0 bitbake.conf: add findutils-native to ASSUME_PROVIDED
      2e152ff findutils: upgrade to 4.6.0
      951ce18 mesa: add missing space to RRECOMMENDS append
      2305610 uclibc: Do not use immediate expansion operator
      aab3900 security_flags: Disable ssp when compiling uclibc
      afb954e rpm: fix building rpm 5 with internal beecrypt
      069cdbe alsa-lib: topology: Add missing include sys/stat.h
      b879aed libsdl2: Fix patch after upgrade
      3d4f71d gstreamer1.0-libav_git: update 1.7.1 -> 1.7.2
      9d83a3e gstreamer1.0-plugins-ugly_git: update 1.7.1 -> 1.7.2
      6456a6f gstreamer1.0-plugins-bad_git: update 1.7.1 -> 1.7.2
      821498f gstreamer1.0-plugins-good_git: update 1.7.1 -> 1.7.2
      04e77c1 gstreamer1.0-plugins-base_git: update 1.7.1 -> 1.7.2
      e67c91d gstreamer1.0_git: update 1.7.1 -> 1.7.2
      ea8c34e libnewt: Fix build with PIE flags
      66a833a pseudo: Fix build when security flags are enabled
      91a1baa glibc: Upgrade to 2.23
      c1f9507 no-static-libs: remove eglinfo
      0ab67d6 freetype: use autotools instead of a manual do_configure
      4883ccc classes/populate_sdk_ext: add a better config extension mechanism
      524ee08 recipetool: create: improve CMake package mapping
      7b6e5b0 recipetool: create: add additional extension mechanisms
      b2d4472 devtool: modify: tweak help description for behaviour change
      a8e0e5e devtool: deploy-target: preserve existing files
      2059a34 devtool: undeploy-target: support undeploying all recipes
      b95c72c devtool: deploy-target: write deployed files list to target
      62989ef devtool: sdk-update: tweak command-line handling of updateserver
      cada5a8 devtool: (un)deploy-target: add help descriptions
      6bd88e6 scripts/lib/argparse_oe: tweak title above options
      32ef523 devtool: categorise and order subcommands in help output
      9f7df76 devtool: update-recipe: don't show workspace recipe warning if no update
      51972ed devtool: reset: fix preserving patches/other files next to recipes
      e54f9c1 devtool / recipetool: use common code for launching editor
      dd35f69 devtool: minor fix for error message
      41242a2 staging.bbclass: remove trail slash from SYSROOT_DESTDIR
      aeb8964 terminal.bbclass: import oe.terminal for oe.terminal.prioritized()
      bee556a recipe_sanity.bbclass: skip DataSmart in recipe_sanity_eh()
      2d293bd image.bbclass: fix circular dependency when IMAGE_FSTYPES append hddimg
      a332360 toolchain-scripts.bbclass: add three other path to PATH in env.sh
      4d2910f libsoup-2.4: disable libsoup-gnome by default
      619f6c6 libsoup-2.4: prevent PACKAGECONFIG dependant package renaming
      13e726f libsoup-2.4: minor formatting improvements
      dd0ef3c populate_sdk_ext.bbclass: Add SDK_RECRDEP_TASKS variable
      4c5c40d devtool: Don't recursively look for .devtoolbase in --basepath
      0220180 populate_sdk_ext: Don't ignore SDK_TARGETS value
      8c0ba8d bitbake: toaster: toastergui Fix invalid char test and implementation
      913e9b1 bitbake: toaster: PackagesTable show only installed packages
      94bca58 bitbake: toaster: toastergui unit tests convert to use fixtures
      8796ac8 bitbake: toaster: SoftwareRecipesTable apply default order_by
      8469e58 bitbake: toaster: orm migrations Sort out migrations mess
      78b6109 cml1/sstate: Fix missing getVar parameter
      7e19f88 linux-yocto/4.1: capabilities backports
      54bfbcc waf.bbclass: Remove --disable-static from EXTRA_OECONF
      51fc304 gcc-5.3: backport fix for PR-target-65358
      ed20c6c epiphany: Add libxml2-native to DEPENDS
      2021f63 libsdl2: update to 2.0.4
      947b3bf cmake: Update to 3.4.3.
      4699483 sstate.bbclass: use oe.gpg_sign for gpg signing
      db7c7c2 oe/gpg_sign: add 'passphrase' argument to detach_sign method
      e845b75 sign_rpm.bbclass: do not store key details in signer instance
      d5be866 oe/gpg_sign: add 'armor' argument to detach_sign()
      03554b7 oe/gpg_sign: add verify() method
      af7e516 ruby: break out ri-docs and rdoc into separate packages
      8bcf139 insane.bbclass: print more info for build-deps and file-rdeps
      5f3dfea curl: re-enable proxy support by default
      1f61888 libtool: Don't hardcode grep paths
      a3b996a cml1.bbclass: fix do_menuconfig
      91bfe50 cups: upgrade to 2.1.3
      eeac0a9 coreutils: upgrade to 8.25
      01dc859 findutils: upgrade to 4.5.19
      bf7d5f6 diffstat: upgrade to 1.61
      247f3b4 grep: upgrade to 2.23
      4e5e501 bitbake: data_smart: Drop default expand=False to getVarFlag [API change]
      c7610aa bitbake: data_smart: Drop default expand=False to getVar [API change]
      4f0ab27 bitbake: SignatureGeneratorBasic: make checksum cache file configurable
      0cdf193 bitbake: MultiProcessCache: make cache filename configurable
      ca552bb bitbake: FileChecksumCache: add get_checksums() method
      8f61f2d bitbake: bb/runqueue: save task file dependency cache onto disk
      5177b1e bitbake: SignatureGenerator: add method for saving the file checksum cache
      97617fd bitbake: bb/cache: drop some unused arguments
      5a87d8c bitbake: Allow Hob to run images on a custom simulator, other than qemu
      7fc38ea gma500-gfx-check: Fixes infinite calling to modprobe gma500_gfx
      be7b52a pulseaudio: 6.0 -> 8.0
      c52b8f6 alsa-plugins: 1.0.29 -> 1.1.0
      a231a4e alsa-utils: 1.0.29 -> 1.1.0
      1adbb73 alsa-tools: 1.0.29 -> 1.1.0
      3a82e2e avahi: update to version 0.6.32
      14daeb5 no-static-libs.inc: Add libcap-native
      c001863 libsdl2: Fix build with static libraries disabled
      a46dc87 uboot-inc: Backport patch to fix Beaglebone Black bootloader
      c7355b9 busybox: drop patches that are not valid anymore
      47d0119 pcmciautils: Update SRC_URI
      f37ac5b debianutils: Upgrade 4.5.1 -> 4.7
      adfcaf2 busybox: Add musl config for _git recipe
      46824dc debianutils: Fix SRC_URI to use debian snapshot
      3df8701 nfs-utils: bugfix: adjust name of statd service unit
      c15bf55 musl: Upgrade to 1.1.13+
      07e7879 dpkg: Update to 1.18.4
      5794b56 glew: upgrade to 1.13.0.
      aea0746 glew: rewrite to use upstream build system
      0b1c324 socat: Fix build with musl
      04c6a48 binutils: Fix useless rpaths QA warning
      eb6d14e image/populate_sdk: seprate variables to fix dependency
      c9e5e34 gcc: Backport nios2 r31 fix
      012460d sqlite3: update 3.10.2 -> 3.11.0
      f770a6e insane: wrap autotools checks in inherits_class(autotools) checks
      35011d9 cmake: don't inherit autotools
      9cd64ed oeqa/selftest/bbtests: Test bitbake --setscene-only option
      7e5b451 glew: don't put our CFLAGS into the pkgconfig file
      b1145cc dbus: update large file patch
      fad63e3 coreutils: fix problem with acl for 6.9 version
      351039f gcc-4.9/5.3: Ignore -fdebug-prefix-map in producer string
      7a11650 bitbake.conf: use target path as compile dir in debugging info
      ef30119 glibc: Security fix CVE-2015-7547
      c834ebc glibc: CVE-2015-8776
      842177a glibc: CVE-2015-9761
      efa1ae5 glibc: CVE-2015-8779
      aefe1fa glibc: CVE-2015-8777.patch
      152914f oeqa/parselogs: Whitelist dmi firmware failure message in 4.4 kernels
      683ea31 rng-tools: Fix underquoted m4 and libgcrypt floating dependency
      7a700f5 lib/qa.py: raise ValueError if file isn't an ELF
      334e1b5 lib/oe/qa: ELFFile: check that a path is a file before opening it
      11359e9 rng-tools: fix the build with musl
      a258589 bitbake: bb.ui.knotty: prefix task messages with recipe/task
      4bf8b21 bitbake: Move bb.{debug,note,..} into their own logging domain
      3b35de3 layer.conf: Add gstreamer1.0-meta-base to SIGGEN_EXCLUDERECIPES_ABISAFE
      14e9385 sstate: Add ca-certificates-native to postinst recipes list
      73e53e4 nss: define RPATH variable for nss-native
      6e4e9f7 Revert "lsbinitscripts: fix the path for mountpoint"
      6db39e1 libunwind: Fix build on ppc
      47896a7 dbus-glib: 0.104 -> 0.106
      93d8fc1 conf/no-static-libs: add explicit rule for libical
      637b44c runtime/systemd: Fix for boot time string parse error
      ef5b8b4 security_flags: Add SECURITY_CFLAGS to TARGET_CC_ARCH for binutils
      1387785 binutils: Use tip of 2.26 branch
      da13f0b buildhistory.bbclass: remove out-dated information on request
      a56da4a Remove obsolete references to exmap
      8b21720 bitbake: knotty: Set exit failure code on runQueueTaskFailed events
      a9223e2 bitbake: taskdata: Fix traceback issue with missing provider
      7593756 bitbake: cooker: Improve cache handling
      9cb38c1 poky: Disable static libs by default
      f852014 bitbake.conf: Remove unhelpful default value for EXTRA_OEMAKE
      b050c50 apmd: fix build with static libraries disabled
      d585a71 oeqa: Update to handle domain specific references in build logs
      9300749 libpng12: Handle no static libs
      67ea65e ed_0.5: Handle --disable-static option
      438d6d6 conf/distro/include: Add no-static-libs.inc
      2eb19cc classes/buildhistory: fix for python function parsing change
      1a3204c valgrind: Fix build with musl
      e8b0da1 rpm: Fix build with musl
      48144e0 gstreamer1.0-meta-base: Mark as machine specific due to COMBINED_FEATURES
      ff8ca89 gdb-cross-canadian: Add missing virtual/* DEPENDS
      120a160 e2fsprogs: Update to upstream version of a patch
      5394ada gdb: Rationalise PACKAGECONFIG
      ce0f8ab insane: Add --disable-static to UNKNOWN_CONFIGURE_WHITELIST
      94abdb2 linux-yocto: Work around PAT issue on qemux86
      6fb493a libgcrypt: update 1.6.4 -> 1.6.5
      bf9ad22 musl: Upgrade to tip of tree
      5d156bc oe-selftest: don't use specific tasks
      80e8928 oe-selftest: pylinted wic tests
      9b6dc9b wic-image-minimal: use uuid for root partition
      ab7cb65 wic: fix processing of --use-uuid
      51e0a8a oe-selftest: add new wic testcase
      2100f82 wic-image-minimal: update .wks to boot by qemu
      4b26601 wic-image-minimal: change IMAGE_FSTYPES
      f799e21 oeqa/targetcontrol: support wic image type
      7066f16 oeqa/targetcontrol: make ssh control optional
      0ade658 qemurunner: add parameter to method 'start'
      d083fec oe-selftest: remove unused parameter
      c26a9c3 runqemu: support path/to/<image>-<machine>.wic
      c7f0578 runqemu: don't set KERNEL for wic images
      2c3a009 runqemu: add support for wic images
      64d2f13 scripts/sstate-cache-management.sh: Change wording
      6740dd5 qemu.inc: Add rng-tools to qemu images
      ce3df21 rng-tools: Import recipe from meta-openembedded
      36b43b2 lib/oe/terminal: set workdir for konsole terminal
      03e1950 mmc-utils: upgrade to latest git version
      b5b8003 ltp: Upgrade to 20160126 and fix build on musl
      f6b3957 initscripts: start urandom after populate-volatiles
      85ac8eb initscripts: populate-volatiles.sh: add mount-bind feature
      be5b72c libdrm: don't detect components that have been disabled
      5fc5996 buildhistory: Fix regex to handle versions without spaces
      7c3d4c0 debian: Fix superfluous setting for RPROVIDES
      2eba066 autotools: Fix interaction with bitbake -b
      9c8fee9 autotools: Correct dependency search logic error
      971fafb maintainers.inc: include libjpeg-turbo and mmc-utils
      4e0b334 scripts/runqemu-internal: Work around qemux86 PAT bugs in linux 4.4.1
      283a302 sanity: Bump minimum version to 1.29.0
      1c2d632 bitbake: Bump version post release to 1.29.0
      a12dcc4 base.bbclass: fix support for gitsm://
      bc72f64 linux-yocto: Update SRCREV for genericx86* for 4.4
      be89a1d linux-yocto: Update SRCREV for genericx86* for 4.1
      4a8d20a poky: update qemu* to prefer 4.4 kernel
      d255f4f linux-yocto/4.1: galileo backports and support
      fdcb373 linux-yocto/4.1: update to v4.1.17
      5688cab linux-yocto/4.4: update to v4.4.1
      f9f93ae bitbake: cooker: gracefully shutdown parsers
      1f7f077 bitbake: buildinfohelper: unset brbe variable when build finishes
      9a6cb10 nativesdk-buildtools-perl-dummy.bb: Fix variable expansion in python code
      5e978d7 classes/testsdk: do_testsdkext avoid STAGING_DIR/BASE_WORKDIR in PATH
      f56e9aa freetype: update 2.6.2 -> 2.6.3
      1ba1aa3 freetype: minor formatting improvements
      0d5e611 piglit: upgrade SRCREV
      72c6b62 libbsd: Security fix and update 0.8.2
      78be954 gstreamer1.0-plugins-bad_git: fix gst_structure_get() etc compiler warnings
      fdd8979 gstreamer1.0-plugins-good_git: fix gst_structure_get() compiler warning
      a23a50e python-setuptools: Add python-compile on RDEPENDS
      914ff14 qemu: Security fix CVE-2016-2198
      0938353 qemu: Security fix CVE-2016-2197
      1f3e1d1 curl: add PACKAGECONFIG options for less common / legacy protocols
      19045ba toaster: tests Remove symlinks from toasteruitest folder
      738a9b7 classes/sanity: check_perl_modules provide output when fail
      e64ce73 oe-selftest: devtool: add another devtool add test
      a5095d1 recipetool: create: set S when we set SRC_URI from local git repo
      ca5a36c recipetool: create: convert http git URLs that don't end in .git but contain /git/
      4c71afb recipetool: create: ensure URL parameters don't make it into the name
      86f3464 devtool: add: fix adding from a local source directory
      fa50153 devtool: modify: make -x the default behaviour
      f767757 recipetool: create: determine name/version from github/bitbucket URLs
      d94c7e3 recipetool: create: support cmake find_library directive
      ddfe744 devtool: commit for extra tasks that modify source when extracting
      e36cb6c classes/externalsrc: create symlinks for workdir and logs
      20034c3 classes/externalsrc: disable rm_work when active
      c38f253 uninative.bbclass: capture stdout/err from patchelf-uninative
      9065222 db: update HOMEPAGE
      f0d5478 mdadm: update to version 3.4
      79d5041 iproute2: update to version 4.4.0
      21e3b2a image_types_uboot: add cpio.gz.uboot to supported IMAGE_TYPES
      6fab5fc recipetool.newappend: add -e/--edit argument
      252f97e liburcu: Add nios2 support
      e72ab70 strace: Fix build for arc, metag, nios2, or1k, tile
      691277f udhcpc: specify full path for ip command calls
      f141f0b alsa-lib: avoid including <sys/poll.h> directly
      a1ad3d0 oprofile: Add nios2 support
      fd7dd07 nspr: Add nios2 support
      954dc45 guile: Fix nios2 support
      611e3d8 binutils: Repair nios2 PLT and GP handling
      027eac5 gstreamer1.0-meta-base: make gstreamer1.0-plugins-base-alsa conditional
      056d82c curl: drop obsolete pkgconfig_fix.patch
      0e62f01 iproute2: update to version 4.4.0
      216e618 quota: update to version 4.03
      25d2956 oeqa/selftest/sstatetests.py: check that PARALLEL_MAKE doesn't change signatures
      2966016 bitbake.conf: remove unused ALLOWED_FLAGS
      3bdeda5 libproxy: remove GPLv3 logic and spurious exports
      86994fd libproxy: add PACKAGECONFIG control for gnome3
      033d754 libproxy: replace PACKAGECONFIG equivalent with the real thing
      e65a29e openssh: Properly skip ptrace test if tools are missing
      e1a1e0b openssh: Fix regex that sets sftp-server path for tests
      d7faf67 insane.bbclass: Support MicroBlaze with musl
      9937c93 hdparm: Explicitly set EXTRA_OEMAKE as required
      7475c4c qemu: Security fix CVE-2016-1568
      4857511 xserver-xorg: Add PACKAGECONFIG for crypto libraries
      34798fa mesa: upgrade 10.6.3 -> 11.1.1
      7edea7c initrdscripts: fix mmc device as install target
      c3ef2bb libsoup-2.4: Remove unnecessary gnutls dependency
      04454b2 wpa-supplicant: Only depend on libgcrypt when needed
      4de0ee6 systemd: Don't depend on gcrypt unnecessarily
      0da96bf3 buildstats.bbclass: remove dead URL from comment
      326592d Remove obsolete references to exmap
      a0cc1c3 curl: update 7.47.0 -> 7.47.1
      a0d3eb9 sign_package_feed.bbclass: fix task dependencies
      8cb1e83 oe/gpg_sign: fix incorrect variable name
      902a68f meta/conf/layer.conf: adapt to more flexible initramfs-framework RDEPENDS
      5b2b343 tune-corei7.inc: tell qemu to emulate a matching processor
      5b70ee4 pixz: fix upstream version check
      62a6f97 webkitgtk: update to 2.10.7
      1cd6912 libwnck3: update to 3.14.1
      e53eef9 iso-codes: update to 3.65
      30cf8aa bash-completion: fix upstream version check
      8098256 gstreamer1.0: fix upstream check for unstable versions from git
      c24b0ab ffmpeg: update to 2.8.6
      9237097 python: merge python-elementtree into python-xml
      5ac4172 piglit: add missing dependency on python-xml
      4d3ca42 systemd: tighten timesyncd and journal-gateway user accounts
      6be3031 systemd: extend PACKAGECONFIG flags
      85728ec systemd: rename systemd-zsh to systemd-zsh-completion
      22a2866 systemd: move some tools into systemd-extra-utils package
      9909104 classes/useradd: handle whitespace only USERADD/GROUPADD/GROUPMEMS
      e485686 systemd: realign packages list
      41d0f83 systemd: move bash completion into separate package
      9a80afd nettle.inc: drop duplicate LIC_FILES_CHKSUM and SRC_URI hashes
      72ec267 gdb: drop unnecessary CC_FOR_BUILD etc exports
      00d6b67 gdb: build fix for MIPS + musl libc
      40e4e8c strace: build fix for MIPS + musl libc
      299b426 uclibc: fetch from master branch not 1.0
      4ac4d28 uclibc-ng: Bump up to 1.0.12 release
      70bfd4c musl: Upgrade to tip of tree
      d1496b4 e2fsprogs: Fix multiple xattr handling
      9d4b526 cdrtools-native: Explicitly set EXTRA_OEMAKE as required
      864797a oeqa/prservice: Fix whitespace problem
      7cd8351 pseudo: uprev to 1.7.5
      246b02e ptest-runner: Explicitly set EXTRA_OEMAKE as required
      7932525 unzip: Explicitly set EXTRA_OEMAKE as required
      4ef055c sysklogd: Explicitly set EXTRA_OEMAKE as required
      625066b stat: Explicitly set EXTRA_OEMAKE as required
      07e81c8 pigz: Explicitly set EXTRA_OEMAKE as required
      936223b iputils: Explicitly set EXTRA_OEMAKE as required
      1e3fdbb ed: Explicitly set EXTRA_OEMAKE as required
      ef36b6f gptfdisk: Explicitly set EXTRA_OEMAKE as required
      59ee206 dmidecode: Explicitly set EXTRA_OEMAKE as required
      d17758a libacpi: Explicitly set EXTRA_OEMAKE as required
      44e8d0f apmd: Explicitly set EXTRA_OEMAKE as required
      961d898 perl: Explicitly set EXTRA_OEMAKE as required
      ecb9c34 oeqa: Improve test failure messages
      ae2f3a3 sstate: Ensure populate_lic sstate objects are cleaned
      26f26e5 package_deb: Ensure allarch deb packages aren't target specific
      b3a2065 base: Make do_cleansstate nostamp
      37357ab classes/testimage: Fix exportTests function.
      f895a61 classes/testsdk: Add help information on how to run tests.
      e22fbce oeqa/sdkext/devtool.py: Add location test to ensure that devtool is the eSDK one.
      92d0cc5 oeqa/sdkext: Add devtool basic tests for eSDK.
      a619ea2 oeqa/oetest: Fix compatibility SDK tests using eSDK.
      062dbd6 classes/populate_sdk_ext: Add SDK_EXT_TARGET_MANIFEST and SDK_EXT_HOST_MANIFEST
      4cfdf17 testsdkext: Add skeleton for support Extensible SDK tests.
      5580d7b classes/testsdk: Add compatibility SDK testsuite to eSDK
      7181da7 oeqa/oetest: oeSDKTest when run a command redirect env output to null
      f3c2ce2 classes/testsdk: Add function run_test_context
      3577c35 oetest.py/TestContext: Move loadTests and runTests inside it.
      8009418 testimage/testsdk: Move get test suites routine inside TestContext.
      b588b80 testimage/testsdk: Modularize TestContext.
      59791d1 toolchain-shar-extract.sh: Add proxy variable to new env.
      abd8158 classes/testsdk: Add call to export_proxies on testsdkext.
      42f2ac4 classes/testsdk: Add testsdkext task only install.
      90590ab get_test_suites: Add sdkext type for load test suites.
      2ecc319 populate_sdk_ext: Set TOOLCHAINEXT_OUTPUTNAME.
      7b459be classes/testimage: Add defeault inherit for testsdk.
      24326a9 classes/testsdk: Add new class testsdk.
      3d1d30b testimage: Modularize helper functions for get test lists.
      8b5ee36 bitbake.conf/base: Improve handling of SRCPV
      947e526 oeqa: setup bitbake logger after tinfoil.shutdown
      400f530 bitbake: build: Improve python execution tracebacks
      aece748 bitbake: build/data: Don't expand python functions before execution [API change]
      e39cfb1 bitbake: cooker: Don't expand python functions in variable dumps
      f652b6b bitbake: data: Don't expand python functions for variable dependencies
      d3e0c44 bitbake: data_smart: Avoid expanding anonymous python functions
      e0eb2ea bitbake: toaster: models Remove manual transaction control from lsupdates
      48622e1 bitbake: toaster: build section Improve display of builds when > 1 targets
      4d0ba0f bitbake: toaster: templates make build data breadcrumb consistent
      99184d7 bitbake: BBHandler/ast: Merge handMethod and handleMethodFlags
      6ba69b4 bitbake: utils: Drop datastore function inspection during exception
      f8a44b1 bitbake: cooker: extended dot styling
      30c132b bitbake: toaster: Enable Image Customisation feature
      5e14a8f bitbake: toaster: xhr_customrecipe_packages Add dependencies to included packages
      749f5a6 bitbake: toaster: orm generate_recipe_content only exclude locale packages
      6269411 bitbake: toaster: customrecipe page Add last successful build link and conditionals
      8d5b61e bitbake: toaster: models Add update_package_list for CustomImageRecipe
      86db0bd bitbake: toaster: orm Add last_updated field to CustomImageRecipe
      18d8b17 bitbake: toaster: models add get_last_successful_built_target method
      8885b7b bitbake: toaster: pkg_dependencies_popover just show direct dependencies
      40f6eff bitbake: toaster: models add all_depends method for Package_DependencyManager
      a8ab1c6 bitbake: toaster: buildinfohelper CustomImagePackage update dependency info
      0fee829 bitbake: toaster: newcustomimage_modal add frontend name validation
      cb6d290 bitbake: toaster: API CustomImageRecipe check the recipe name supplied is valid
      5634a25 bitbake: toaster: views CustomRecipe API add size information to the package lists
      6fbceb0 bitbake: toaster: models Invalidate ToasterTables cache when a m2m field changes
      998f9af bitbake: toaster: customrecipe Add dependency tracking to package selection
      9976e4f bitbake: toaster: tables move template logic into the pkg_add_rm_btn
      d77c247 bitbake: toaster: CustomImageRecipe generate overwrite IMAGE_FEATURES
      481dc11 bitbake: toaster: make locale packages uneditable in custom image page
      a757d39 bitbake: toaster: include locale and packagegroup packages in custom image
      baac458 bitbake: toaster: update custom image package table filters
      efbffe3 bitbake: toaster: move recent builds query to model
      b514785 bitbake: toaster: update customimagerecipe migration
      df58f5b bitbake: toaster: add merge migration to resolve conflict
      38f4913 bitbake: toaster: orm generate_recipe_file_contents Handler for require recipe
      769017e bitbake: toaster: project builds Poll the server to get latest progress for build
      971d65c bitbake: toaster: localhostbectrl Update the dirpath of customrecipe's base layer
      6d9f342 bitbake: toaster: tables Check layer presence in project for customise_btn
      76c0008 bitbake: toaster: toastergui tests Add addtional data to the setUp for new tables
      70a078e bitbake: toaster: tables SelectPackagesTable rename recipe_id to custrecipeid
      7e4c231 bitbake: toaster: toastergui tests Update package test to use CustomImagePackage
      4b3c9d6 bitbake: toaster: customrecipe Add further front end features using new API
      b213907 bitbake: toaster: xhr_customrecipe_packages add GET info for package response
      a9668ee bitbake: toaster: xhr_customrecipe_id change to use CustomImagePackage
      439314c bitbake: toaster: API allow CustomImageRecipe to be updated after creation
      9ea4de6 bitbake: toaster: tables Change SelectPackagesTable to use ProjectPackage
      20f400b bitbake: toaster: tables add recipe download link to CustomImagesTable
      1c9ce1c bitbake: toaster: newcustomimage_modal use libtoaster method for new CustomRecipe
      8b1d043 bitbake: toaster: libtoaster Add createCustomRecipe method
      32048fa bitbake: toaster: orm Add convenience method to get all pkgs in a CustomImageRecipe
      c80b7df bitbake: toaster: orm get_project_layer_versions to return layer_version objects
      796e348 bitbake: toaster: toastergui tests Add unit test for download custom recipe
      04d8c94 bitbake: toaster: toastergui tests Update to reflect changes to CustomImageRecipe
      4e8a0aa bitbake: toaster: views xhr_customrecipe_packages clean up API
      66b5608 bitbake: toaster: toastertable remove title from Show all in table
      ce72896 bitbake: toaster: Add recipe details page
      5f52614 bitbake: toaster: newcustomimage Move modal dialog out of newcustomimage template
      2a3dd32 bitbake: toaster: Continue front end features to custom image recipe page.
      d6e7e4a bitbake: toaster: tables Add table for Packages and update SelectPackagesTable
      43f0a05 bitbake: toaster: views Add view to download custom recipe
      2cf55af bitbake: toaster: move CustomImageRecipe generation to API entry point
      c402ac2 bitbake: toaster: orm add CustomImageRecipe generate contents function
      a6e4f94 bitbake: toaster: buildinfohelper Add the concept of CustomImagePackage
      e1bfe1c bitbake: toaster: orm: Add db migration for new CustomImagePackage table
      f760a78 bitbake: toaster: orm Add CustomImagePackage table
      4117af2 bitbake: toaster: orm: Add db migration for new CustomImageRecipe inheritance change
      1f10289 bitbake: toaster: orm make CustomImageRecipe inherit from Recipe
      648753b bitbake: toaster: orm Add sum of dependencies size function to PackageDependencyManager
      a92fc30 bitbake: toaster: tablejs Add an event handler to manually trigger a data reload
      4c82878 bitbake: toaster: ToasterTables simplify filter function move common part to widget
      3e1e8e6 bitbake: toaster: models fall back to a sensible string for no vcs reference
      14d09c8 bitbake: toaster: localhostbecontroller CustomRecipe now base_recipe is Recipe
      7d5d8d0 scripts/lib/bsp/engine: trailing whitespace cleanup
      dfeda17 scripts/lib/bsp/engine: fix path separator
      d482d84 maintainers: remove gtk-theme-torturer and gnome-mime-data
      d0d85a4 bitbake: bb/fetch2: Move export_proxies function from wget to utils.
      7226ce2 glibc-locale: fix QA warning
      4a2f42f formfactor: add machconfig for Beaglebone
      eb53c54 sstatetests: Fix after change to sstate populate_lic SWSPEC
      a43b9ef gstreamer1.0-plugins-base: move freetype dependency into 1.6.3 recipe
      fb4f05b gstreamer1.0-plugins-base_git: update to git master 1.7.1-79-g6414289
      fc81c80 gstreamer1.0-plugins-bad_git: avoid including <sys/poll.h> directly
      3f02474 gstreamer1.0-plugins-good_git: avoid including <sys/poll.h> directly
      9b0a74a gstreamer1.0: avoid including <sys/poll.h> directly
      f9e565e gmp_4.2.1: fix build for MIPS
      6d570c8 gmp.inc: limit ARM_INSTRUCTION_SET over-rides to armv4/armv5
      3aecdd9 gmp: move BBCLASSEXTEND = "native nativesdk" from gmp.inc into 6.1.0 recipe
      263a65d gmp: move SRC_URI out of gmp.inc + minor reformatting
      aacae25 image_types.bbclass: Embed IMAGE_NAME in ubinize config file
      9c0d4ec toolchain-scripts: drop PYTHONHOME
      6560f80 python: set PYTHONHOME for nativesdk
      92ae4e2 gcc: musl related fixes for ppc/secure-plt and gthr
      9e5222c gcc: Assume libssp and dl_iterate_phdr on musl
      281bd41 security_flags: wipe security flags for gcc/glibc and related libraries
      61a5875 security_flags: use -fstack-protector-strong
      a07f2fd security_flags: ensure security flags only apply to target builds
      8d57d1d gcc: Fix build on musl with -fstack-protector
      eb134c6 isoimage-isohybrid.py: fix cpio working directory
      8bedf76 glib-2.0: use the system libpcre
      1ae132e libpcre: enable unicode properties by default
      3adb8d5 python3: remove optimize by default patch
      1df1ac9 security_flags.inc: don't do -pie for syslinux
      562c75c neon: convert to PACKAGECONFIG
      6228cf8 bitbake: toaster: reinstate ID on edit columns button
      916c73d bitbake: cooker: shutdown cooker parser on shutdown
      8857498 bitbake: fetch2/osc: Clean up old variable syntax
      54da829 bitbake: fetch2/osc: Remove hardcoded url
      c57ba52 cross-localedef-native: add ABI breaking glibc patch
      0cc825f uninative: Improve error handling
      576a248 patchelf: Add patch to handle large files
      bbdbe00 package_manager.py: fix python indentation bug (opkg)
      ea40a0b populate_sdk_ext: Make populate_sdk_ext depend on sdk_extra_conf
      4f7656a populate_sdk_ext: Add support for a "minimal" type
      71bb332 populate_sdk_ext: Don't set sdk_update_targets in the config
      5b7a43e toolchain-scripts.bbclass: Use PYTHONPATH instead of PYTHONHOME
      f1f8447 copy_buildsystem.py: Pass the nativelsb argument to gen-lockedsig-cache
      b130805 gnome-mime-data: remove
      12d5fa8 gtk-theme-torturer: remove from oe-core
      659d755 openssl.inc: drop obsolete mtx-1 and mtx-2 over-rides
      32b498c scripts/devtool: Add getVarFlag expand argument
      ed5daa1 bitbake.conf/native/nativesdk: Set PKG_CONFIG_SYSTEM_ at top level
      8fa2d52 pango: unset LDFLAGS when building gen_all_unicode
      edfaa04 pango: merge bb and inc
      00ccf51 e2fsprogs: Ensure we use the right mke2fs.conf when restoring from sstate
      66a6ec2 nativesdk: Set PKG_CONFIG_SYSTEM_ variables
      34e95b0 local.conf.sample.extended: Document HOW-TO enable systemd or busbox for init system
      077d32e local.conf.sample: Remove trailing whitespaces
      6ae662a bitbake: parse/ast: Mark anonymous functions as python functions
      9913fd8 bitbake: codeparser: Improve handling of data.expand() dependencies
      4628fe1 bitbake: lib/bb: Add expansion parameter to getVarFlag
      b98866d bitbake: fetch2/gitsm: Fix when repository change submodules
      390c2c1 bitbake: data_smart: Add missing expand parameter to getVar call
      56454f6 bitbake: bitbake: prserv: do not clear umask when daemonizing
      abf8a8f bitbake: bitbake: prserv: SIGTERM handling hung process
      be032fc bitbake: bitbake: prserv: -wal and -shm sqlite lost when daemonizing
      1e95ebd poky-tiny: Use musl for default system C library
      6594bd5 maintainers.inc: Set me as Maintainer of QEMU.
      86851d5 insane: Fix populate_sysroot sanity test path
      d09a25e socat: upgrade to 1.7.3.1
      fad264b libffi: move from recipes-gnome to recipes-support
      d3753dd libffi: ensure sysroot paths are not in libffi.pc
      c72614b syslinux: remove LDFLAGS manipulation
      8ad11fc lttng-tools: Fix ptest installed la files
      66ed16b gnutls: update 3.4.8 -> 3.4.9
      149cb17 python-distutils: add missing dependency on python-email
      3473962 nss-myhostname: Fix build on musl
      42e37d7 linux-firmware: update to latest revision 52442afee
      ce1bed7 license.bbclass: add LICENSE_CREATE_PACKAGE to perform_packagecopy vardeps
      e43504b i2c-tools: point SRC_URI at Yocto source mirrors
      2d7622c gnutls.inc: allow libidn support to be controlled via PACKAGECONFIG
      60ebe1c gnutls.inc: add gmp to DEPENDS
      935aa96 gnutls.inc: minor formatting improvements
      3fa1c54 Revert "kernel/kernel-arch: Explicitly mapping between i386/x86_64 and x86 for kernel ARCH"
      0b82af2 wic: isoimage-isohybrid: check for syslinux-native
      9699441 formfactor: add machconfig for qemumips64
      4701dc9 ncurses: use closing curly brackets in FILES_${PN}-tools variable
      9d9f233 util-linux: Change ALTERNATIVE_PRIORITY above busybox
      8f2306c mktemp: lower the priority of standalone mktemp package
      6251846 libxsettings-client: drop obsolete disable_Os_option.patch
      7894633 wic: default to empty bootloader config
      090fb51 copy_buildsystem: add ability to exclude layers
      8dc600f toaster.bbclass: reinstate scan for artifacts in the sdk directory
      eee675b toaster.bbclass: attach image file scan postfunc to do_image_complete
      0c0b072 meta: add ASSUME_PROVIDED dependency on wget-native for http fetches
      f926610 gtk+3: Tweak getVar to use True, not 1
      7fa6eeb classes/lib: Add expand parameter to getVarFlag
      252e645 python-pycurl: remove unnecessary exports
      9fd214d sstate: Fix SSTATE_SWSPEC only used by populate_lic tasks
      4ea6a64 package.bbclass: Add data expansion to do_split_packages()
      6ab5001 busybox/gtk/perl/base-passwd: Ensure data is correctly expanded
      e8860f7 ref-manual: Fixed typo in FAQ 14.15 section.
      9d2925e ref-manual: Updated FAQ entry regarding Proxy for SOCKS
      29a44da ref-manual: Fixed type in LICENSE_CREATE_PACKAGE variable description
      4181e58 ref-manual: Updated warning regarding libexecdir
      0d8bd7d ref-manual: Added description for LICENSE_CREATE_PACKAGE variable.
      6aca5b8 ref-manual: Added remove-libtool class
      5e2201e toaster-manual: Updated the "Installation" to have TOASTER_DIR information
      3aa162a p11-kit: fix packaging warnings
      60c9759 piglit: don't use /tmp to write generated sources to
      b33e440 libical: Work around hardcoded paths in pkgconfig file
      a131b6e documentation.conf: align the documentation for DEBUG_OPTIMIZATION and FULL_OPTIMIZATION with bitbake.conf
      974a8c0 pciutils: Explicitly set EXTRA_OEMAKE as required
      2d3e6f3 openssl: Explicitly set EXTRA_OEMAKE as required
      b07e161 dbus: add user sessions support
      877eae1 dbus: use ${systemd_system_unitdir}
      6010088 populate_sdk_ext: Add SSTATE_MIRRORS to config blacklist
      70ec867 insane: add test for -dev packaging containing real libraries
      38d6f1f python3: set INSANE_SKIP as libpython3.so is a trampoline library
      4ac4023 p11-kit: fix module packaging
      9a27010 libnl: package the libnl-cli modules in libnl-cli
      111af1d remove-libtool: add new class
      333dce4 gtk-immodules-cache.bbclass: fix immodules-cache path
      b1e41f4 Revert "matchbox-keyboard: export GTK_IM_MODULE_FILE location"
      ac1f311 directfb: use Yocto source mirrors for SRC_URI
      4d80f7a gcc-configure-common.inc: drop --enable-target-optspace from configure
      654eddc machine/include: drop tune-cortexm*.inc and tune-cortexr4.inc
      322015a liboil: drop recipe from oe-core
      41d50f9 boost: Fix build on soft-float ABI arm systems
      07a91a6 libnss-mdns: Check for nss.h before using
      1b34f55 db: Use cross libtool
      64089c6 libtool-cross: Unset pre|post dep objects
      457f417 docbook-xsl-stylesheets: create a link for easy refer
      1ba62f9 pth: Remove dead code
      a4a5d1f bitbake: cooker, bitbake-worker: Fix spelling of "received"
      8f6b9c7 bitbake: cooker: Only start as many parse threads as we need
      602da7c bitbake: knotty: Don't show errors for universe provider issues
      1dd2d76 linux-yocto: Adds new genericx86 and genericx86-64 SRCREVs for kernel 4.4
      b8fa9d3 poky: Add poky-world-exclude.inc and add qwt-as
      5503a22 sstate: Revert using -m option to tar in sstate
      6023798 libarchive-native: Disable libxml2 support
      b09b054 pcmciautils: Fix makefile race
      89df5f1 binutils: Use target provided zlib
      c85c54f binutils: Upgrade to 2.26
      ba2fdcd native.bbclass: Set CXXFLAGS from BUILD_CXXFLAGS not BUILD_CFLAGS
      2394b15 gstreamer1.0-plugins-base: Add video crop supporting when convert frame
      2724908 gstreamer1.0-plugins-bad: Fix memory leak of navigation thread
      db81fc9 lib/oe/package_manager: remove package feed lists
      c43da12 externalsrc: use shared CONFIGURESTAMPFILE if B=S
      c6b8227 Make sure that the directory for CONFIGURESTAMPFILE exists
      ca06179 autotools.bbclass: use oe_runmake instead of ${MAKE}
      f4f9f2f gcc, qemuppc: Explicitly disable forcing SPE flags
      691f7e4 pango.inc: misc dependency fixes
      70efb8d pango.inc: limit ptest specific do_compile_prepend to target builds
      c1273d4 systemtap_git.inc: do not immediate expand SELECTED_OPTIMIZATION
      e631be2 glibc.inc: do not immediate expand SELECTED_OPTIMIZATION
      770d9ff mkelfimage: fix target cflags leaks to host
      c936bf0 base: Move COMPATIBLE_MACHINE out the scope of SOURCE_MIRROR_FETCH
      3072361 bitbake: bitbake: BBUIHelper: Remove function findServerDetails
      28c041c bitbake: fetch2: Simplify logic in verify_checksum()
      5375e64 bitbake: bitbake: Set process names to be meaninful
      5b234d1 bitbake: utils: Add ability to change the process name
      0b06924 bitbake: data.py: avoid double newlines at the end of functions in emit_var()
      68600ae bitbake: build.py: minor shell_trap_code() formatting tweaks
      423a264 conf/distro/poky.conf: use example.com for connectivity check
      6c058ce curl: update 7.46.0 -> 7.47.0 ( CVE-2016-0754 CVE-2016-0755 )
      adbe63d openssl: update 1.0.2e -> 1.0.2f ( CVE-2016-0701 CVE-2015-3197 )
      85b6679 autotools.bbclass: don't create subshell to delete configure scripts
      2f1bcc1 sstate: Add back packagedata on packagedata dependencies
      346b225 libical: update to 2.0.0
      b696bb3 kexec: package kdump init script/configuration file correctly
      51cebbf connman: fix crash with iptables 1.6
      7f54fab autotools_stage.bbclass: remove it
      07c4bc1 gdb-common.inc: add PACKAGECONFIG for readline
      5869e35 tzdata: update to 2016a
      c9cc707 tzcode: update to 2016a
      aff2f58 glibc-testing.inc: drop pruning of PATCH_GET from the testglibc script
      dfb9d41 gcc-cross.inc: drop pruning of PATCH_GET from the testgcc script
      9e7d929 bitbake.conf: stop exporting PATCH_GET = "0"
      5410aff sstate: Improve handling of useradd dependencies
      9823802 gtk-icon-utils-native: Drop problematic dependency
      6c04e0d glib.inc: limit ARM_INSTRUCTION_SET over-rides to armv4/armv5
      83476b5 glib-2.0: drop add-march-i486-into-CFLAGS-automatically.patch
      fab76ae glib-2.0: refresh configure-libtool.patch
      593dcd4 systemd: fix systemctl enable script for template units
      3c90507 glib: use bash-completion.bbclass
      d88ed5d kmod: use bash-completion.bbclass
      0f3780c git: use bash-completion.bbclass
      9d20661 util-linux: use bash-completion.bbclass
      0e5b0bf dbus-glib: use bash-completion.bbclass
      9cddc0a bash-completion.bbclass: add class
      ddb786c bash-completion: move in recipe from meta-oe
      74e2f68 ffmpeg: add a recipe, and remove the libav recipe
      eb7e554 lib/oe/patch: Make GitApplyTree._applypatch() support read-only .git/hooks
      3ed566e gcc: fix hidden weak symbols by removing buggy gcc patch
      51d9ba6 dpkg: fix CVE-2015-0860
      f80d16e qemu.bbclass: clarify QEMU_EXTRAOPTIONS
      3dca294 pango.inc: drop obsolete dependency on qemu-native
      a16e9a2f dbus: upgrade to 1.10.6
      7081458 buildhistory: fix the check for existence of a git repo
      d74325e connman: tidy up connman-conf usage
      79f4495 connman-conf: convert to systemd oneshot
      5c35883 bitbake-whatchanged: avoid double do_ task name prefix
      7881c02 netbase: add ipv6 host to /etc/hosts
      93fcee6 linux-yocto/4.4: CVEs and preempt-rt update
      07c182f linux-yocto/4.1: update to 4.1.16
      7003698 gstreamer1.0-plugins-bad: fix compiler warnings with -Os in 1.7.1
      6e90145 gstreamer1.0-plugins-good: fix compiler warnings with -Os in 1.7.1
      3cd70c8 libsoup-2.4: add glib-2.0-native dependency
      d5b3b97 libtirpc: remove stray .orig file from Use-netbsd-queue.h.patch
      209066c ptest-runner: Add ptest-runner_2.0 recipe.
      4953e26 musl: Upgrade to tip of tree
      52413d0 libdrm: Refresh patch to match upstream submission
      66e215f fts: Correct LIC_FILES_CHKSUM
      be4c446 pth: Delete
      df95988 elfutils: Fix build with uclibc/musl
      047ad2c grub: Backport fix for largefile detection/use
      956be0c oeqa/runtime/rpm: be more verbose if test_rpm_query_nonroot fails
      3b5288f libc-package.bbclass: add LOCALE_UTF8_IS_DEFAULT
      4f3ef90 ref-manual: Updated the BBMASK variable description.
      b2b7214 dev-manual: Restored ptest-runner2 to ptest-runner
      d484e58 ref-manual: Removed obsolete do_deploy statement from "Shared State"
      7705b87 toaster-manual: Updated instructions for production setup.
      4b4a8a6 ref-manual: Updated the SDK figure.
      d7481ce ref-manual: Added do_image and do_image_complete tasks
      d39e9d1 ref-manual: Rewrite of "Image Generation" and devtool text.
      1e7735e ref-manual, mega-manual: Updated the Image Creation figure
      fded4fa ref-manual: Updated configuration of auto.conf in closer look
      9f192c8 dev-manual: Updated the devtool help examples.
      4bbd39d dev-manual: Grammar fix to kickstart section.
      75078dd dev-manual: Updated wic reference section
      9ed7881 poky-ent: Grouped Fedora perl packages for niceness
      3ac0416 local.conf.sample.extended: Update the info about BBMASK
      d61d290 bitbake: bitbake-user-manual-ref-variables: Update the help for BBMASK
      a948f52 bitbake: cooker: Allow BBMASK to contain multiple regular expressions
      e82101a bitbake: bitbake-user-manual-metadata: Updated 'dir' flag
      100d6c2 bitbake: bitbake-user-manual: Updated the example BitBake directory
      11be341 documentation.conf: Update the help for BBMASK
      3d2c0f5 cmake: update to 3.4.2
      4364850 at-spi2-core: update to 2.18.3
      c763940 webkitgtk: update to 2.10.5
      1e95815 libsecret: update to 0.18.4
      9259a43 freetype: update to 2.6.2
      5ec6dbb gdk-pixbuf: update to 2.32.3
      9c84fbc glib-2.0: update to 2.46.2
      bd7278c gtk+3: update to 3.18.6
      d609cd5 gtk+: update to 2.24.29
      6197313 gtk-icon-utils-native: update to 3.18.6
      1556f0e libsoup-2.4: update to 2.52.2
      dff038a waffle: update to 1.5.2
      89bd19f vala: update to 0.30.0
      6c02099 rxvt-unicode: update to 9.22
      245af2b btrfs-tools: Disable backtrace on musl
      fa01d37 bsd-headers: Fix LICENCE and dev package RDEPENDS
      05e11a5 gdb: Fix build failures on musl
      72c1aa2 ltp: Add rdep on ldd
      1d0332d argp-standalone: Fix build when S != B
      9f22898 bitbake: fetch2/wget: fallback to GET if HEAD is rejected in checkstatus()
      d11cc29 busybox: fix stop -vs- start typo in rcS script
      9f4b088 mtools: keep v3.9.9 recipe in sync with the v4.0.18 version
      2c14be3 gen-lockedsig-cache: fix bad destination path joining
      9dea876 distutils-common-base: do not set PACKAGES - use defaults from bitbake.conf
      4ead707 insane: remove unused variable assignment
      44e9c3b meta: fix capitalisation in Upstream-Status
      06b4572 pixman: only check even upstream versions
      0f74387 gcr: check only even upstream versions
      a2848ee avahi: Add patch to fix Win10 mDNS issues
      04ef34f xf86-input-libinput: initial add 0.16.0
      8a2dfa1 image.bbclass: check INITRAMFS_MAXSIZE
      962cc37 systemd: make TEST_DIR configurable
      9967746 bind: update to 9.10.3-P3
      cac47db uninative: handle UNINATIVE_URL being file:///
      9995814 uninative: fix path to patchelf-uninative
      2495dfa scripts/wipe-sysroot: also delete uninative sysroot
      bb97157 meta/lib: new module for handling GPG signing
      aadb879 devtool: extract: use the correct datastore for builddir
      fa801e7 busybox: backport upstream truncate open mode fix
      6996b26 gstreamer1.0-plugins-base.inc: drop obsolete dependency on liboil
      1c4a8cc e2fsprogs: disable blkid
      0de8766 pango.inc: drop obsolete FULL_OPTIMIZATION over-ride
      89a7ed5 devtool: add configure-help subcommand
      84720c8 devtool: properly handle bb.build.FuncFailed when extracting source
      c3f0f7b devtool: add: warn if modified recipe found in attic directory
      e559b66 devtool: build-image: allow specifying packages to add to image
      e00eac8 devtool: move edit-recipe to a separate module
      6720bda image: Don't create tasks with '.' in the name
      88ca227 rootfs-postcommands: fix allow-empty-password on read-only rootfs
      fdac363 kernel: Clean DEPLOYDIR before do_deploy runs
      c2231de gcc-cross-canadian: Add missing DEPENDS on virtual/${HOST_PREFIX}gcc-crosssdk
      5fdedb6 libtirpc: Drop unneeded xz-native dependency
      7a98fb7 libuser: Drop unneeded xz-native dependency
      72f98ba bitbake: toaster: Update UI test runner
      c192bd6 Revert "xz: Allow to work with ASSUME_PROVIDED xz-native"
      6df607b acpid: upgrade to 2.0.26
      7a52f67 build-perf-test.sh: add eSDK testing
      5c367ec build-perf-test.sh: more generic timing function
      44fee2b python3-pip: Upgrade to 8.0.0
      9d95a9d orc: update HOMEPAGE
      0c1c93e gstreamer1.0-plugins.inc: drop obsolete ${S}/po/Makefile.in.in workaround
      be145ad busybox: Add support for busybox-init
      716fa93 pulseaudio.inc: drop obsolete dependency on liboil
      55bfaa2 sqlite3: update 3.10.0 -> 3.10.2
      6bb1dd1 sqlite3.inc: add PACKAGECONFIG to support building against libedit
      39f6a9e sqlite3.inc: dynamically link the sqlite3 command-line utility
      9b2835e sqlite: formatting improvements, move more stuff into sqlite3.inc
      89ed462 sqlite3.inc: drop obsolete config_BUILD_CC, etc exports
      6188419 sqlite3.inc: fix readline PACKAGECONFIG
      939de8d sqlite3: fix the parallel build fix patch
      a304b82 weston: Add missing DEPENDS on wayland-native
      4a5458f bitbake: fetch2: Don't show checksum warnings if a single checksum was supplied
      e66599f uninative: Fix conflicts with normal sysroot
      4833bee insane: Drop do_stage test
      861c916 populate_sdk: Use pixz instead of xz
      a1c35f3 lib/oe/sdk: Partially revert "sdk.py: fix conflicts of packages"
      29c5eda uninative: Add fetch capability
      b54fa25 pixz: Add 1.0.6
      d47572d xz: Allow to work with ASSUME_PROVIDED xz-native
      0aeb33f lib/oe/package_manager: prevent testing an undefined variable
      c1f4e92 recipetool: create: better fix for fetch error handling
      10c8d14 recipetool: create: fix extraction of name from URLs ending in /
      b307e0a recipetool: create: extract SRC_URI from local git repositories
      50e40fc devtool / recipetool: support specifying a subdirectory within the fetched source
      7e1691d recipetool: create: strip quotes from values extracted from CMakeLists.txt
      477fa84 gen-lockedsig-cache: copy correct native sstate into ext SDK
      204e4ab toolchain-shar-extract.sh: improve behaviour when xz is not installed
      979c8fb classes/populate_sdk*: add dependencies on script files
      f220abc classes/populate_sdk_ext: drop ext-sdk-prepare.py when installing
      b435225 devtool: add sdk-install subcommand
      44d1a2a devtool: sdk-update: improve SDK update process robustness
      3360baa devtool: sdk-update: improve temp directory handling
      d193531 devtool: build: ensure pkgdata is written out
      d3a4f72 classes/populate_sdk_ext: add option to bring in pkgdata for world
      a9dfced linux-libc-headers: Port patches for linux-headers for musl
      3cffa6d libsolv: Update to 0.6.17+
      d9134cf glib-2.0: Fix locale location on musl
      527cd95 syslinux: Set LD to avoid using build host ld
      136db70 binutils: Fix gold linking errors due to unresolved R_ARM_MOVW_ABS_NC
      704e342 puzzles: Silence warning on arm with clang
      bee65f9 eglinfo: Fix build on raspberrypi
      6296c0f mdadm: Fix build with musl
      67eef11 gpgme: Define __error_t_defined on musl
      368e838 console-tools: Fix header inclusion when not using glibc
      5a8c935 uclibc: Update to 1.0.11
      1113d58 unfs3: Depend on libtirpc when building on musl
      2ecfc02 guile: Fix build with musl
      2df08b8 bsd-headers: Package cdefs.h
      29deaf0 musl: Create ld.so as a relative symlink
      2d028b3 fts: Fix linker hash-style option
      8dd1aa8 dosfstools: Correct cross-compile CFLAGS and fix build with musl
      21550d1 nss: Undefine HAVE_SYS_CDEFS_H
      92e6a7a apmd: Fix build with musl
      5d661c5 pcmciautils: Fix parallel build and include sys/types.h
      86795ff kexec-tools: Define _GNU_SOURCE for getting loff_t definition
      ff8006f systemd: Skip parsing on musl based targets
      f2856a1 oprofile: fix build with musl
      226c450 portmap: Point to tirpc headers and libraries on musl
      5512c2f nfs-utils: Disable tcp-wrappers for musl
      06d0204 bsd-headers,musl: Add recipe for bsd missing features
      c2c9202 tcf-agent: Implement canonicalize_file_name() for musl as well
      f294813 chkconfig: Avoid using caddr_t
      b2aca09 nspr: Drop older glibc code
      c0976fc irda-utils: Fix header inclusions
      a3f9721 iproute2: Fix build with musl
      22333f0 libuser: Fix build when secure getenv is not there
      ea9dc99 iputils: Use member based initialization for mrghdr struct
      b207868 pax: Fix build with musl
      1076499 tar: Fix build for musl based targets
      e451023 rt-tests: Fix build with non-gcc compilers
      68da390 webkitgtk: Fix build with clang/musl
      da81635 console-tools: Include sys/types.h for u_char and u_short defs
      205a07a sysklogd: untangle header inclusion maze
      9f40dba babeltrace: Add missing header for MAXNAMLEN define
      2458850 libunwind: backtrace APIs are glibc specific
      abdfacb apt: Add support for building for musl targets
      ec187d3 puzzles: Zero'ise structs before use
      3cd0a8c dpkg: Add musleabi to known architectures
      aaa8516 xinetd: Fix build with musl
      93fb408 watchdog: Fix build with musl
      7509ffd gzip: Fix build with musl
      1d28cbc directfb: Fix build with musl
      7b6b312 net-tools: Link with libintl on uclibc
      ee1bfdb parted: Fix build with uclibc
      ed5da2a mtools: Fix build with uclibc
      5384f08 gnutls: Link with libuargp on uclibc
      493e557 guile: Fix build with uclibc
      1636f6f packagegroup-self-hosted.bb: Move glibc-gconv-ibm850 to glibc only case
      3e7d7ab util-linux: Fix ptest builds on musl
      77825f8 gnutls: Link with libargp on musl and depend on argp-standalone
      1a6fe71 argp-standalone: Add recipe
      a7d780c gdk-pixbuf: Fix latent build issue exposed by musl
      f2cf5d3 xserver-xorg: Fix build with musl
      b8de631 libcgroup: Add dependency on fts when building on musl
      87c3e98 connman: include config.h for HAVE_STRUCT_IN6_PKTINFO_IPI6_ADDR
      cc55fc7 fts: Add recipe
      6e3950b tcp-wrappers: Fix build with musl
      68f88a5 ppp: Fix build with musl
      4972edd blktrace: Include <sys/types.h for dev_t
      d629fa1 powertop: Include right headers for timval struct
      063dc38 update-alternatives: when warning about alt_link==alt_target, say what PN
      6baafa1 python-setuptools: Unify and upgrade python-setuptools and python3-setuptools to 19.4
      f0e500e gstreamer1.0-libav: update git recipe to 1.7.1
      90cbdfb gstreamer1.0-plugins-ugly: update git recipe to 1.7.1
      6752484 gstreamer1.0-plugins-bad: update git recipe to 1.7.1
      ad8f201 gstreamer1.0-plugins-good: update git recipe to 1.7.1
      2ca9f20 gstreamer1.0-plugins-base: update git recipe to 1.7.1
      3c7f2b8 gstreamer1.0: update git recipe to 1.7.1
      7c810d0 gstreamer1.0-libav: update 1.6.2 -> 1.6.3
      a4b8e9a gstreamer1.0-plugins-ugly: update 1.6.2 -> 1.6.3
      8170e06 gstreamer1.0-plugins-bad: update 1.6.2 -> 1.6.3
      497ebc9 gstreamer1.0-plugins-good: update 1.6.2 -> 1.6.3
      3d87902 gstreamer1.0-plugins-base: update 1.6.2 -> 1.6.3
      1e256ee gstreamer1.0: update 1.6.2 -> 1.6.3
      dacf2aa gst-plugins-package.inc: drop perl RDEPEND for XXX-apps packages
      676275f gstreamer1.0-plugins.inc: don't set base SRC_URI via python
      852f098 gstreamer1.0-plugins.inc: drop obsolete lib-link.m4 workaround
      a32ac26 gstreamer1.0-plugins-bad.inc: update hls dependency gnutls -> nettle
      97e0752 gstreamer1.0-plugins-bad.inc: don't set ${S} or apply version specific patch
      78e9361 gstreamer1.0-plugins-good.inc: remove duplicate --disable-examples
      0edabfd gstreamer1.0-plugins.inc: convert GSTREAMER_1_0_DEBUG to a PACKAGECONFIG
      81cd227 gstreamer1.0-plugins.inc: add missing glib-2.0-native dependency
      a0b1e66 gstreamer1.0.inc: add missing glib-2.0-native dependency
      e5fb79d gstreamer1.0-rtsp-server.inc: minor formatting improvements
      434aa8e gstreamer1.0-omx: minor formatting improvements + update HOMEPAGE
      69bcd33 gstreamer1.0-libav: minor formatting improvements + update HOMEPAGE
      1d6e61a gstreamer1.0-plugins-ugly: minor formatting improvements
      c45ce26 gstreamer1.0-plugins-bad: minor formatting improvements
      c1ea981 gstreamer1.0-plugins-good: minor formatting improvements
      beb8091 gstreamer1.0-plugins-base: minor formatting improvements
      61f30b4 gstreamer1.0-plugins.inc: minor formatting improvements
      981145a gstreamer1.0: minor formatting improvements
      9f1a943 gst-plugins-package.inc: minor formatting improvements
      9e08b69 gst-player: minor formatting improvements
      a8ed2c8 valgrind: remove unused valgrind-remove-rpath.patch
      e24123d emptytest: exclude from world builds
      6808035 build-appliance-image: bump version to 14.0.0
      eb418c3 insane.bbclass: fix package_qa_walk()
      e185004 insane.bbclass: print all the QA messages
      95fa36e weston: upgrade 1.8.0 -> 1.9.0
      1bc0c89 wayland: upgrade 1.8.1 -> 1.9.0
      03dae8e glib-2.0: fix the ptest
      68c5e6d insane.bbclass:buildpaths: ignore ipkg/dpkg's CONTROL dir
      258676b sstate: display the sysroot name when cleaning for clarity
      f35b2e2 bitbake: set default libexecdir to $prefix/libexec
      40f0c2d gawk: fix libexecdir/libdir/BPN confusion
      2458f41 mesa: update SRC_URI
      fdb12f9 e2fsprogs: set PV to 1.42.99+1.43+git${SRCPV}
      9cf1ec0 valgrind: avoid neon for targets which don't support it
      b191f58 valgrind: re-enable ARM intdiv and vcvt_fixed_float_VFP tests
      b0b3412 valgrind: let valgrind determine its own optimisation flags
      92abb5f meta/files/toolchain-shar-relocate.sh: Detect different python binaries and select one that exists.
      924e2c3 python-nose: upgrade to 1.3.7
      02440b5 python-native: Make python-native also RPROVIDE python-unittest-native
      b7ca05d linux-libc-headers: update to 4.4
      f73ee59 libpng12: upgrade to 1.2.56
      3a59486 libpng: upgrade to 1.6.21
      63a49f8 libtirpc: remove redundant va_list patch
      55a8df2 perl: Upgrade to 5.22.1
      a840588 oeqa/selftest/signing: use temporary rpmdb
      65c1de9 kexec-tools: inherit update-rc.d
      ba837f1 autotools: don't output the full config.log on configure failure
      3e3cb62 bitbake.conf: Remove horrible variable expansion hacks
      b963efb mesa: add missing wayland-native build dependency
      9dd6c81 maintainers.inc: Correct maintainership for several packages
      bd1a534 bitbake: toaster: run bitbake server with --read option
      76a281c bitbake: taskdata: add the ability to access world targets list
      11a1f49 bitbake: cache.py: check existence before add to cachedata.rproviders
      05c1775 bitbake: taskdata.py: add RuntimeProviders to close matches
      cf9cb65 bitbake: data_smart: Don't show exceptions for EOL literals
      b80219e udev: Add 2 patches to support 4.4 kernel
      1013385 gcc-runtime.inc: provide libquadmath
      60b237f kexec: update supported architecture list
      92a0032 strace: update 4.10 -> 4.11
      0aa8169 strace: fix ARCH definition in tests/Makefile
      2408149 strace: remove need for git-version-gen script
      9ca6a5f strace: fix --disable-aio configure option
      dd90f32 strace: drop unnecessary dependency on acl
      aadae7b libnewt: Fix linking error due missing symbols
      571289d lib/oe/package_manager.py: Remove list() from PkgsList class
      6ebda8e lib/oe/rootfs: Use list_pkgs() instead of list()
      03075f6 lib/oe/utils: Add function format_pkg_list()
      c708411 lib/oe/package_manager: Add list_pkgs() to PkgsList class
      113e136 python3: Minor upgrade 3.5.0 -> 3.5.1
      918149d python-numpy: upgrade to 1.10.4
      eae7584 swig: upgrade to 3.0.8
      21f7677 python-scons: upgrade to 2.4.1
      7721652 python-pycurl: upgrade to 7.21.5
      2ef401f python-mako: upgrade to 1.0.3
      2a608cc python-setuptools: Upgrade to 19.2
      6395bc8 python3-setuptools: upgrade to 19.2
      40738af python: Upgrade 2.7.9 > 2.7.11
      35855a0 wic: pylinted ksparser module
      e3b3bcf wic: add help for 'include' command
      bfaabe5 wic: move parts of canned .wks into common.wks.inc
      50a3dc5 wic: implement search of includes
      15ea180 wic: refactor get_boot_config
      d304162 wic: ksparser: add support for include
      3fc6aaa wic: do not remove build dir in source plugins
      8d34eea wic: use unique partition number
      43b4058 wic: move wks parsing code to KickStart._parse
      3860640 nss: update to 3.21
      ea39ad0 libjpeg-turbo: fix upstream version check (sort of)
      48a8a89 libical: fix upstream version check
      c6f71c5 gnutls: update to 3.4.8
      7a80f84 sysstat: fix upstream version check
      2aabf9a pbzip2: update to 1.1.13
      77aee28 ncurses: fix upstream version check
      56e4ff6 libsolv: fix upstream version check
      d46bc77 e2fsprogs: fix upstream version check
      0436e3f build-appliance-image: bump version to 14.0
      a206a19 btrfs-tools: update to 4.4
      a1790bc bootchart2: update to 0.14.8
      68c7113 poky.conf: Delete BB_SIGNATURE_HANDLER settings
      0916235 rpm: remove bashisms: [ x == x ] -> [ x = x ]
      2dbd61f uclibc: remove a use of immediate expansion and oe_filter_out ()
      32eeb00 gcc-runtime: switch to removal override syntax to modify CXXFLAGS
      c886a78 bitbake: tests/codeparser.py: Add filename/lineno flags to test variable
      f130033 bitbake: toaster: write variables to toaster.conf
      1835768 sstate: replace verbose manifest removal with a single count
      d4c721a libdrm: Upgrade 2.4.65 -> 2.4.66
      b5508a8 slang: Add dependency on ncurses
      27b2df2 valgrind: make it explicit that valgrind supports armv7a and above
      5dc38a3 sign_rpm.bbclass: fix task dependencies
      27c39c4 opkg-utils: store alternatives in nonarch_libdir
      77fde15 security_flags.inc: remove obsolete workarounds for curl
      31ce027 cups: update systemd support
      a4b48c2 coreutils: Add xattr PACKAGECONFIG
      7a0b1c1 oeqa/runtime/parselogs: use -F to search fixed strings for grep
      b8e11e2 libinput: Upgrade 0.21.0 -> 1.1.4
      a9f2e87 postinst-intercepts: always use set -e
      de0848f maintainers: mark Khem as nominal owner for uclibc
      3235f5e formfactor: remove unused beagleboard configuration
      6c64700 alsa-state: remove beagleboard configuration
      f0d47a6 bitbake: Revert "runqueue.py: Ensure one setscene function doesn't mask out another which needs to run"
      9e867ef sstate: Add packagedata to list of tasks not to recurse
      5e881c1 classes/populate_sdk_ext: fix task dependency regression
      2e9f092 image: Handle image types containing '-' correctly
      0612ca4 oe-selftest: devtool: fix test_devtool_add_library if python was built first
      c1492c4 recipetool: create: add a couple more license checksums
      2c8c9fe recipetool: create: add basic support for extracting dependencies from cmake
      3eb397f recipetool: create: force GL libraries to virtual/*
      726dbda recipetool: create: move dependency mapping code to RecipeHandler
      788e4bb recipetool: create: fix overzealous mapping of git URLs
      ece0a2e recipetool: create: support additional autoconf macros from autoconf-archive
      903d471 recipetool: create: detect flex/bison dependency
      a66f4ac recipetool: create: pick up boost macros in configure.ac
      dbe91a3 recipetool: create: improve extraction of pkg-config / lib deps
      e7bedb9 wic: rename kickstarter.py -> ksparser.py
      3bb6ea6 wic: override ArgumentParser.error
      d652203 wic: removed unused imports
      d2090a6 wic: improve processing of parseing errors
      1ed97cc wic: catch KickStartError
      bda77fd wic: add custom exception KickStartError
      ef211a5 bootimg/image-vm/image-live: Improve image dependencies
      0910bc6 image: Always run do_rootfs_wicenv
      12e37e7 selftest/buildhistory: Improve test to remove sources of error
      05716dd bootimg/image: Enhance bootimg to respect RM_OLD_IMAGE
      1c869a9 rootfs-postcommands: Ensure license manifests respect RM_OLD_IMAGE
      d27491b image: Ensure we don't expand TMPDIR in image commands
      ce8a206 image: Fix instability of do_image_* checksums
      fb1654f image: Fix wic environment issues
      1da8f52 insane: Start to clean up do_configure_qa code
      dd28695 insane: Clean up horrible return value processing code
      839fb18 e2fsprogs: fix PV
      b1236dc e2fsprogs: add PACKAGECONFIG for fuse
      f98e11c bitbake: toastergui: make artifact download more robust
      68f3e1e bitbake: toasterui: log OSErrorException metadata events
      fb94754 bitbake: toasterui: listen for bb.event.MetadataEvent
      a2f23fa openssh: CVE-2016-1907
      320a319 license.bbclass: fix license manifest
      4339a82 wic/help.py: document requirements for valid fstab generation
      d688df8 glib-2.0: add dependency glib-2.0-native back
      76e35f1 kernel-yocto.bbclass: move do_kernel_link_vmlinux() into kernel.bbclass
      d453fa1 kernel-yocto.bbclass: remove do_kernel_link_vmlinux from SRCTREECOVEREDTASKS
      2b92f88 libarchive: Add bsdtar and bsdcpio packages
      e246905 toaster.bbclass: Separate artifact dump from image file dump
      4f481bc pax-utils: 1.0.5 -> 1.1.4
      f9974f2 sqlite3: upgrade to version 3.10.0
      cd7910d connman: upgrade to 1.31
      b9169b7 python3: add missing dependency on PN-misc to PN-modules
      4b4dea7 useradd-staticids.bbclass: Remove unnecessary spaces
      4f2c352 useradd-staticids.bbclass: Read passwd/group files before parsing
      4cbdb15 useradd-staticids.bbclass: Simplify the logic for when to add groups
      b18e40c useradd-staticids.bbclass: Simplify some logic
      b689aa0 useradd-staticids.bbclass: Make --no-user-group have effect
      c03ea8d useradd-staticids.bbclass: Treat mutually exclusive options as such
      af8b005 wic: get rid of 2 getters
      2573e28 wic: get rid of set_size and set_source_file setters
      5cd222b wic: get rid of get_rootfs and set_rootfs
      4d5d5dd wic: get rid of get_timeout getter
      26fb2a1 wic: adjust code for new data structure
      c827238 wic: remove pykickstart code
      c15ea82 wic: use new kickstart parser
      f572f44 wic: add kickstart parser module
      e5e1905 wic: add partition module
      180f170 alsa-lib: 1.0.29 -> 1.1.0
      a8c25af matchbox-keyboard: export GTK_IM_MODULE_FILE location
      d75cb1f xf86-input-evdev: upgrade to 2.10.1
      2283732 menu-cache: upgrade to 1.0.1
      ec7e406 libxi: upgrade to 1.7.6
      86f3f25 librsvg: upgrade to 2.40.13
      72dd806 libgpg-error: upgrade to 1.21
      3c02fe0 libevdev: upgrade to 1.4.6
      33e9930 libcroco: upgrade to 0.6.11
      5b63c44 gsettings-desktop-schemas: upgrade to 3.19.3
      dfff167 gpgme: upgrade to 1.6.0
      5abb691 u-boot: Update to 2016.01 release
      e9280d1 linux-yocto: introduce v4.4 standard/preempt-rt/standard kernel
      8c3276e e2fsprogs: 1.42.9 -> 1.43 (master)
      b248e55 bitbake.conf: rename python-native-runtime
      65d0bfc net-tools_1.60-26.bb: Fix do_patch dependency error
      99923fc ncurses: 5.9 0 -> 6.0
      44d283a autotools.bbclass: use relative path to run configure script
      b2f1de3 glibc-initial.inc: use relative path to run configure
      0fe6e2d bitbake: toaster: increase timeout
      a5f34bc poky.ent: Added "perl-bignum" package for Fedora
      afc6cba dev-manual: Updated "Running ptset" section
      ec047ad yocto-project-qs: Updated the "Next Steps" section
      57ddbe8 ref-manual: Removed all variables related to "QMAKE"
      7814b33 ref-manual: Updates to cull out qt4 stuff.
      bf81969 toaster-manual: Updates on how to start Toaster.
      798e8b8 bitbake: toastergui: code formatting and clean-up
      c4b5011 bitbake: toaster tests: fix Django tests for new ToasterTable pages
      88a262c bitbake: toastergui: remove unused views and template code
      059a274 bitbake: toastergui: fix error and warning counts for builds
      4103e0c bitbake: toastergui: make "Apply" button state depend on filter range
      6c2d88f bitbake: toastergui: mute label for filter actions with no records
      f08730a bitbake: toastergui: set default visible and hideable columns
      112f374 bitbake: toastergui: serialise decimals correctly
      e024aab bitbake: toastergui: streamline construction of filter objects
      fcb20f9 bitbake: toastergui: ensure filter_value updates
      f9c46f5 bitbake: toastergui: don't hide all elements with .col class
      eaae82a bitbake: toastergui: convert project builds page to ToasterTable
      33b011c bitbake: toastergui: implement "today" and "yesterday" filters
      f8d383d bitbake: toastergui: implement date range filters for builds
      b929889 bitbake: toastergui: show recent builds on all builds page
      1a4b203 bitbake: toastergui: switch off filter highlights when inactive
      809046c bitbake: toastergui: refactor ToasterTable filtering
      294579b bitbake: toastergui: convert all builds page to ToasterTable
      6c12ca7 bitbake: toastergui: use event delegates for hover help elements
      ef93dce bitbake: toastergui: switch projects/ view to ToasterTable
      417f1d3 bitbake: toaster: check inferred file suffixes against list of known types
      c02ee05 bitbake: toaster: move image file suffix list to model
      d29e4cd bitbake: toastergui: use ToasterTable for projects page
      b1256db openssh: update to 7.1p2
      c0e9f2d kernel/kernel-arch: Explicitly mapping between i386/x86_64 and x86 for kernel ARCH
      f8508de bitbake: Revert "fetch/git: Change to use clearer ssh url syntax for broken servers"
      b567235 image/image-live: Add back IMAGE_TYPES_MASKED support
      e914e2a image.bbclass: Handle image base type dependency properly
      ad32f65 autoconf: add missing perl-module-file-find to RDEPENDS
      d83dfe6 ca-certificates: update to 20160104
      4440560 epiphany: upgrade to 3.18.3
      dcf54b4 iso-codes: upgrade to 3.64
      d7bee35 lighttpd: upgrade to 1.4.39
      08c8923 libwebp: upgrade to 0.5.0
      cf0aea7 classes/populate_sdk_ext: avoid unnecessary sstate being brought in
      ea29bec insane/package: Fix cases where QA errors aren't fatal
      2e620a4 classes/populate_sdk_ext: check that extensible SDK prepared correctly
      4685c33 classes/buildhistory: save auto.conf and bblayers.conf for extensible SDK
      39f6472 classes/populate_sdk_ext: support auto.conf
      91877aa classes/populate_sdk_ext.bbclass: handle if local.conf doesn't end with a newline
      764c927 util-linux: create util-linux-runuser iff pam in DISTRO_FEATURES
      95dce70 rsync: 3.1.1 -> 3.1.2
      38aa0fc less: 479 -> 481
      4cb2269 iputils: s20121221 -> s20151218
      fe47dd7 wget: 1.17 -> 1.17.1
      79886e9 git: 2.5.0 -> 2.7.0
      d3e16b8 file: 5.24 -> 5.25
      3549abc autogen-native: 5.18.5 -> 5.18.6
      fb14627 curl: upgrade to 7.46
      eaf88d7 xz: upgrade to 5.2.2
      8516ff7 sysstat: upgrade to 11.2.0
      ae73be1 at: upgrade to 3.18
      21efab7 kmod: upgrade to 22
      c88efae resolvconf: upgrade to 1.78
      6729889 pciutils: upgrade to 3.4.1
      edd319c gnupg: 2.1.7 -> 2.1.10
      78b58b8 help2man-native: 1.47.1 -> 1.47.3
      ac0e0d5 man-pages: 4.02 -> 4.04
      1e0cbb9 libgcrypt: 1.6.3 -> 1.6.4
      372c23d xmlto: 0.0.26 -> 0.0.28
      aaafe33 elfutils: 0.163 -> 0.164
      38901a7 dhcp: 4.3.2 -> 4.3.3
      ea05e05 image.bbclass: Unconditional includes of populate_sdk_ext fails
      c08f272 tcmode-default.inc: Fix preferred provider nativesdk-sdk_prefix-libc-initial
      5d2f783 dhcp: search libxml2 for bind
      b69652d tzdata: remove bashism
      7c7c249 harfbuzz: update 1.1.2 -> 1.1.3
      84623dc libpostproc: duplicate armv7a over-rides for armv7ve
      1744198 libav.inc: duplicate armv7a over-rides for armv7ve
      102dfa1 gcc-configure-common.inc: duplicate armv7a over-ride for armv7ve
      b08dfb5 subversion: Upgrade 1.9.2 -> 1.9.3
      d6fae0c lttng-ust: Upgrade to 2.7.1
      a9cc9b5 lttng-tools: Upgrade to 2.7.1
      6b02575 lttng-modules: Upgrade to 2.7.1
      a378430 gdb: upgrade to 7.10.1
      92cc02f linux-yocto: Update Genericx86* BSPs to 4.1.15
      da43a56 bitbake: Revert "fetch2/local.py: avoid using PREMIRROR"
      96a34e7 conf/distro/poky-tiny: correctly disable python in opkg-utils
      1724ffd bitbake: fetch2/git.py: Add missing "errno" module import.
      74fa824 bitbake: bitbake: clean up stamp-base related codes
      f3f769a local.conf.sample: add qemumips64
      43328fe bitbake: runqueue: Fix setscene task dependencies
      7b905ca bitbake: toaster: settings Add uid to the toaster cache dir
      dff7a27 bitbake: toaster: show 'satisfied via' text for reverse deps
      89f4932 bitbake: toaster: show 'satisfied via' text for build deps
      febb898 bitbake: toaster: show list of provides for the recipe
      2ff4ccb bitbake: buildinfohelper: add provides info to the db
      16a81fb bitbake: toaster: add Provider model
      6a28ed3 bitbake: buildinfohelper: use providermap
      f2b7252 bitbake: cooker: add providermap to dep_tree
      7e380d4 bitbake: taskdata: refactor get_providermap
      46731da bitbake: main/runqueue: Add --setscene-only option to bitbake
      34f8db9 update_font_cache: only scan system font directories
      e5c011b Add "CVE:" tag to current patches in OE-core
      f04fb88 scripts/create-pull-request: fix git request-pull syntax
      928ceb6 qt4: fix-for-mips-n32.patch: remove it
      c4a3258 util-linux: create util-linux-runuser package
      554ca68 valgrind: include aarch64 in COMPATIBLE_HOST
      0ce775a valgrind: update to 3.11.0
      21a94f6 valgrind: don't restrict to armv7a
      b8ebac9 DpkgRootfs: Fix logcheck_error false-positive when use multilib
      e265fbb package_deb.bbclass: add 'Multi-Arch: foreign' tag to allarch packages
      4aeb69d package_manager.py: fixes for multilib deb packaging builds
      9ea7428 package_deb.bbclass, cross-canadian.bbclass: DPKG_ARCH mapping function
      72e6932 connman.inc: add missing RDEPENDS
      675ff42 meta: rename perl-native-runtime
      3f4fb39 dbus: support large-file for stat64
      0d5e41f freetype: enable out-of-tree builds, and use host zlib
      8f2ab19 bluez5: upgrade to 5.37
      11f5a42 cogl-1.0: fix may be used uninitialized error
      235606f oeqa/runtime/logrotate: fix hardcoded root directory
      cce6c3e oeqa/runtime/smart: fix hardcoded root directory
      cd2cf1f boost: update to 1.60.0
      afc0255 bitbake.conf: remove 'stamp-base'
      c8fef7f gcc5: Fix build on NIOS2
      eda3947 rpmresolve.c: Fix unfreed pointers that keep DB opened
      3c8a451 tzdata: Make /etc/timezone optional
      b80da02 systemd: arrange for volatile /etc/resolv.conf
      5548a76 systemd: add myhostname to nsswitch.conf
      d6bc841 opkg-utils: add update-alternatives PACKAGECONFIG
      c3b96ff linux-dtb.inc: use absolute upd-alt paths
      3ad08c0 uclibc: Upgrade to 1.0.10
      74c3667 populate_sdk_ext: Pass excluded_targets as a list to prune_lockedsigs
      e306d54 populate_sdk_ext: Change to include siginfo and non sstate task sigs
      e1a558a populate_sdk: Switch from bzip2 to xz
      3341f3f classes: Fix do_rootfs references
      0a4e1f9 image: Create separate tasks for rootfs construction
      fdced52 image: Move pre/post process commands to bbclass
      cdc0aee image.bbclass: Separate out image generation into a new task, do_image
      0269219 populate_sdk_ext: Use new --setscene-only option to bitbake instead of workarounds
      1ee0842 sstatesig: Handle special case of gcc-source shared-workdir for printdiff
      d93c212 bitbake.conf: add virtual/libiconv-native to ASSUME_PROVIDED
      b2fe2a8 devtool: build: support using BBCLASSEXTENDed names
      38ed039 devtool: reset: support recipes with BBCLASSEXTEND
      532f429 devtool: refactor code for getting local recipe file
      ec90168 devtool: add: support adding a native variant
      99e3872 devtool: reset: do clean for multiple recipes at once with -a
      5ef716c recipetool: create: support creating standalone native/nativesdk recipes
      1e503c0 recipetool: create: lower case name when determining from filename
      4deed25 devtool: sdk-update: add option to skip preparation step
      d586a11 devtool: sdk-update: fix error checking
      c1b7d83 devtool: sdk-update: fix metadata update step
      efead10 devtool: sdk-update: fix not using updateserver config file option
      9348c91 classes/populate_sdk_ext: disable signature warnings
      d44dcd7 classes/populate_sdk_ext: fix cascading from preparation failure
      d11051c scripts/oe-publish-sdk: add missing call to git update-server-info
      fbc2147 libbsd: upgrade to 0.8.1
      221d864 bitbake: fetch/git: Change to use clearer ssh url syntax for broken servers
      46d62d0 bitbake: knotty: Use non-interactive mode as fallback for dumb terminals
      bfa7859 bitbake: cooker: fix findFilesMatchingInDir documentation
      3d42737 bitbake: cooker: use in instead of count
      0e83229 maintainers.inc: remove x11vnc
      d914c7f meta-yocto: drop qt4 references
      0f3ad7c scripts/yocto-layer: Avoids duplication of "meta-" prefix
      220ef32 poky-lsb/poky-tiny: update preferred kernel to 4.1
      b82e228 yocto-bsp: remove 3.14 and 3.19 bbappends
      685daeb conf/local.conf.sample: comment out ASSUME_PROVIDED=libsdl-native
      2c5e7e0 image: Really remove lockfiles flag
      a500e3a boost: ensure boost to remain an empty metapackage
      b151506 image_types.bbclass: Rebuild when WICVARS change
      eb4159c gccmakedep: fix buildpaths qa check
      f54e53c bash: fix buildpaths qa check error
      6d111c8 testimage: remove VNC test, x11vnc isn't in oe-core anymore
      8bec5c5 x11vnc: remove all references to moved package
      8f865e2 x11vnc: move recipe to meta-oe
      ae1fc96 classes/buildhistory: actually use KiB in extensible SDK sizes files
      84f66b5 x11vnc: move recipe to meta-oe
      c44599d readline: move inputrc into readline
      f29d642 tune-*: use mcpu instead of mtune for ARM tunes
      c6a1991 arch-armv7ve: add tune include for armv7ve and use it from cortexa7 and cortexa15
      21d61fa cortexa{7,15,17}: add VFPv4 tunes
      7f2cb68 feature-arm-vfp.inc: Further simplify with TUNE_CCARGS_MFLOAT
      e9b2ffc feature-arm-{neon,vfp}.inc: refactor and fix issues
      45f726c arch-armv7a.inc: add vfpv4 support also to softfp and big endiand tunes
      ebe8358 arch-armv7a.inc: Fix PACKAGE_EXTRA_ARCHS for tune-armv7atb-vfpv3, tune-armv7atb-vfpv3d16, cortexa7thf-neon-vfpv4
      9280a8e arch-armv5.inc: drop duplicate ARMPKGSFX_DSP and PACKAGE_EXTRA_ARCHS_tune-armv5tehf-vfp
      46d6b0e arch-armv[456]*.inc: improve indentation like armv7a
      860663a arm/arch-arm*, tune-cortexa*, tune-thunderx.inc, powerpac/arch-powerpc64.inc: Use normal assignment
      8c483a1 arch-armv7a, tune-cortexa*: improve indentation
      7498b91 arch-armv7a, tune-cortexa*: improve comment VFP -> HF
      bb9b581 arch-armv7a: add missing space before ?=
      15f8344 tune-cortexr4.inc: fix PACKAGE_EXTRA_ARCHS
      e2736f7 sanity.bbclass: add more information to error message about TUNE_PKGARCH missing in PACKAGE_ARCHS
      b68d947 mkefidisk.sh: add boot log on console
      62d7c97 mkefidisk.sh: add startup script for automated boot
      5aa3b93 oeqa/selftest/recipetool: update for libjpeg-turbo migration
      ffa7469 libjpeg: Replace libjpeg with libjpeg-turbo
      29d273f python3: fix installed-vs-shipped when 64bit + multilib
      db7cee6 pulseaudio: add PACKAGECONFIG for lirc
      b900ec8 sstate-sysroot-cruft.sh: Extend the whitelist
      20843fa iptables: upgrade to 1.6.0
      c2bda6c scripts/oe-selftest: Allow to run tests on random/all MACHINEs
      8e1435e selftest: Added testcase decorators for 2 tests
      32f332c oe-selftest: New option --list-tests
      17d886b oe-selftest: Improved --list-classes when determining test names
      4ec2da7 selftest: moved tc test_buildhistory_does_not_change_signatures
      02d259c scripts/oe-selftest: Remove extra coverage data added to unittests
      30c06a4 expat: CVE-2015-1283
      315bdc8 packagegroup-core-x11-sato: enable pcmanfm on mips
      a3e26f9 wic: rawcopy: Copy source file to build folder
      d6e0da4 grub2: Fix CVE-2015-8370
      bb663b0 systemd: enable compatibility libraries by default
      3fea163 systemd: add more compression and importd PACKAGECONFIGs
      d462b70 gcc-sanitizers: link directly against sysroot libstc++
      3eb6135 openjade: Fix build if not installing libtool .la files
      6308c47 valgrind: Define __UCLIBC__ for uclibc based systems
      3d19a1e security_flags.inc: disable -fstack-protector-XXX for valgrind
      807ed8a meta/conf/layer.conf: bump layer version due to Qt4 removal
      4fb3e05 packagegroup-core-lsb: treat qt4 packages same as qt3 packages
      8b11ed8 qt4: remove recipes and classes
      0baadc8 toaster-manual: Updates to toaster use chapter.
      908bbff ref-manual: Updated the list of supported image types.
      5d27451 dev-manual: Added the --configfile bootloader option.
      7b3b1f9 dev-manual: Added three new wic option descriptions.
      eeffa64 dev-manual: Added the --overhead-factor wic option description.
      2beb19b dev-manual: Added the --extra-space wic option description.
      95851df dev-manual: Added wic --notable option description.
      88a2794 dev-manual:
      8bdc707 sdk-manual: Initial Manual framework
      f1f7625 bsp-guide: Updated the license statement.
      6686a31 dev-manual: Correction to the KVM stuff in the runqemu commands.
      ccc830d documentation: Prepare for 2.1 builds
      7af9314 mega-manual: Added four new figures for GUI example.
      f8185ff bitbake: ast: Add filename/lineno to mapped functions
      a178c5a bitbake: main: kill server without queue setup
      773700d bitbake: xmplrpc: split connect method
      05b4fbc bitbake: uievent: refactor retry loop
      ebc169c bitbake: uievent: get rid of EventHandler attribute
      4e0de6e bitbake: uievent: add error to registerEventHandler return
      01419d5 bitbake: cooker: add state.get_name method
      763506d bitbake: fetch2/__init__.py: Add support for 7-Zip
      f5bfc1c bitbake: utils: Remove double compile from better_compile
      b4141f6 bitbake: fetch2/local.py: avoid using PREMIRROR
      1ad3595 bitbake: siggen: Change exception note into a warning
      4ba49ac bitbake: data: Drop misleading ExpansionError exception
      2c94311 bitbake: cooker: Drop useless parsing exception
      a16b543 bitbake: data: Pass lineno/filename data from build_dependencies
      958f0ff bitbake: codeparser: Add support for correct linenumbers
      db4376e udev-extraconf: introduce multiple blacklist files for more complex setups
      a8fb429 uclibc: disable parallel builds
      401c632 image: Condense do_rootfs function/flags
      0051510 image/rootfs-postcommands: Separate out post rootfs commands to separate class
      3428edd image: Remove pointless rootfs lock
      eb5bb0e packagegroup-core-boot:replace busybox to variable
      cc7bb6c initramfs-framework_1.0:replace busybox for variable.
      d9ffa59 core-image-minimal-initramfs: replace base-utils
      9349f42 base-utils:flexible dependency for command utilities
      c44b76a orc: Add missing PACKAGES_DYNAMIC
      2cd061a bluez5: include the patch only for 5.36
      4c35473 meta-yocto-bsp: remove 3.14 and 3.19 bbappends
      6af8981 meta-yocto-bsp: Remove uvesafb (v86d) from generic x86 features
      614e9ec qemu: add PACKAGECONFIG for Nettle crypto support
      09705a4 oeqa/selftest: support sets in devtool comparisons
      4b543f7 packagegroup-core-x11-sato: include pulseaudio-misc
      23302ee devtool: use cp instead of shutil.copytree
      d6e7b5b xorg-lib: allow native building without x11 DISTRO_FEATURES
      4cba706 busybox: generalize recipe to work with arbitrary install directories
      9d001ae cairo: update 1.14.4 -> 1.14.6
      6d561fb libdrm: Upgrade to 2.4.65
      0f516f0 image-vm.bbclass: uses IMAGE_LINK_NAME
      c851096 image-live.bbclass: uses IMAGE_LINK_NAME
      907b87d rpm: Generate per distribution and multilib macro files
      c910789 package_manager.py: add debugging support for rpm scriptlet execution
      8dd27ef xinput-calibrator: get screen geometry when calibrating
      e8d36f4 scripts: hand the TEMPLATECONF local over to setup-builddir
      0f4fb26 util-linux: Fix floating dependency upon 'readline'
      2cb434a linux-firmware: package Broadcom BCM43340 firmware
      f70d46f rpcbind: Fix build with libtirpc 1.0.1
      866c693 libtirpc: upgrade to 1.0.1
      5754b83 gstreamer1.0-libav: upgrade to version 1.6.2
      6ac601f gstreamer1.0-rtsp-server: upgrade to version 1.6.2
      3ac3d33 gstreamer1.0-plugins-ugly: upgrade to version 1.6.2
      823b623 gstreamer1.0-plugins-bad: upgrade to version 1.6.2
      6d13f30 gstreamer1.0-plugins-good: upgrade to version 1.6.2
      05896a5 gstreamer1.0-plugins-base: upgrade to version 1.6.2
      a8eb77b gstreamer1.0: upgrade to version 1.6.2
      dd5756b mirrors: add archive.apache.org to Apache mirrors
      cfbd804 guile: remove redundant replacement of .pc file
      c2e8079 bind: 9.10.2-P4 -> 9.10.3-P2
      7204a0f libsndfile1: enable FLAC/Ogg/Vorbis support
      35bd254 buildhistory: improve support for extensible SDK
      ea0abcd buildhistory: fix not recording SDK information
      b6d191d scripts/oe-selftest: Add support for selftest log with timestamp
      ab79287 selftest: Added MACHINE = "qemux86" to tests that use runqemu
      b09080d ncurses: fixes wrong paths in BINCONFIG
      8df88fb xcb: don't build-depend on python-native
      d7759a5 tcmode-default: Use glibc for nativesdk version even on uclibc and musl
      a7eadc3 qemu: upgrade to 2.5.0
      9988ab3 webkitgtk: update to 2.10.4
      cedb027 epiphany: update to 3.18.2
      6e27dd8 libwebp: update to 0.4.4
      efcf4b4 libsecret: update to 0.18.3
      0112274 gnome-desktop3: update to 3.18.2
      88a656e gcr: update to 3.18.0
      883193a linux-yocto: remove 3.14 and 3.19 recipes
      4487e3a kernel-yocto: fix checkout bare-cloned kernel repositories
      5161944 linux-yocto/4.1: update to v4.1.15
      a462d16 linux-yocto-dev: bump to 4.4-rcX
      862b3b3 lttng-modules: fix build issue against kernel 4.4
      9563aa8 yaffs2: fix checkpoint functionality
      cefc24d mobile-broadband-provider-info: update to tagged release 20151214
      04aa27c icu: fix upstream version check
      2865e5f btrfs-tools: update to 4.3.1
      5beb3bc iso-codes: update to 3.63
      503c08d kexec-tools: update to 2.0.11
      4fa2e4b lighttpd: update to 1.4.38
      f7a7796 tiff: update to 4.0.6
      2498065 libassuan: update to 2.4.2
      f2192fa msmtp: update to 1.6.3
      7fc3066 liburcu: update to 0.9.1
      10d14bc trace-cmd: update to 2.6
      fc774e9 python3-pip: update to 7.1.2
      c3330aa pytnon-pexpect: update to 4.0.1
      aa90b5d ifupdown: update to 0.8.2
      4c98105 gptfdisk: update to 1.0.1
      edde9af cryptodev: update to 1.8
      9da9308 oe-selftest: devtool: add more explicit check for ls output
      c2435b1 oe-selftest: add tests for simple devtool add / recipetool create URL case
      8916731 recipetool: create: fix error when extracting source to a specified directory
      fe28c25 recipetool: create: improve autotools support
      498e483 devtool: sync: tweak help / messages
      b272c51 devtool: reset: print message about leaving source tree behind
      95a234e devtool: status: list recipe file within workspace if one exists
      e116739 devtool: modify: default source tree path
      110f433 devtool: add: allow specifying URL as positional argument
      ceaa4bf devtool: add: figure out recipe name from recipetool
      ee0d5a1 devtool: add: allow source tree to be omitted
      0d8751f scripts/lib/argparse_oe: handle intermixing of optional positional arguments
      1bd7793 devtool: update-recipe: use correct method to get bbappend filename
      2074654 devtool: split out function for naming bbappend
      6acbdc9 devtool: add: tweak help text
      316b57b devtool: edit-recipe: add new subcommand
      ebe5f0b recipetool: create: basic extraction of name/version from filename
      db5f964 recipetool: create: support extracting name and version from build scripts
      6a7661b recipetool: create: set up priority system for recipe handlers
      38803e3 recipetool: create: detect when specified URL returns a web page
      e78a039 recipetool: create: prevent attempting to unpack entire DL_DIR
      e61645b recipetool: create: minor fix for potential issue in python handling
      ae2141b recipetool: create: fix do_install handling for makefile-only software
      c2f1742 recipetool: create: avoid traceback on fetch error
      470f20b recipetool: create: handle https://....git URLs
      8e0a84c scripts: print usage in argparse-using scripts when a command-line error occurs
      548d433 directfb.inc: enable bfd linker workaround for all arm targets
      2381f4a devtool: sdk-update: fix traceback without update server set
      7540550 classes/populate_sdk_ext: error out of install if buildtools install fails
      ecce3d3 classes/populate_sdk_ext: hide build configuration in devtool build* output
      fd84d0f classes/base: don't print header if BUILDCFG_HEADER not set
      a4f496a classes/populate_sdk_ext: use uninative to set NATIVELSBSTRING
      a6f8a3f toaster.bbclass: fix TypeError when parsing build stats
      937b7fd libxcb: Add a workaround for gcc5 bug on mips
      86c8b8b flex: update to 2.6.0
      dad130b opkg: upgrade to v0.3.1
      d2b770c systemd: remove merge conflicts accidently left in
      ca69643 wic/help.py: document that mountpoint is optional for part command
      5628dde pixman: check neon support via TUNE_FEATURES, not the _armv7a over-ride
      9a74388 xdg-utils: Do not build the in-script documentation
      520b37d gettext: Upgrade 0.19.4 -> 0.19.6
      cae0e0f gcc-configure-common.inc: add gcc-runtime ABI fixes for armv7m and armv7r
      cba8fb3 tune-cortexr4.inc: provide an _armv7r over-ride via MACHINEOVERRIDES
      fd10723 tune-cortexm3.inc: provide an _armv7m over-ride via MACHINEOVERRIDES
      b6fe440 feature-arm-thumb.inc: drop 'no-thumb-interwork' tuning feature
      1d5a4cf feature-arm-thumb.inc: drop legacy _thumb and _thumb-interwork over-rides
      ca64c16 feature-arm-thumb.inc: drop ARM -vs- thumb comments
      95a79a5 rpm: Fix support for db5 and db6
      75cec07 oe-buildenv-internal: fix return code
      606c9e7 staging.bbclass: make already-stripped can be skipped
      647e0e4 buildhistory-collect-srcrevs: hide empty sections
      d4b5a1f selftest/buildhistory.py: Test buildhistory does not change sigs
      4b83f1f gcc5: Upgrade gcc-5.2 -> gcc-5.3
      0381b78 bitbake: event/utils/methodpool: Add a cache of compiled code objects
      c61c1eb bitbake: BBHandler: Improve IN_PYTHON_EOF handling
      2a94194 bitbake.conf: Add filename and lineno to BB_SIGNATURE_EXCLUDE_FLAGS
      5f40691 bitbake: toaster: remove 2 confusing parameters
      3960b6e bitbake: toaster: move setting of default values
      b194c0c bitbake: toaster: move startup checks to a better place
      064d2c7 bitbake: toaster: remove 2 unused functions
      c505f24 bitbake: toaster: remove addtoConfiguration function
      c7e4404 bitbake: toaster: updated header of the toaster script
      af34920 bitbake: toaster: add MANAGE variable
      563b786 bitbake: toaster: remove unused variable
      aa3cc12 bitbake: toaster: split long lines, add/remove whitespace
      8e4acac bitbake: toaster: check if address:port is in use
      847b935 bitbake: toaster: implement checksocket command
      9f3681d buildstats-summary/toaster: Cope with removal of get_bn()
      522dcaa bitbake: knotty: Improve exception error message
      01d67bf bitbake: knotty: Fix row/column function return value issue
      6c12efa bitbake: buildinfohelper: Update for buildstats layout change
      28ea1a1 bitbake: fetch: use orig localpath when calling orig method
      5cb6d83 bitbake: utils: Improve traceback from better_exec internal errors
      0019edc bitbake: ast/event/utils: Improve tracebacks to include file and line numbers more correctly
      b14ccb2 bitbake: runqueue: Add support for <task>- syntax
      5069ab6 m4: Drop unused/unreferenced patch
      d7e766b toaster: Update for buildstats changes
      adfdca4 buildstats: Improve to add getrusage data and corrected IO stats
      3187647 buildstats: Separate out the build and task data to allow improvements
      38a2553 buildstats: Clean up e.data and bb.data references
      7b1e48f buildstats: Drop get_bn/set_pn and just use BUILDNAME
      7837162 buildstats: Drop disk data from buildstats
      030c033 nativesdk-buildtools-perl-dummy: Bump PR
      e6f2761 combo-layer: Stop using filterdiff
      f1f3716 meta: more removals of redunant FILES_${PN}-dbg
      5fb8fea clutter-gst-3.0: add dependency on libgudev
      54f01ca systemd: Upgrade to 228
      63bdadc uclibc: Switch to using uclibc-ng
      0b5cddd cdrtools-native: update to 3.01 final
      c4dfb92 grep: update to 2.22
      d8608bc procps: update to 3.3.11
      52f6a01 babeltrace: update to 1.3.1
      0c705d6 powertop: update to 2.8
      516d8c9 nfs-utils: update to 1.3.3
      9c39a4f systemtap: update to 2.9
      fef0ec6 kbd: update to 2.0.3
      8668e17 gmp: update to 6.1.0
      86e02d0 docbook-xsl-stylesheets: fix UPSTREAM_CHECK_REGEX
      f065766 mtd-utils: update to 1.5.2
      5d32aeb unfs3: update to r497
      4e653b5 python-numpy: update to 1.10.1
      90b7212 libxml-simple-perl: update to 2.22
      689db13 dmidecode: update to 3.0
      d301451 cpio: update to 2.12
      2bea006 puzzles: update to current commit
      2d04c83 gnutls: update to 3.4.7
      cf1eb2b libidn: add native and nativesdk support
      dd58b3b libpng: Update SRC_URI to use GENTOO_MIRROR
      b763668 libpng12: Upgrade 1.2.54 -> 1.2.55
      91c92fc libical: Upgrade 1.0.0 -> 1.0.1
      5c6ff26 libxslt: use proper SRC_URI
      a444eb5 kexec-tools: added the script kdump
      be9f7f9 ltp: Upgrade 20150420 -> 20150903
      81f1e41 musl: Update to latest 1.1.12 release
      c529e66 util-linux: Upgrade to 2.27.1
      bdbc5ee packagegroup-core-sdk: Disable sanitizers for uclibc
      692853d libsolv: add new recipe
      8bba7de curl: upgrade to 7.45
      2e3a172 libsndfile1: 1.0.25 -> 1.0.26
      df18352 wget: Upgrade 1.16.3 -> 1.17
      81eb101 unifdef: upgrade to 2.11
      19c76ad sstate-sysroot-cruft: Add php, python, lua, fontcache generated files to whitelist
      f80f8ba oeqa/selftest: Added testcase decorators for 2 testcases
      a5dd1dd uninative.bbclass: Choose the correct loader based on BUILD_ARCH
      388e580 license: Fix BB_TASKDEPDATA references
      f19e8de coreutils/procps: Revert priority change since coreutils > busybox
      455ff32 meta: more removals of redunant FILES_${PN}-dbg
      e0890b6 meta: Drop now pointless manual -dbg packaging
      b7766e4 package: Add auto package splitting of .debug files
      89f13c7 meta/conf/toasterconf.json: remove SDKMACHINE variable as it no longer used
      03d715e bitbake: toaster: tables Set a default order for the software recipes table
      4ff0d60 bitbake: toaster: rework checking of Django version
      4a78416 bitbake: toaster: monkey patch Queryset
      c1c8eff bitbake: toaster: removed extra calls of migrate
      507aafb bitbake: toaster: work around 'database is locked' error
      322b470 bitbake: toaster: fixed format strings
      84daa40 bitbake: toaster: use OneToOneField instead of ForeignKey
      c464f34 bitbake: toaster: Amend regex for MySQL database URLs
      f001a4a bitbake: toaster: Remove compatible_layerversions() method
      0adffdf bitbake: toaster: Check Django version against toaster-requirements.txt
      8d058cf bitbake: toaster: Update deprecated manage.py command
      717c636 bitbake: toaster: Prevent deprecation warnings for RedirectView
      0f602c1 bitbake: toaster: Update API used to make runbuilds methods run in transactions
      93f5738 bitbake: toaster: rename get_query_set -> get_queryset
      23c4806 bitbake: toaster: Start Django machinery for database access
      7a0c45e bitbake: toaster: Create default project with get_or_create* method
      9de8dfa bitbake: toaster: Fix references to app paths
      535fc9b bitbake: toaster: Remove South migrations
      8ca4664 bitbake: toaster: Upgrade to Django 1.8.6 and remove South
      b322dec bitbake: toasterui: process SetBRBE event
      0274b68 bitbake: toaster: trigger SetBRBE event
      fdb8e74 bitbake: toaster: implement BitbakeController.triggerEvent
      5de3800 bitbake: event: Fix subprocess event error traceback failures
      0da1d71 nopackages: Add class for recipes which don't generate packages
      5003d14 sstate: Ensure populate_lic dependencies are not followed
      48aad51 populate_sdk_ext/sign_rpm/sign_package_feed: Add missing getVar parameter
      98dcdcb autoconf: Disable macro which causes excessive delays when using dash as sh
      28fa304 automake: Remove delays in configure scripts using automake
      f5e681d site/common-linux: Add some macros to avoid sleeps during configure
      93adf46 meta-yocto/conf/toasterconf.json: remove SDKMACHINE variable as it no longer used
      b3d6872 lttng-tools: Revert wrong enforcement of Python 3.0 use
      2c11bdd attr: Add patch to account for use of internal glibc header
      f1c034b libpam: Fix build with musl
      33bab59 openssl: Add musl configuration support
      c4207ee busybox: Add config for musl
      083d9d1 gettext: Delete libintl.h and charset.alias
      3a0797f sysvinit: Fix build with musl
      fd21402 musl: Add recipe
      781d34f mtools: Use proper glibc override to add glibc packages to recommendations
      1b90d67 squashfs-tools: Define FNM_EXTMATCH if not defined
      36a709a mtd-utils: Backport and create patches to support musl
      41fd73f gdb: Fix build with musl
      1ee97d8 autoconf: Add musl support
      a2ea58b gcc: Add support for building musl configuration
      37c74e2 gstreamer1.0: Split bash completion information into separate package
      fc32a3b attr: add attr dependency to attr-ptest
      9205f0a valgrind: import Debian link_tool patch for MIPS
      c27bbb4 slang: update upstream URI to (official) jedsoft.org
      21e35df subversion: update to 1.9.2
      39260c3 json-c: add manual upstream version check
      4ff0017 mirrors: replace references to archive.apache.org
      1672a18 mobile-broadband-provider-info: update to current commit
      b699b15 nspr: update to 4.11
      dec8d20 python-setuptools: update to 18.7.1
      b3535e2 openssl: update to 1.0.2e
      fce2ee7 dropbear.inc: drop legacy CFLAGS and LD tweaks
      f87063b dropbear: update 2015.70 -> 2015.71
      a520495 texinfo: don't create dependency on INHERIT variable
      2b2774b sudo: upgrade to 1.8.15
      5eb0e90 linux-firmware: update to latest revision bbe4917
      c147782 bluez5: upgrade to 5.36
      64c3a09 sudo: remove libdir INSANE_SKIP
      b407a80 libsdl: expand PACKAGECONFIG and enable native builds
      39facf9 buildtools-tarball.bb: 32bit tools need pseudo 32bit library
      bc26a7d rpm: fix file conflicts for MIPS64 N32
      01c0285 rpm: Enable MIPS64 N32 transactions
      a742586 bash: fix testcase run-coproc/run-execscript/run-test/run-heredoc failed
      a6bb872 cpio: fix test case of symlink-bad-length
      787d82b linux-libc-headers: update default KORG_ARCHIVE_COMPRESSION bz2 -> xz
      94c0332 linux-libc-headers.inc: remove '-e MAKEFLAGS=' from EXTRA_OEMAKE
      c7ad779 gcc-4.9: import patch fixing compilation in thumb mode
      1260ded gcc-5.2: import patch fixing compilation in thumb mode
      b4db53a dropbear: Upgrade 2015.68 -> 2015.70
      e0162c1 gcc-cross-initial: make dependency on gnu-config-native and autoconf-native explicit
      fccb128 weston-init: add a native systemd unit file
      a1fa8d9 python: Fix cross compiling issue
      c9fdc1b icu: Upgrade 55.1 -> 56.1
      95909bc kernel.bbclass: drop unnecessary 'eval' from kernel_do_configure()
      ec79a19 insane: in libdir test allow libraries in libexecdir
      9c0186f rootfs.py: Change logic to unistall packages
      23083e7 oeqa/systemd: get runtest target boot time and log
      c6330a2 oeqa/systemd: journalctl helper function
      220a78b scripts: oe-selftest Added new features.
      98d2485 oe-buildenv-internal: preserve existing BB_ENV_EXTRAWHITE
      9cab798 toolchain-shar-extract.sh: fix ~ not working in path
      f27401d nativesdk-buildtools-perl-dummy: properly set PACKAGE_ARCH
      5e3e2e0 poky.conf: Bump for 2.1 development
      7e8ff7b bitbake: toaster: toasterui Add ParseStarted/ParseProgress events to mask
      f823601 build-appliance-image: Update to master head revision
      992e577 linux-yocto: Update genericx86* BSPs to v4.1.13
      b4f6950 cmake: Add nios2 support
      27b9f04 boost: adjust hard-coded path after python3 upgrade
      639cadd sdk.py / OpkgSdk: remove_packaging_data() after install
      fd4894f devtool: extract: update SRCTREECOVEREDTASKS for kernel
      34f1d81 devtool: extract: copy kernel config to srctree
      6650357 lib/oe/package_manager: Introducing PACKAGE_FEED_BASE_PATHS/PACKAGE_FEED_ARCHS
      d7baeb5 selftest/wic.py: Add test for custom bootloader config
      8612f26 directdisk-bootloader-config.wks: Add example for custom bootloader config
      c59dc3b wic/help.py: Document the new option "configfile"
      7033873 wic: Allow to use a custom config for bootloaders
      f95f729 wic/utils/misc.py: Added function to search for files in canned-wks
      9773faa wic: Prepare wicboot to allow custom bootloader config
      4515186 package_ipk: allow to specify OPKG_ARGS in local.conf
      7cf7156 systemd.bbclass: Allow enabling of parameterised services
      551cda0 base: check for existing prefix when expanding names in PACKAGECONFIG
      c093fd8 linux-yocto/4.1: Fix kernel oops on qemuarm boot
      cda3905 toolchain-shar-extract.sh: ensure cleaned environment will work for ext SDK
      f9384b0 bitbake: knotty: Enforce terminal line limit to stop crazy scrolling
      7a775a1 initramfs-framework: create directory /var/run
      2861399 libpcre: drop UPSTREAM_CHECK_ variables
      35c28e3 libpcre: upgrade to 8.38
      d50ef65 libpng: update 1.6.19 -> 1.6.20 (CVE-2015-8126)
      2b736f2 ghostscript: add dependency for pnglibconf.h
      976f0e3 package_regex.inc: split the rest of the entries to their recipes
      74bfa62 package_regex.inc: split entries which blacklist specific versions to their recipes
      75c6929 package_regex.inc: split sourceforge related entries to their own recipes
      cefeac2 package_regex.inc: split PyPi related entries to their own recipes
      aa5df2a package_regex.inc: split Debian-related entries into their own recipes
      12ba5cc package_regex.inc: split GITTAGREGEX entries into recipe files
      642e92f package_regex.inc: split entries with odd-even versioning into their own recipes
      96eac69 package_regex.inc: deprecate the file
      b0bbea5 gstreamer: really fix the helper install race
      b822216 neard: fix libdir/libexecdir confusion
      cbfccc6 glibc: fix libdir/libexecdir path confusion
      d0577f9 sudo: handle libexecdir != libdir/PN.
      6f837cc util-linux: Add ptest
      dbd02bd libav: Correctly handle prefix=""
      fda9859 libav: Add PACKAGECONFIG options: avdevice, avfilter, avplay, gpl
      7ba85f1 libav: Remove deprecated --disable-avserver
      2739ed0 busybox: backport upstream fixes for unzip
      6decbbb qt4-4.8.7: fix build for mips n32
      f1e8938 gstreamer1.0: Convert tests and valgrind config opts to PACKAGECONFIGs
      11b9524 cracklib: fix for base_libdir == libdir
      d9f73ca libbsd: Upgrade to 0.8.0
      10d6dc4 libcroco: Upgrade 0.6.8 -> 0.6.9
      79b823a shared-mime-info: Upgrade 1.4 -> 1.5
      f6ec8a4 xdg-utils: Upgrade to 1.1.1
      a3f63f9 gsettings-desktop-schemas: Upgrade 2.16.1 -> 3.18.1
      754f6b6 gnome-common: Upgrade 3.14.0 -> 3.18.0
      75aba18 clutter-gtk-1.0: Upgrade 1.6.2 -> 1.6.6
      c6a6212 clutter-gst-3.0: Upgrade 3.0.8 -> 3.0.14
      2da6cd5 clutter-1.0: Upgrade 1.24.2
      148c953 cogl-1.0: Upgrade 1.20.0 -> 1.22.0
      f54d4e4 ghostscript: Add NIOS2 support
      21ba42b harfbuzz: update 1.1.0 -> 1.1.2
      058b91e xvideo-tests: move to the latest release
      70d459c scripts/oe-pkgdata-util: sort the packages in list-pkg-files
      80e3919 wic: insert local Python paths at front
      9d788d7 toolchain-scripts.bbclass: unset command_not_found_handle
      82ab99f waf.bbclass: remove unused parameter from get_waf_parallel_make()
      68d3dfe toolchain-shar-extract.sh: proper fix for additional env setup scripts
      0c5d239 base: Improve handling of switching virtual/x providers
      3745479 bitbake: bitbake: rename REGEX, REGEX_URI, and GITTAGREGEX.
      dd282d4 bitbake: toaster: return back 'New project' button
      2a8e970 bitbake: toaster: tests Update UI tests to work with 2.0 changes
      fe8a0a3 bitbake: toaster: tests Automated build-mode backend tests
      0497b57 bitbake: toaster: unset environment variables
      8b7a548 bitbake: toaster: get rid of complicated heuristics
      556b8b6 bitbake: toaster: remove SDKMACHINE from project variables
      4186f5b bitbake: toaster: stop using toaster-pre.conf
      361faa3 bitbake: toaster: remove writeConfFile API
      fcbba5a bitbake: toaster: set varibales on bitbake server
      993bc7e bitbake: toaster: implement BitbakeController.getVariable
      53e981e bitbake: toaster: buildinfohelper Broaden the toaster created recipe data case
      57e5f24 bitbake: toaster: do not create duplicate HelpText objects
      4c1e5ec bitbake: toaster: remove usage of BUILD_MODE variable
      9902895 bitbake: toaster: do not terminate bb server
      58765a8 bitbake: toaster: remove stopBBServer API
      95a3cf7 bitbake: toaster: reimplemented startBBServer method
      76d53b5 bitbake: toaster: remove _setupBE function
      87b2f95 bitbake: toaster: implement 'toaster restart-bitbake'
      891484a bitbake: toaster: implement start_bitbake function
      bf25471 bitbake: toaster: implement stop_bitbake function
      7c2b225 bitbake: toaster: update brbe and project attributes
      de812d0 bitbake: toaster: start 'manage.py runbuilds' in the script
      28e8ccf bitbake: toaster: make runbuilds to loop
      a3871a3 bitbake: toaster: use parent of the build dir
      2a96d35 bitbake: toaster: check for toaster configuration later
      d87a534 bitbake: toaster: remove unused variable
      dc6a489 bitbake: toaster: change toasterconf.json logic to use TEMPLATECONF, like oe-setup-builddir
      5a42c2d bitbake: toaster: run bitbake the same way
      cac91db bitbake: toaster: set DATABASE_URL in toaster script
      a464bf2 bitbake: toaster: implement get-dburl command
      e473151 bitbake: toaster: don't allow to run toaster as a script
      4de214f bitbake: lib/bb/utils: improve edit_bblayers_conf() handling of bblayers.conf formatting
      0debb11 bitbake: lib/bb/utils: fix error in edit_metadata() when deleting first line
      9d19dd9 bitbake: wget.py: parse only <a> tags
      71ede7b bitbake: toaster: toastergui tests Add generic test for ToasterTables widget
      34b22cf bitbake: toaster: tables Fix invalid field name on NewCustomImagesTable
      1c59846 bitbake: toaster: tables Add default_orderby field where it was missing or unset
      d82c541 bitbake: toaster: CustomImageRecipe add search_allowed_fields to this model
      bdf6241 bitbake: toaster: machines table Fix missing layers information needed for filter
      b90a8dc bitbake: toaster: tablejs Make sure click handlers consume click event
      c075bcf bitbake: toaster: projectpage Make sure build targets are space separated
      698c74c libsdl: remove redundant configure_tweak patch
      35945fd iw: upgrade to version 4.3
      15969ae gstreamer1.0-plugins-good: fix PACKAGECONFIG for gudev and add one for v4l2 and libv4l2
      e601b38 gstreamer1.0-plugins-bad: fix dependencies for uvch264 PACKAGECONFIG
      ddf2501 gudev: Add from meta-oe
      e406fa8 lsb: fix installed-vs-shipped for mips
      39ecdce rpm: fix for N32 MIPS64
      09b4da6 glibc/0029-fix-getmnt-empty-lines.patch: fix getmntent()
      1781a9a init-install-efi: fix script for eMMC installation
      f808747 init-install-efi: fix script for gummiboot loader
      2a55036 linux-firmware: rtl8192cx: Add latest available firmware
      b60af3b libsdl2: add missing dependency on libxkbcommon for PACKAGECONFIG[wayland]
      ed31874 libxml2: upgrade to 2.9.3
      ecb1c71 libxml2: merge pointless bb/inc split
      19a626d openssh: redesign ssh-agent.sh regression test case
      81b59e7 gcr: Require x11 DISTRO_FEATURE
      934e486 psplash: update to latest git version
      ccb2a57 sysvinit-inittab: Add wrapper script to verify console exists
      b7f610d linux-yocto/4.1: Bluetooth:Fix the connection fail of 6lowpan over BT LE
      d08e761 linux-yocto-rt/4.1: update to -rt15
      6aa464c linux-yocto/4.1: fsl-mpc8315e-rdb: Enable EEPROM
      bd29006 linux-yocto/4.1: update to v4.1.13
      5561407 uClibc: enable utmp for shadow compatibility
      533fc01 glibc: Backported a patch to fix glibc's bug(18589)
      598e372 ncurses: update SRC_URI
      51b64ee openssl: enable parallel make
      88e45cd busybox: enable resize applet
      87de4a1 busybox: disable support for mounting NFS file systems on Linux < 2.6.23
      73cc839 busybox: update 1.23.2 -> 1.24.1
      f8ac408 busybox: re-order defconfig to align with busybox 1.24.1
      3648a37 busybox.inc: remove '-e MAKEFLAGS=' from EXTRA_OEMAKE
      bf28ea9 busybox.inc: set CC=${CC} via make command line
      f21dce1 busybox.inc: fix CONFIG_EXTRA_CFLAGS configmangle
      6167669 busybox.inc: don't set .config CROSS_COMPILER_PREFIX
      e1ecccd busybox: move EXTRA_OEMAKE etc into busybox.inc
      0e63300 busybox.inc: don't export EXTRA_OEMAKE
      3735776 busybox_git: Enable getopt applet
      b1774f4 harfbuzz: update 1.0.6 -> 1.1.0
      31f803a sqlite3: update 3.9.0 -> 3.9.2
      7e3474c readline: apply missing upstream patches
      99b9d52 readline: prepare for readline6.3 upstream patches
      e0b6d0c dbus: merge .bb and .inc
      d99958a pulseaudio: Fix HDMI profile selection
      2ba954f initscripts: hide the error in case system is not writeable
      4ed84ff nativesdk-buildtools-perl-dummy: fix rebuilding when SDKMACHINE changes
      b8fdd09 xf86-video-vmware: Add vmwgfx PACKAGECONFIG option
      dfd5c4d pkgconfig: merge .bb and .inc
      61c6887 pkgconfig: upgrade to version 0.29
      744e89f ofono: upgrade to version 1.17
      996f843 libxml2: remove legacy LDFLAGS += "-ldl" workaround
      dedabc1 apr: fix LTFLAGS to make it work with ccache
      9470956 iproute2: install bridge tool by default
      1b8f6a2 lttng-tools: add libgcc to RDEPENDS
      22dd6e7 lttng-tools: Upgrade to 2.7 release
      ef73f21 lttng-tools: Drop unused patch
      c375976 lttng-ust: Upgrade to 2.7 release
      f5c1b57 lttng-modules: Upgrade to 2.7 release
      8d708a5 libunistring: upgrade to version 0.9.6
      f840e59 libtasn1: upgrade to 4.7
      012ca02 wpa-supplicant: upgrade to 2.5
      872e153 mesa: Make gl libraries RRECOMMEND mesa-megadriver
      a62fa23 directfb.inc: force bfd linker for armv7a
      9b075ca libpng12: update to 1.2.54
      6d1eb34 libpng: update to 1.6.19
      92a881f orc: update to 0.4.24
      2f479b1 libpcap: update to 1.7.4
      bd4058f apr-util: add missing RDEPENDS for ptest
      1408642 iproute2: update to 4.3.0
      e677c25 ruby-native: Depend on openssl-native
      9e37812 db: fix race issue for libdb-6.0.la
      c19036a pango: use ptest-gnome
      43b29d9 gst-plugins-bad: improve FILES variables
      9fc877f gstreamer1.0-plugins-base: add PACKAGECONFIG for libvisual
      7a2bb0d python3: fix building nativesdk-python3
      2268a70 python3: Upgrade from 3.4.3 to 3.5
      ed8d1be python-git: Add missing dependency
      dee2a8c guile, mailx, gcc, opensp, gstreamer1.0-libav, libunwind: disable thumb where it fails for qemuarm
      c0b822f icu: force arm mode
      f42ef3f rpcbind: Security Advisory - rpcbind - CVE-2015-7236
      04034e7 subversion: fix CVE-2015-3187
      f91aedf subversion: fix CVE-2015-3184
      40cd228 oeqa/sshcontrol: don't source profile
      d39192a oeqa/runtime/multilib: refactor ELF class extraction
      cc34104 oe-selftest: Enable code coverage on unit tests
      06859de meta/conf/machine: use ' inside quoted values
      6be94ec runqemu-internal: Replace wacom-tablet with tablet for usbdevice
      0cc3810 recipetool: make plugin registration function name consistent with devtool
      b381f80 recipetool: add setvar subcommand
      1fbd760 lib/oe/recipeutils: refactor patch_recipe_file() to use edit_metadata()
      0b850cb devtool: clarify help text
      5001f23 devtool: build: enable showing default task in help
      f79022d devtool: build: use bbappend to set PARALLEL_MAKE
      21481bc lib/oe/recipeutils: check in validate_pn() for names instead of filenames
      671f41e devtool: ensure we change back to the original dir on error
      74505b4 devtool: search: print SUMMARY value
      3f46af2 devtool: drop unused plugin_init() functions
      176211a devtool: package: use DEPLOY_DIR_<pkgtype> to get deploy directory
      0fe7426 devtool: disable creating workspace for extract and search subcommands
      a360fa7 lib/oe/patch: improve extraction of patch header
      f79cc4d devtool: upgrade: provide a means to update the source branch
      b4d4d21 devtool: upgrade: fetch remote repository before checking out new revision
      9b7d45c devtool: upgrade: remove erroneous error when not renaming recipe
      9a70444 devtool: upgrade: fix updating PV and SRCREV
      6a52c73 devtool: upgrade: fix removing other recipes from workspace on reset
      44ef78a devtool: include do_patch in SRCTREECOVEREDTASKS
      804f5b8 image.py: avoid mkdir race when building multiple images
      312862f package_manager.py: define info_dir and status_file when OPKGLIBDIR isn't the default
      b00f734 image.py: Avoid creating empty .env file in _write_wic_env
      a88505b lib/oe/terminal: use C locale when determining version
      8d784ba toolchain-shar-extract.sh: Ensure it's ran in clean environment
      7f3c20f toolchain-shar-extract.sh: do not allow $ in paths for ext SDK
      2d21e5d create-pull-request: handle empty ODIR
      c63b36f scripts/gen-lockedsig-cache: improve output
      67af6d6 wic: exec_native_cmd: implement support for pseudo
      8ffba25 toolchain-shar-relocate: don't assume last state of env_setup_script is good
      b8ee7ae sanity: don't enforce DISPLAY for testimage
      b364183 oeqa/qemurunner: pass nographic to runqemu if DISPLAY isn't set
      46755cc base: add automatic dependency on lzip-native for .lz SRC_URI
      6ea39c2 base: decode SRC_URI before adding implicit fetch dependencies
      eded9c2 buildhistory.bbclass: support extending the content of the build history
      d95df11 license.bbclass: Create image license manifest
      efdab52 license.bbclass: Add function get_deployed_files
      cc0d044 license.bbclass: Added function get_deployed_dependencies
      d45e10e license.bbclass: Added get_boot_dependencies function
      8b1e7bc license.bbclass: Split license create manifest
      1a210e6 license.bbclass: Write recipeinfo file in license folder
      74c7cd5 populate_sdk_ext.bbclass: Be more permissive on the name of the buildtools
      5ba6382 populate_sdk_base: Add sysroot symlink check
      7fed655 classes/populate_sdk_ext: fail if SDK_ARCH != BUILD_ARCH
      2948169 classes/populate_sdk_ext: tweak reporting of workspace exclusion
      28a2ea7 classes/populate_sdk_ext: make it clear when SDK installation has failed
      124c6aa classes/populate_sdk_ext: tidy up preparation log file writing
      d348624 boot-directdisk.bbclass: remove HDDIMG before create
      03f15e5 sstate: Ensure siginfo and sig files are also touched
      615ccae weston: Add PACKAGECONFIG option for colord CMS
      cdad67c opkg: add cache filename length fixes
      2ec77de openjade-native: statically link local libs
      29747d4 sysklogd: inhibit updatercd for non-sysvinit
      add3451 connman: depend on readline
      7a557a22 latencytop: obey LDFLAGS
      8aeec87 tcf-agent: obey LDFLAGS
      9025d2e blkspace: fix ldflags for iowatcher
      1732a8a bluez5: enable sysvinit support
      160fdd8 sysprof: use packageconfig for the gui
      425d020 mc: upgrade to 4.8.15
      7386647 packagegroup-core-directfb: Don't depend on pango-modules
      ac5ed8e xkeyboard-config: Upgrade 2.15 -> 2.16
      3a71fab xkbcomp: Upgrade 1.3.0 -> 1.3.1
      b7cb308 xinput: Upgrade 1.6.1 -> 1.6.2
      05eca73 xf86-video-omap: Upgrade 0.4.3 -> 0.4.4
      cfcc5e5 xf86-input-synaptics: Upgrade 1.8.2 -> 1.8.3
      4c9256f xf86-input-evdev: Upgrade 2.9.2 -> 2.10.0
      96ddcc5 xorg-driver-input: add xorg configuration to FILES
      a1003f5 xserver-xorg: Upgrade 1.17.2 -> 1.18.0
      a336b8a libxcb: Remove unused git-version of the recipe
      05ba0db libxcb: Upgrade 1.11 -> 1.11.1
      44233d3 pixman: Upgrade 0.32.6 -> 0.32.8
      7ab0466 libxi: Upgrade 1.7.4 -> 1.7.5
      63feef0 gtk-icon-utils-native: Upgrade 3.16.6 -> 3.18.2
      38924d9 package_regex.inc: Add gtk-icon-utils-native
      060b482 gtk+3: Upgrade 3.16.6 -> 3.18.2
      4f3d2b3 adwaita-icon-theme: Upgrade 3.16.2.1 -> 3.18.0
      c8849ac librsvg: Upgrade 2.40.10 -> 2.40.11
      81769ca pango: add RPROVIDES for removed packages
      c9b06f5 pango: Upgrade 1.36.8 -> 1.38.1
      ced8d49 gdk-pixbuf: Upgrade 2.30.8 -> 2.32.1
      918c773 libsoup-2.4: Upgrade 2.50.0 -> 2.52.1
      5bd9305 at-spi2-atk: Upgrade 2.16.0 -> 2.18.1
      8eb0c8f atk-spi2-core: Upgrade 2.16.0 -> 2.18.1
      78130eb atk: Upgrade 2.16.0 -> 2.18.0
      e7141ab glib-networking: Upgrade 2.44.0 -> 2.46.1
      fcd7494 glib-2.0: build dependency cleanup
      5357764 glib-2.0: Enable more tests while cross-compiling
      1e271af glib-2.0: Upgrade 2.44.1 -> 2.46.1
      bc1be07 qemu: Backport malloc-trace disabling
      bca5a7a logrotate: do not move binary logrotate to /usr/bin
      0069c0d systemd: drop unneeded $D check in prerm
      cd1f2b4 systemd: chown hwdb.bin to root:root for do_rootfs
      7ca8cd9 systemd: for valgrind, define VALGRIND=1
      46fa8ab systemd: make coredump a PACKAGECONFIG
      ac34784 systemd: add machine-id to conffiles
      04937cc systemd: ignore .so filenames in systemd-doc
      6821854 systemd: fix Upstream-Status tag
      82107b1 mdadm: fix CFLAGS and ptest issues
      d8adfd2 gcc-4.9: Fix various _FOR_BUILD and related variables
      8ae27fa devtool: add sync command
      6bfa1dc boost.inc: remove unused parameter from get_boost_parallel_make()
      16d7bfd wireless-tools: remove unused files
      ee923bf gstreamer1.0: fix install race
      0ae52c8 gcc-multilib-config: make aarch64 support multilib
      8514d21 libxml2: fix CVE-2015-7942 and CVE-2015-8035
      e864f71 terminal: Open a new window instead of split on older tmux versions (<1.9)
      5056581 flex: fix test-bison-yylval and test-bison-yylloc failed
      c54540e gdbm 1.8.3: install libgdbm_compat
      b9f87ed harfbuzz: update to 1.0.6
      3f75537 ethtool: bump version to 4.2
      9a4da3c openssl: fix ptest issues
      9163a5d base-files: stage /etc/skel
      d60c5ff mktemp: raise the priority to avoid conflicting with coreutils
      b06eacd libunwind: fix build for qemuarm
      c4acace gma500_gfx: Avoid inserting gma500_gfx module for certain devices
      6c3f680 libsndfile: fix CVE-2014-9756
      aa07eb1 python-pycurl: update version to 7.19.5.2
      696aa7e rt-tests: upgrade to version 0.96
      6ec7dc2 rpcbind: don't use '-w' for starting rpcbind
      eddd88f libsecret: add dependency on intltool-native
      2e8efb1 openssl: use subdir= instead of moving files in do_configure_prepend()
      036d2dc openssl: sanity check that the bignum module is present
      cf366d8 libsdl2: require GLES when building Wayland support
      4b38be6 meta: add some missing Upstream-Status tags to patches
      42c75cd weston: delete unused patch
      521fac6 glibc: fix Upstream-Status tag
      44a7bbc linux-firmware: package Broadcom BCM4339 firmware
      f9d51cd libusb1: fix make install race
      cb01f6d libusb1: upgrade from 1.0.19 to 1.0.20
      b4e6f63 perl: fix spaces in brackets while using CC version
      a59d019 u-boot: Update to 2015.10 release
      e67c5b0 bitbake-prserv-tool: check file name
      4e2c5e1 recipetool.append: don't choke on a trailing ; in a url
      a35f79d yocto-bsp: Set SRCREV meta/machine revisions to AUTOREV
      9d585b5 yocto-bsp: Set KTYPE to user selected base branch
      1542c2a yocto-bsp: Typo on the file extension
      f674ffa yocto-bsp: Avoid duplication of user patches ({{=machine}}-user-patches.scc)
      49a465c package_manager.py: Delete installed_pkgs.txt file
      ace895d rootfs.py: Stop using installed_pkgs.txt
      ccb1616 lib/oe/distro_check: don't set empty proxy keys
      8137a84 lib/oe/copy_buildsystem: Don't expand BB_TASKDEPDATA
      a6c68d8 oeqa/selftest/sstatetests: prettier output for allarch test
      92328b4 oeqa/selftest/signing: Added new test for signing sstate.
      fbb03a8 oeqa/selftest/signing: New test for Signing packages in the package feeds.
      13a4c38 qemu.bbclass: fix vardeps of QEMU_OPTIONS
      51bd011 qemu.bbclass: correct the fsl ppc QEMU_EXTRAOPTIONS
      753f31e autotools: Allow recipe-individual configure scripts
      e281791 allarch: Force TARGET_*FLAGS variable values
      e28e17e distro/maintainers.inc: include stress package details
      76d2e46 image_types: improve wks path specification
      70ae7a6 insane.bbclass: Avoid libdir QA check if PACKAGE_DEBUG_SPLIT_STYLE='debug-file-directory'
      cf0dfdb classes/cpan-base: fix libdir for nativesdk
      a205c4c bbclass: fix spelling mistakes
      cf218e5 rootfs_*.bbclass: don't add BUILDNAME to do_rootfs vardepsexclude
      7d8616c insane: Don't depend on BB_TASKDEPDATA
      a9cc27e kernel: fix race condition between compile_kernelmodules and shared_workdir
      fecb077 classes: Ensure pass setVar/setVarFlag strings, not integers
      9167f20 classes/license: fix intermittent license collection warning
      43c8867 classes/metadata_scm: fix git errors showing up on non-git repositories
      59b27d5 sstate: respect GPG_BIN and GPG_HOME
      4415dc5 archiver.bbclass: add bbappend when do_ar_recipe kernel and gcc packages
      2f0ff3a archiver.bbclass: fix previous issue regarding work-shared for linux-yocto
      0cc4eef waf.bbclass: filter out non -j from PARALLEL_MAKE
      95719b0 ptest-gnome: extend EXTRA_OECONF in all builds, not just target
      1b25a70 yocto-project-qs, ref-manual, poky.ent: CentOS Package updates
      2e649d7 dev-manual: Updated runqemu command options list
      bd62289 toaster-manual: Removed SDKMACHINE from the json file example.
      c674cd7 ref-manual: Updated list of supported distros.
      33d8cff ref-manual: Updated the GCC 5 migration section for 2.0
      d9aabf9 gcc: Drop 4.8
      2cb1aee layer.conf: Correct gcc-cross dependency
      88f9310 bitbake: toaster: builds pages Fix the download cooker log link
      d04af8b bitbake: toaster: project pages Link to image recipes table in notifications
      70465c7 bitbake: toaster: tests: Re-write some cases to make them more maintainable
      536b73f bitbake: data_smart: Only support lowercase OVERRIDES
      fb01a66 bitbake: fetch2: Remove crazy code in unpack
      7db88aa bitbake: parse: Don't try to expand __base_depends/__depends
      4c04ce0 bitbake: cache: Don't try to expand __inherit_data
      9d8e36a bitbake: toaster: localhostbectrl Pass DATABASE_URL in via the process environment
      4677d8b bitbake: toaster: Remove the new-build-input button widget
      55f4494 bitbake: toaster: projecttopbar Use the project in context to get num builds
      e9d4962 bitbake: toaster: projectpage Disable/Enable build input if we have 0 layers
      5fa4c73 bitbake: toaster: orm Fix get_number_of_builds to count all apart from IN_PROGRESS
      c4032f4 bitbake: codeparser: Only load the codeparser cache once
      e3b66c1 maintainers: mass reassign and cleanup
      37ddd3e Revert "local.conf.sample: Disable image-prelink by default"
      9cc221d yocto-bsp: Default kernel version to 4.1 on x86_64
      7100c42 scripts: runqemu: remove QEMUARCH from help message
      f47e4ad cairo: update 1.14.2 -> 1.14.4
      603b4de cairo.inc: drop obsolete CFLAGS += "-ffat-lto-objects" workaround
      e8833a6 cmake: update 3.3.1 -> 3.3.2
      8b2b068 oe-selftest: add test for bitbake-layers show-recipes
      480bbae oeqa/selftest/layerappend: fix test if build directory is not inside COREBASE
      a301f6e oeqa/selftest/devtool: fix test if build directory is not inside COREBASE
      fd6bf77 classes/distrodata: split SRC_URI properly before determining type
      7cebff6 classes/buildhistory: split package history values only once
      10fc534 conf/distro/include: drop old recipes from include files
      37cfd80 gitignore: fix overzealous exclusion
      1f6599b meta: Fix typos in Upstream-Status labels
      7cace4c meta/conf/layer.conf: fix typo
      ca8e1e5 texinfo-dummy-native: set SUMMARY instead of DESCRIPTION
      64cd113 gstreamer1.0-meta-base: set SUMMARY instead of DESCRIPTION
      1d42d59 mmc-utils: set SUMMARY instead of DESCRIPTION
      6692540 swig: set SUMMARY instead of DESCRIPTION
      47ae8eb alsa-plugins: set SUMMARY instead of DESCRIPTION
      eac5fa9 tzcode-native: set SUMMARY instead of DESCRIPTION
      0a30a1f linux-yocto.inc: set SUMMARY instead of DESCRIPTION
      19e1a73 python-nose: add SUMMARY
      b5f58c1 stress: add SUMMARY
      5f9392a libunwind: add SUMMARY
      1460e01 gptfdisk: add SUMMARY
      0821c36 verify-homepage: fix recipe file selection
      0c48921 verify-homepage: tidy up output and comments
      0e348e7 verify-homepage: get expanded HOMEPAGE value
      caaca00 verify-homepage: use scriptpath to find bitbake path
      649b6bc libaio: don't disable linking to the system libraries
      11a9c24 runqemu: don't specify IP when starting a VNC server
      3b95964 qemurunner: Remove the timeout in run_serial
      bbd6d07 libxslt: CVE-2015-7995
      a0d2ea9 gstreamer1.0-rtsp-server: upgrade to version 1.6.1
      2459ec2 gstreamer1.0-libav: upgrade to version 1.6.1
      bce06e7 gstreamer1.0-plugins-ugly: upgrade to version 1.6.1
      0ec3c62 gstreamer1.0-plugins-bad: upgrade to version 1.6.1
      ba1bc63 gstreamer1.0-plugins-good: upgrade to version 1.6.1
      4a55d12 gstreamer1.0-plugins-base: upgrade to version 1.6.1
      8360f23 gstreamer1.0: upgrade to version 1.6.1
      8800033 prelink: Fix various prelink issues on IA32, ARM, and MIPS.
      920fb96 gcc: Update default Power GCC settings to use secure-plt
      7b1763a glibc: Fix ld.so / prelink interface for ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA
      e63e191 qemurunner: Enable timestamps on kernel boot-up
      a1ca788 openssl: fix mips64 configure support
      5a10a6f at: modify sources in do_patch
      78e0598 unzip: rename patch to reflect CVE fix
      b80935a readline: rename patch to contain CVE reference
      86d84ff qemu: upgrade to 2.4.0.1
      4f0d756 gnome-desktop-testing: fix ptest output format
      834de84 default-distrovars: remove less from WHITELIST_GPL-3.0
      29bba95 lsof: don't export EXTRA_OEMAKE
      3d37768 cmake.bbclass: don't duplicate CMAKE_C_FLAGS in CMAKE_C_FLAGS_RELEASE
      efc07c2 rm_work.bbclass: Exclude do_rootfs stamp removal
      5f9d16b cairo: fix license for cairo-script-interpreter
      7328479 openssh: enable X11Forwarding if distro feature x11 is set
      adeb820 acpid: Upgrade to 2.0.25
      781dfd8 libidn: 1.30 -> 1.32
      351c69a sqlite: 3.8.10.2 -> 3.9.0
      c0fe43c rt-tests: bump to v0.94
      cf972f9 gbm: Fix "configure: error: gbm requires --enable-dri"
      17733cc xinetd: install xinetd supported services configuration
      aa1844e combo-layer: introduce ability to exclude component from mass update
      dcc446f linux-dtb.inc: refactor common code to function get_real_dtb_path_in_kernel
      af9c7a4 linux-dtb.inc: refactor common code to function normalize_dtb
      7eecb81 linux-dtb.inc: explicit test for empty string not needed
      54df911 ptest-runner: Allow running of specific tests
      54325b2 oeqa/testimage: Add support for test folder export.
      ecbe135 oeqa/runtime/multilib: run the arch tests on connmand not connman-applet
      2d1071e oeqa/runtime: remove dmesg test
      42a5378 nfs-utils/statd: fix a segfault
      77e3246 qemu: enable user mode for mips64 and mips64el
      70600fb gnupg: fix find-version for beta checking
      ab123ef rpm: define EM_AARCH64 for debugedit
      af8c136 xserver-xorg: drop empty ${PN}-security-policy package
      b667067 xserver-xorg: add Xwayland RRECOMMENDS
      80f4d71 weston: add a PACKAGECONFIG option for xwayland support
      883ab0f systemd: make dbus an optional build time dependency
      2c5047f weston: add PACKAGECONFIG to build with systemd-login support
      65ffeb5 systemd: add PACKAGECONFIG to build with compatibility libraries
      4b29c80 os-release: put double-quotes around variable contents
      0f516a5 cpio: fix testcase symlink-bad-lengths [ LIN8-947 ]
      bceb9cb cpio: Fix symlink-bad-length test for 64-bit [ LIN8-947 ] architectures.
      0ff3fc7 gtk+3: fix ALTERNATIVE_PRIORITY conflict with gtk+
      eca12a6 coreutils: fix ALTERNATIVE_PRIORITY conflict with procps and mktemp
      8de5315 util-linux: fix ALTERNATIVE_PRIORITY conflict with ncurses procps and e2fsprogs
      3befb43 console-tools: fix ALTERNATIVE_PRIORITY conflict with kbd
      5385ea8 debianutils: fix ALTERNATIVE_PRIORITY conflict with which
      3a0bd40 linux-dtb.inc: use same variable name DTB for all elements of KERNEL_DEVICETREE
      a879312 linux-dtb.inc: remove unneeded 'cd'
      a23d1ca webkitgtk: Add upstream patch to fix build problem
      69836e8 python: don't append -D__SOFTFP__ to TARGET_CC_ARCH for armv6/armv7a
      38d1d63 prexport.bbclass: avoid export for native and crosssdk
      d3da006 recipes: add distro_features_check for some packages
      63690f0 scons.bbclass: SCons packages don't require do_configure
      bffdc65 busybox: Schedule mdev after mountall
      13ce7c2 busybox: Fix mdev block device automounting
      b09f0f2 libarchive: rename patch to reflect CVE
      116360f binutils: Fix XLP / Octeon 3 instruction clash
      fd4f4d2 binutils: Fix octeon3 disassembly patch
      fc45dea build-appliance-image: Update to jethro head revision
      e14498b meta-yocto/distro: Updated SANITY_TESTED_DISTROS.
      01bba74 meta-yocto/distro: Updated SANITY_TESTED_DISTROS.
      e1aa897 build-appliance-image: Update to jethro head revision
      96cab33 unzip: CVE-2015-7696, CVE-2015-7697
      1b2a942 vte: fix DoS from malicious escape sequence (CVE-2012-2738)
      370a291 build-appliance-image: Update to jethro head revision
      00911c9 linux-yocto_4.1: Update SRCREV for genericx86*
      c86957a glibc: Allow 64 bit atomics for x86
      b02c5f6 local.conf.sample: Disable image-prelink by default
      1630dbb ref-manual: Applied a correction to the GCC 5 migration 2.0 section.
      37677d6 ref-manual: Updated ADT Installer Extras
      a79e303 kernel-dev: Added cross-reference to .config information
      e03b19b ref-manual: Applied review updates to 2.0 migration section.
      a0791c1 bitbake: toasterui: Create per-build logs
      290534d bitbake: build/utils: Add BB_TASK_IONICE_LEVEL support
      3ebf761 bitbake: cooker: Ensure BB_CONSOLE remains correct over server resets
      5b19b71 bitbake: bb/ui: Use getSetVariable command for BB_CONSOLELOG
      acc7b4d bitbake: command: Add getSetVariable command
      c8051c5 bitbake: bitbake-user-manual: Added new description for BB_TASK_IONICE_LEVEL
      183290a bitbake: bitbake-user-manual: Added BBTARGETS variable description.
      66d3c35 bitbake: toaster: templates Add meaningful title tags
      5724b2a perl: Remove errornous extra path-specs for Module::Build based modules
      884cf7a perl: Correct path for vendorlib, vendorarch, sitelib and sitearch
      2d0c499 perl: fix Perl5 module builds
      24cfcc4 runqemu-export-rootfs: update location of unfsd binary
      da386d3 gtk-icon-cache: pass the native libdir to the intercept
      63a0311 connman: Move wired-setup to ${datadir}
      1c3c76d useradd-staticids.bbclass: Do not require trailing colons
      8a0d8ee toaster manual: Updated the set up and use chapter
      f19b52c ref-manual: Updates to the 1.8 to 2.0 Migration section.
      b73da6b toaster-manual: Added new Toaster functionality descriptions.
      947e156 ref-manual: Updated the rootfs*.bbclass description.
      62e200e bitbake: toaster: orm Fix restrictive LogMessage message length
      78f935d bitbake: toaster: Remove all navigation when not in build mode
      c5f147b bitbake: toaster: Run tests in build mode
      1d17109 bitbake: toaster: Hide builds for non-cli projects in analysis mode
      a580479 bitbake: toaster: Hide top bar buttons in analysis mode
      1ec2ec3 bitbake: toaster: Show mode-appropriate landing page
      bbac0f0 bitbake: toaster: Add BUILD_MODE flag to context
      851f0d8 bitbake: toaster: add get_or_create_targets API
      dcd9cd0 bitbake: fetcher: svn: Add support for checkout to a custom path
      4ab7202 bitbake: cooker: preserve pre and post configs
      fdfdfc8 oeqa/utils/decorators: fix missing keyword arguments on decorators
      a2d5b7a classes/gtk-icon-cache: don't pass STAGING_LIBDIR_NATIVE to intercepts
      5171329 intercepts/update_icon_cache: use STAGING_DIR_NATIVE from environment
      d18d902 lib/oe/rootfs: tell intercepts where the native sysroot is
      9336e1f subversion: add explicit dependency on file-replacement-native for native builds
      19358d0 rpm: add explicit dependency on file-replacement-native for native builds
      698c3de file: don't replace host file when built natively
      83a2bde sanity: check that the host has file installed
      43c46e9 bitbake: add file-native to ASSUME_PROVIDED
      2925cd9 Revert "runqemu-export-rootfs: update location of unfsd binary"
      d023d99 populate_sdk_base: Ensure PKGDATA_DIR exists
      9b956c4 Perl: Use CC version not $Config(gccversion)
      0f75740 wic/utils/oe/misc.py: Preserve PATH when running native tools
      273bcb4 mtools_4.0.18.bb: Use create_wrapper() for mcopy
      031d464 scripts/oe-pkgdata-util: Fix variable name in error handling
      d8d4ce7 Add 850 codepage to uninative-tarball
      c1d5e89 e2fsprogs: backport a patch to fix filetype for hardlink
      426a9b7 oeqa/selftest: Added testcase decorators.
      835525c runqemu-ifup: Check if the tap interface is set up correctly
      b13c0be qemurunner: Show the output of runqemu script
      9846275 runqemu-internal: Enable support for use virtio devices.
      304c956 linux-yocto{, -rt}: Enable support for virtio drivers in qemu machines.
      eebcbe1 runqemu: Enable support for kvm without vhost in x86 and x86_64
      135d094 prserv.bbclass: remove it since it is null
      c509c78 initscripts/sysfs.sh: Mount devtmpfs on /dev/ if needed
      022f8cc image-mklibs.bbclass: update i586 TARGET_ARCH test to i*86
      d492a70 base.bbclass: considering multilib when setting LICENSE_EXCLUSION
      54b7471 gcc-target.inc: Add support for executable thats may have a suffix
      0d69a171 cairo: backport fix for compatibility with OpenGL ES 2.0
      64b5e3e mesa-demos: fix deadlock in sharedtex_mt
      dc8495f bzip2: fix bunzip2 -qt returns 0 for corrupt archives
      5bf1430 gnome-desktop: add xkeyboard-config dependency
      48443cc gtk+3: Do not try to initialize GL without libgl
      59fdbae classes/insane: rename invalid-pkgconfig QA check to invalid-packageconfig
      73e1d33 uclibc: Implement syncfs and AT_EMPTY_PATH for all and O_PATH for arm
      2e4575d systemd: Fix build with uclibc
      40911f4 libtirpc: Fix a bug exposed by uclibc
      d90d3e8 libpam: Fix build with uclibc
      32c8625 coreutils: Do not use host paths in getloadavg.m4
      20b7d87 coreutils-6.9: Add missing dependency on virtual/libiconv
      8bb6436 uclibc: Fix build with gcc5
      e5e8fce libtirpc: Refresh uclibc patches
      fd66dd1 rpcbind: Fix build with uclibc
      369c536 scripts/oe-publish-sdk: create directory before making git repo
      8a555fe rootfs.py: add more info to the warning message
      787253f package signing: automatically export public keys
      579e254 package_manager: fail if signed feeds are enabled for ipk or dpkg
      835e755 Add new bbclass for package feed signing
      822844d sign_rpm.bbclass: make RPM_GPG_NAME a mandatory setting
      48d60fc sign_rpm.bbclass: be more verbose in case of error
      dbb9af6 package_manager: support GPG_PATH variable
      b682fca sign_rpm.bbclass: introduce GPG_PATH variable
      8ccbc26 apr: remove conflict with ccache
      5e42593 linux-yocto: nf_tables: Add nf_tables feature
      1c2fdd9 linux-yocto/3.19: fix ARM boot with gcc5.x
      3bab714 linux-yocto: skip kernel meta data branches when finding machine branch
      1561d0d kern-tools: avoid duplicate .scc file processing
      47dcee2 linux-yocto/4.1: drm/i915: Fix the VBT child device parsing for BSW
      380f2c6 linux-yocto: axxia configuration updates
      505a826 build-appliance-image: Update to jethro head revision
      7d30d67 ref-manual: Updated the allarch class description.
      a8674ae ref-manual: Updated the MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS variable
      e7c8c79 ref-manual: Added the 1.8 to 2.0 migration section.
      cd48ccc dev-manual: Added notes to clarify use of pkg-config
      dc9e4cb ref-manual: Added correct class name as part of pkgconfig description
      5bc8fa6 ref-manual: Fixed typo in 1.6 migration section for BitBake
      2fe3809 ref-manual, dev-manual: Applied feedback to edit several classes
      359b7fb ref-manual: Added three PACKAGE_FEED_* variable descriptions
      2f4e90c toaster-manual: Updated the json file example bits to be current
      66653cb ref-manual: Updated the image-swab.bbclass description
      d66cf20 toaster-manual: New section on PREFERRED_VERSION
      4b9daa8 ref-manual: Added many new class descriptions.
      ae0d508 toaster-manual: Added note for creating virtual environment
      98d7d24 toaster-manual: Updates to example toasterconf.json file
      b263a3e dev-manual: Added CentOS packages to enable runtime tests on QEMU
      9abc72c adt-manual: Fixed PMS typo
      2e7d650 ref-manual: Updates to clarify Fetcher URL directory parameters
      7facee6 toaster-manual: Updated the section for setting up virtual env.
      10970a6 dev-manual: Added package requirements for runtime QEMU testing
      acacf6b ref-manual: Added linuxloader.bbclass reference description.
      8fc90a7 Makefile: Updated the make file to not create toaster-manual pdf
      0889848 dev-manual: Updated devtool build --help example
      1944d28 documentation: Updated files to support 2.0 release.
      8d2a6f0 toaster-manual: Removed "dizzy" and replaced with "jethro"
      3bff581 ref-manual: Added descriptions for 5 new variables and 2 tasks.
      a87268e dev-manual: Updated the Marking Packages information.
      1c7f462 ref-manual: Added oe-seltest package requirements sections.
      3d82046 adt-manual: Updated the build toolchain section with more detail.
      54b4aff adt-manual: Updated some hard-coded distro values
      196210f dev-manual: Updated the multilib example.
      3930f04 ref-manual: Updated the EXCLUDE_FROM_SHLIBS description
      0d1c86b ref-manual: Updated EXCLUDE_FROM_SHLIBS description.
      eea7521 ref-manual: Updated distrodata.bbclass example
      2eaf843f ref-manual: Added new description for PACKAGE_EXCLUDE_COMPLEMENTARY
      97298fb dev-manual: Fixed typo in path for wic plugins
      05d8101 ref-manual: Added new EXCLUDE_FROM_SHLIB variable
      316d432 ref-manual: Added new variable description for SKIP_FILEDEPS
      a1b25e6 yocto-project-qs, ref-manual: Replaced "yum" with "dnf"
      d284fba ref-manual: Added cross-reference phrase to some variables
      5a226f7 dev-manual: Changed multilib example
      6ca549f dev-manual: Added note about building out Autotools projects
      92b26ad archiver.bbclass: Fixes and improves archiver class for kernel and gcc packages
      2d00803 oeqa/selftest: improve config writing and cleanup
      1881564 oeqa/selftest/wic: remove numbers from test names
      2ac34d2 oeqa/selftest: clean up selftest.inc in teardown
      a66ed33 oeqa/selftest/wic: fix cleaning
      b67b1a4 oeqa/selftest/wic: corrected testcase decorator for test18_iso_image
      e191120 oeqa/selftest: verify that devtool can use plugins in other layers
      b8a9728 oeqa/selftest/buildoptions: Use the correct script for cleaning the workdir
      94decbc oeqa/selftest/bbtests: Updated bitbake TCs
      322c324 oeqa/selftest/bbtests: clean up local DL_DIR/SSTATE_DIR safely
      cf311a7 oeqa/utils/ftools: From functions that expect data, check if None
      900639c oeqa/utils/ftools: Ignore the exception if file does not exist
      2e91cbd oeqa/selftest/manifest.py: Test support for manifests
      c9bef34 useradd_base.bbclass: Do not warn without a reason
      accb59e qemu: disable Valgrind
      ac1bc7d i2c-tools: fix inverted RDEPENDS
      35c043b rpm: remove spurious build dependencies
      41cbfd7 gcc-5.2: Fix various _FOR_BUILD and related variables
      a27da70 sudo: fix file permission for /etc/pam.d/sudo
      abeaed9 openssh: fix file permission for /etc/pam.d/sshd
      96a5cfd sanity.bbclass: expand warning when chmod fails
      409e6e0 populate SDK: prepare calling of bb.utils for exceptions
      db55d31 devtool: handle virtual providers
      8578bc1 libc-package: Fix localedef multilib dependency issues
      0942aff toolchain-shar-extract.sh: print full-length title underline
      9630fc1 classes/populate_sdk_ext: detect and warn if running in OE environment
      254ff38 classes/populate_sdk_ext: add note to env setup script
      9a81ba7 classes/populate_sdk_ext: prevent image construction from executing on install
      ec5ec35 classes/populate_sdk_ext: consistent indentation
      b8f7042 oeqa/runtime: Fix setUp and tearDown methods
      3327401 oetest: Add tearDownLocal class
      3b7853a test-empty-image: rename from core-image-empty
      5febb1d scripts/gen-lockedsig-cache: fix race with temp file creation
      3b5d6ff image-live: make SYSLINUX_ROOT changable in image recipes
      5009966 toolchain-shar-extract.sh: provide proper path for env_setup_script
      ae7703f classes/base: provide hints on PACKAGECONFIG error
      5a02ec2 devtool: extract: fix error handling
      3aac110 metadata_scm: rewrite git hash logic
      59668f2 linux-yocto-custom: fix typo in Upstream-Status tag
      c52dcb0 grub-efi, gummiboot: Emit correct path in startup.nsh
      f9d29ab coreutils: fix for native and nativesdk
      b1a7405 gcc-4.x: fix wrong warning when using the universal zero initializer {0}
      402723e tzdata: reinstate changes reverted in 2014c upgrade
      3770461 build-compare: drop PATCHTOOL setting
      4846260 common-licenses: use correct GFDL-1.1 license text
      a9053ac bitbake: toaster: Add tests for error message display on the build dashboard
      2517987 bitbake: toaster: Modify "New build" button behaviour for cli builds project
      56d4c84 bitbake: toaster: Clean up template code
      d96cedf bitbake: toaster: More linting of tests
      7c8877e bitbake: toaster: Show tooltip next to cli builds project name in all builds
      7670234 bitbake: toaster: Hide tabs and add info popups for command line builds
      da4c614 bitbake: toaster: Make the builds view the project page for "command line builds"
      ef6fc2b bitbake: toaster: Replace "Run again" button with help text for cli builds
      7467b68 bitbake: toaster: Exclude "command line builds" project from projects typeahead
      b5624c7 bitbake: toaster: Show 'not applicable' for default project machine and release
      3c4c984 bitbake: toaster: Reorganise and lint tests
      3ba43f2 bitbake: fetch2/hg: Include missing errno import
      6fa3fec bitbake: cooker: normalize build targets
      5effe8f bitbake: toaster: Allow any text input to machine configuration variable
      320d05e bitbake: toaster: exit or return depending on the mode
      2e2e40c bitbake: toaster: set TOASTER_MANAGED variable
      a73895e bitbake: toaster: get rid of SRCFILE
      779539c bitbake: toaster: use path to the script to guess config path
      eb8b2b9 bitbake: toaster: Guard against builds with no targets
      65e8bde bitbake: toaster: Remove Toaster exceptions section of build dashboard
      93f0b61 bitbake: toaster: Record critical errors
      069a611 bitbake: toaster: Test that exception isn't thrown by project page
      026e981 bitbake: toaster: Check whether buildrequest exists before using it
      1feeb8e bitbake: toaster: Always run bldcontrol migrations
      ae82d77 bitbake: toaster: buildinfohelper Detect command line builds
      596c219 bitbake: toaster: Disable add layer button when input is empty
      24e5a17 bitbake: toaster: Have 'Version' next to recipe name
      c895838 bitbake: toaster: Improve directory structure layout
      2f52ef4 bitbake: toaster: importlayer Update property names for importlayer api calls
      556c0ea lib/oe/image.py: Fix dependency handling for compressed types
      d302c98 bitbake: toaster: Fix missing tooltips from layers on project configuration page
      7e5464b bitbake: toaster: Fix broken test case
      2e375e6 bitbake: toaster: exclude recipes with empty names
      fa3e82d bitbake: toaster: delete recipe if it can't be saved
      82675fc bitbake: toaster: Remove project name from latest project builds
      6aeaca1 bitbake: toaster: test get_alldeps API
      0fb6be0 bitbake: toaster: fix orm tests
      dea679a bitbake: toaster: fix NameError
      6e0c0fd bitbake: toaster: use get_alldeps in layerdetails renderer
      bd2ec77 bitbake: toaster: implement API to get full list of deps
      05594f8 bash: Disable custom memory allocator
      adbbab7 icu: fix install race
      b1d0aab webkitgtk, gcr, libsecret: force ARM mode
      67d6500 gtk+3: gtk3-demo needs libgl
      f385ed1 lib/oe/distro_check: Remove '_proxy' on dict values used by urllib.open
      4bf7b7d cups: fix non-deterministic xinetd behaviour
      32dbf71 cronie: clean up bugtracker info
      6396d6a irda-utils: clean up bugtracker info
      8d5878b screen: fix CVE-2015-6806
      acdc2db kbd: provide a workaround for build failures
      67959b9 machine/qemu: Fix OpenGL/GLX support with xserver-xorg.
      fedff4f busybox.inc: remove redundant @DATADIR@ replacement
      78b9d2d insane.bbclass: remove misleading path in warning
      8995a30 iptables: only check libnetfilter-conntrack when libnfnetlink is enabled
      e35c404 bitbake: toaster: Don't descend into directories for cached_layers
      d9528d9 toasterconf: update meta-yocto to jethro and drop dizzy
      2d6701f bitbake: toaster: Update JS unit tests
      ab896df bitbake: toaster: Fix stale layer state buttons
      41a5f82 bitbake: toaster: tables Add the recipe filter back into the Recipe table
      2bebcd4 bitbake: toaster: Fix typo in returning pk list of layer versions in current project
      d6d680d bitbake: toaster: layerdetails update build recipe button class name
      7794b57 bitbake: toaster: Hide "Download build log" button if log doesn't exist
      8c69539 bitbake: toaster: fix naming for clone directory
      41286f4 bitbake: toaster: buildinfohelper Skip packages we have no build info about
      97d0006 bitbake: toaster: buildinfohelper associate build data with built_recipe
      0dcc963 bitbake: toaster: remove bashisms so script works in dash as well
      8068aa3 bitbake: toaster: get rid of interactivity in bldcontrol
      7d7823e bitbake: toaster: check for configuration file and exit if not found
      315989c bitbake: toaster: remove layer and build dir interactive questions
      489d5ff bitbake: toaster: removed superuser question from startup
      c7d1dab bitbake: toaster: orm Machines filter don't pass self in as parameter
      dd957fe bitbake: toaster: Rationalise mimetype guessing to fix artifact downloads
      ce9011a bitbake: toaster: Use Python's mimetypes module
      466bbec bitbake: toaster: display warnings for bad "IMAGE_FSTYPES" values
      8b7d846 bitbake: toaster: Set default columns in recipes tables
      9daf6ef bitbake: toaster: Comment out broken sorting and filters
      b661f53 bitbake: toaster: Don't HTTP cache ToasterTable responses
      a3742a0 bitbake: toaster: Don't add new history entries when table data loads
      fa68ae0 bitbake: toaster: use meaningful logging levels
      bd8b27b bitbake: toaster: ignore ReachableStamps event
      ceeb52a linux-yocto: Update SRCREV for genericx86* BSPs
      7766265 os-release: fix do_compile() when RPM signing is enabled
      9a02df0 readline: actually apply readline63-003 (aka CVE-2014-2524)
      a856580 rpm: fix return without value in patch
      49bf4b1 Revert "qemu-native: Enable temporary debug info as default."
      ad8c021 linux-yocto/4.1: drm/i915 backports
      48e5579 oeqa/utils/qemurunner: Add support for Unicode from qemu
      1f99452 report-error.bbclass: Support Unicode reports
      b25af33 udev: add PROVIDES = "libgudev"
      a0d9d2d lib/oe/image.py: Add image generation for companion debug filesystem
      8ee9a93 package_manager.py: sort output of OpkgPkgsList().list
      37c54af ThunderX: Add initial tune file
      a0e7311 tzdata: update to 2015g
      931dda4 tzcode: update to 2015g
      8cacd22 recipetool: create: fix change in path structure if --extract-to path exists
      e961688 devtool: update-recipe: avoid updating patches that have not changed
      07fc8c2 oe-selftest: wic: fix LocalSetup
      eac61f3 build-appliance-image: Update to jethro head revision
      c9bdcf5 oeqa/runexported: Replaced optionparser with argparse.
      038ae3f systemd: remove glib-2.0 build dependency
      0516cd2 webkitgtk: Add some PACKAGECONFIG options.
      dff30d2 fontcache: allow to pass extra parameters and environment to fc-cache
      d5ce2f5 webkitgtk: Use ON/OFF for cmake switches.
      ebd5035 testimage: Added IO commands to dumps
      b73a35e distro-alias.inc: Updated for jethro 2.0 release
      b7f9cde build-appliance-image: Update to jethro head revision
      cf8ad8d toaster: Special case the openembedded-core layer to avoid duplicates
      20b888b build-appliance-image: Update to jethro head revision
      8fb5a5a bitbake: bitbake/lib: Update version to 1.28.0
      0eca7ff build-appliance-image: Update to jethro head revision
      34fede6 poky.conf: Bump version for 2.0 jethro release
      a7329e1 Revert "oeqa/runtime: Added one runtime testcase in connman."
      c2e78e3 qemu: Drop BROKEN usage
      e788961 smart:cache.py: getPackages() matches name + arch
      f3e57ba devtool: modify: use correct local files directory name
      7cb0765 xuser-account: Take over xuser specific D-Bus policy
      cdaa8fd bluez5: Use upstream D-Bus policy
      e4a4961 ptest: run-ptest not required to run do_install_ptest
      12cd705 distrodata: Take account proxies on distrodata tasks
      f047ee8 devtool: update-recipe: enable var history tracking
      979de77 lib/oeqa/selftest/yoctobsp: Basic tests for yocto-bsp script
      e20d8b8 scripts/lib/bsp/engine: Indent the karch properties when stored into a file
      f2933cc yocto-bsp: Update templates to 4.1 kernel
      8283a57 scrips/lib/bsp/engine: List properties to stdout when output parameter is omitted
      b355a5e scripts/yocto-bsp: Exit successfully when asking for help
      ad9ee3d meta-yocto-bsp: bump to linux-yocto 4.1 for the non-x86 BSPs
      cdc57f6 bitbake: siggen: Make it clear why nostamp tasks signatures don't match
      1630f0a bitbake: runqueue: Add handling of virtual/xxx provider mappings
      0b96e6f bitbake: taskdata: Add a function to return the virtual/ mapping data
      40fae32 bitbake: cookerdata: Rename BBPKGS -> BBTARGETS
      1e467b3 bitbake: bitbake-worker: Guard against multiprocessing corruption of event data
      e5b9c2a oeqa/selftest/wic: Use SetupLocal instead of Setup
      4266cc9 kernel.bbclass: fix the bug of checking the existing sections in do_strip()
      ec1146e linux-yocto_{3.14,3.19,4.1}: qemuarm enable virtio drivers
      2ea0e4c runqemu-internal: qemuarm enable usage of virtio devices
      a23239a gnome-doc-utils: xslt - don't install Makefiles
      f671163 apr-utils: cleanup buildpaths for target stuffs
      f68d739 apr: cleanup buildpaths from target stuffs
      a7ac905 curl: cleanup buildpaths from curl-config
      833bfd3 dropbear: fix key generation when systemd is in use and rootfs is readonly
      d592abd image.bbclass: tweak the key location for dropbear when rootfs is readonly
      299806d openssh: fix sshd key generation when systemd is in use and rootfs is readonly
      006497e image.bbclass: when building a readonly rootfs, tweak ssh settings regardless of init system in use
      f1e2515 lttng-tools: Drop KERNELDIR reference
      381a7bd meta-ide-support: No need to mark as nostamp anymore
      ab9d2bb adt-installer: No need to mark as nostamp
      d8ab563 distutils3: Avoid MACHINE specific checksums
      a0d6322 gstreamer-omx: Improve variable expansion of ${S}
      c71bd57 bitbake.conf: Exclude sstate-outputdirs flag from checksums
      f02cbc6 deploy: Mark deploy tasks as MACHINE specific
      a0435bf layer.conf: Add SIGGEN exclusion for oprofile kernel dependency
      f4a8917 layer.conf: Improve siggen exclusion to handle virtual/libc
      6fe4fd2 multilib_global: Add handling of SIGGEN variables for multilib
      2c19695 lib/oe/sstate: Add tasks_resolved handler for virtual/xxx mappings
      ff17f14 oeqa/selftest/sstatetests: Add test that MACHINE doesn't change target sigs
      d822764 meta-selftest: Add qemux86copy machine
      6cfc7c0 oeqa/selftest/sstatetests: Add check for same sigs for SDKMACHINE
      5dbd061 multilib.conf: Ensure MACHINE doesn't change target sigs
      71fdb36 gcc-multilib-config: Ensure SDK_ARCH doesn't change target sigs
      c9ea0c6 lib/oe/package_manager: Handle empty package list in opkg case
      ec504e0 oeqa/utils/decorators: Append the testname without the full path
      8fe5b48 kern-tools: fix multi-layer patch application
      b054506 linux-yocto/4.1: braswell bug fixes
      c6c093b linux-yocto/4.1: update to 4.1.8 -stable
      a502a2d linux-yocto-rt/4.1: integrate axxia BSP
      38f0ffa meta: fix build with gettext 0.16.1
      56c0fdf hostap-utils: Use C99 stddefs in defining local typedefs
      34707c2 linux-yocto-custom: Update for newer kernel
      df09a6f oetest: Change logic of a failed test
      7a6cb2e cwautomacros: cleanup buildpath in autogen.sh
      1222eb1 oeqa/runexported: Fix a problem with ssh_target_log existing in folder.
      cb93670 qemurunner: Sanitize output from qemu and qemu pid
      ba0f6ca oeqa/testimage: Add ability to run single test from suite.
      3e40688 recipes-extended: remove duplicate recipe and .wks
      6f2047a runqemu-internal: Make sure two serial ports always exist
      385a5e8 cross-canadian.bbclass: big-endian ARM is also gnueabi.
      7c96fcf openssl: fix ptest failures
      d9ce095 python-async: inherit setuptools
      adb6987 util-linux: add runuser PAM config files to fix runuser error
      9549f57 oeqa/decorators: Fixed a problem with decorator logs link.
      790b6c7 oeqa/selftest/wic: Added testcase decorator to all testcases + fixed minor typos.
      ffd4bd6 toolchain-shar-extract: Correct environment-setup script names for multilib
      249b810 lsb: add lsbinitscripts and util-linux rdepends
      c7548b5 systemd: add PACKAGECONFIG for qrencode
      3b04553 opkg: create opkg.lock in /run instead of /var/run
      c275627 toolchain-shar-relocate.sh: make it faster
      434665d populate_sdk_base: Simplify postprocess commands
      5bfcd13 classes/meta: Add DISTRO_FEATURES check for gtk+/gtk3+
      5b629a9 devtool: modify: make bitbake use local files from srctree
      e9bae50 devtool: better support for local source files
      a74fa38 devtool: file mover function that creates target dir
      109c09b devtool: update_recipe: refactor patch generation
      c976028 devtool: update-recipe: add new patches in correct order
      2f8440b oe-selftest: devtool: add method for checking repo status
      0a9f59e oe-selftest: devtool: add method for checking srctree repo
      afb0142 oe-selftest: devtool: add setup() method
      31c3078 oe.patch.GitApplyTree: add paths argument to extractPatches
      d5e2dd4 recipeutils: implement get_recipe_local_files()
      4bc3f09 bitbake: toaster: move clones into subdirectory
      9e1516d bitbake: toaster: make clone directory name unique
      552fd83 bitbake: toaster: fix reimporting module
      55dc927 bitbake: toaster: fix bug in resetting git repository
      6939340 bitbake: toaster: use git reset --hard instead of rebase
      3d73dfa bitbake: toaster: don't use --single-branch when cloning
      226e7da bitbake: utils: only add layer once in edit_bblayers_conf()
      d48b7ef bitbake: toaster: display most recent builds for projects
      f902dc6 bitbake: toaster: orm remove the complicated querying on the ORM
      fe29297 bitbake: Revert "bitbake: toaster: don't re-create Target objects"
      e6d967d bitbake: toaster: buildinfohelper Create a copy of the built layer and recipe
      17fe16b bitbake: toaster: tables show all recipes in the layerdetails even duplicates
      aed6d2e bitbake: toaster: Prioroitise the layer more generic vcs reference over the sha
      922503f bitbake: toaster: Create a relationship between build information and toaster layers
      0bc0a44 bitbake: toaster: Special case the openembedded-core layer to avoid duplicates
      e68f63a bitbake: toaster: Add test cases for new Image customisation features
      d98c771 bitbake: toaster: Add Image customisation frontend feature
      37948cc bitbake: toaster: Add ToasterTables for Image customisation feature
      a3ff4b2 bitbake: toaster: Add new ReST API for Image Customisation feature
      28153ac bitbake: toaster: Fix indentation of jsunittests view
      60f3ddb bitbake: toaster: implement decorator for REST responses
      a7f43bd bitbake: toaster: add toggle for enabling image customisation feeature
      3ff6401 bitbake: toaster: Add CustomImageRecipe model
      8948d04 bitbake: toaster: ToasterTable remove unused class definition
      c1157cf bitbake: toaster: add nocache option to the ToasterTable widget
      1cafc39 bitbake: toaster: widgets ToasterTable Add more info to search field exception
      c71bbad bitbake: toaster: widgets ToasterTable add logger to notify when cache hit
      934f8d7 bitbake: toaster: create custom layer and recipes for Image customisation
      340b398 bitbake: toaster: tables Move the title and name into the widget
      e1851fe bitbake: toaster: make a workaround for old style index
      f78f902 bitbake: prserv/serv.py: Better messaging when starting/stopping the server with port=0
      134b267 bitbake: prserv/serv: Close the DB connection out of class destructor
      caf422c multilib: Add TARGET_VENDOR to saved variables list
      3af9f06 oeqa/sdk/gcc: Fix makefile test
      00f0d2b gdk-pixbuf: Only apply native cleaning in normal task, not setscene
      452237b runqemu-export-rootfs: update location of unfsd binary
      aa1253f runqemu: don't complain about conflicting machines if they are equal
      994915b oeqa/testimage: Remove absolute path to oeqa from json
      f8da3b6 iproute2: fix the configure process
      218d9f4 gcc-multilib-config: Expand ccargs variable
      be13cdb Empty image: core-image-empty recipe
      2bbec56 Empty image:rootfs.py:handle empty PACKAGE_INSTALL
      4562f3f gstreamer1.0-plugins-bad: change glimagesink rank to marginal
      677a463 linux-yocto/4.1: rt update to 4.1.x-rt8
      cdd9c4c linux-yocto/4.1: common-pc-drivers: add CONFIG_PATA_SCH
      9028d93 ltp: replace 'inline' with 'static inline' for gcc 5.x
      5942dfe waffle: Fix build with musl
      cfa3ed0 cups: fix pam configuration file's permission
      8227d49 busybox: Use CC instead of bare LD to be the Linker
      a3c4817 busybox: Use UTMPX instead of legacy UTMP
      ea031f0 distrodata: handle recipes with empty or absent SRC_URI in checkpkg()
      5cc44fe recipeutils.py: don't hardcode the upstream version as 1.0 when SRC_URI is empty or absent
      320500e oeqa/parselogs: Updated log parser whitelist.
      adeba9a connman: Don't use a blanket "allow" D-Bus policy
      907c8a7 connman: Depend on xuser-account unconditionally
      1b146c5 byacc: add missing patch header
      5fd3089 sstate: run recipe-provided hooks outside of ${B}
      3fb464f oeqa/decorators: Add timestamp to decorator logs.
      5f371e5 image types: add hdddirect
      ca52ca0 packagegroup-core-standalone-sdk-target: ensure libatomic is in SDK
      6d68ba9 glibc/mmc-utils: Rename 'BRANCH' variable to 'SRCBRANCH' for clearness
      c5aab3f sanity.bbclass: show warning when chmod fails
      5702a19 systemd: apply persistent storage udev rules also for /dev/hd*
      cb24cbb rpm: search for gpg if gpg2 is not found
      217cccd openssl: Add mapping for nios2
      3408d0d qemurunner: Handle qemu start failure correctly
      79e3418 gcc-runtime: Add multilib C++ header mapping
      09af262 oeqa/oetest: Fix SDK command execution
      5d4f39f mulitlib: Ensure SDKTARGETSYSROOT is set correctly
      c356961 gtk-icon-cache/pixbufcache: don't set GDK_PIXBUF_MODULEDIR
      4a36842 librsvg: tell configure where gdk-pixbuf-query-loaders is
      8a12632 gdk-pixbuf: move gdk-pixbuf-query-loaders to $libdir for multilib safety
      b070778 gdk-pixbuf: move gdk-pixbuf-pixdata to gdk-pixbuf-dev
      7fb583a multilib: Drop populate_sdk variable manipulation
      eb7b1a5 package_manager.py: make rpm install mutilib pkgs corectly
      5a51fb2 bitbake: prserv/serv: Start/Stop daemon using ip instead of host
      2687b24 gdk-pixbuf: Avoid rebuild failures
      94184a0 systemd: fix tmpfiles location when multilib in use
      179ee77 p11-kit: configure without trust-paths
      c7624b4 oe-pkgdata-util: avoid returning skipped packages
      dd11f5c toolchain-shar-extract.sh: remove checkbashism
      99fc786 archiver: stamp-base is dead, remove it
      ce7bc12 gcc-shared-source: Set empty SRC_URI
      47ef201 libgcc.inc: package baremetal multilib libraries
      aff7e72 meta-selftest: add error recipe and error-image
      261e68c libksba: fix pkgconfig patch
      3235a64 systemd: disable problematic GCC 5.2 optimizations
      6e7ed5e Revert "systemd: disable problematic GCC 5.2 optimizations"
      9673278 oeqa/selftest/archiver: Test that archiver filters on recipe name
      6807327 oeqa/utils/dump: Add default commands and directory
      5d31e94 webkitgtk: add REQUIRED_DISTRO_FEATURES
      8733b53 oeqa/runexported: Removed DEPLOY_DIR as mandatory.
      f1e7fb0 oeqa/oetest: Remove bb as requirement for oetest.
      d70c5cb gcc-5.2: disable isl
      66dca4b kmod: Change SRCREV to fix return code in error path
      61e77c7 oeqa/runtime/parselogs.py: Fix dmesg log retrieve in sato
      dd26efb insane.bbclass: make package_qa_clean_path return a relative path
      bdbd8b4 devtool: upgrade: use shutil.move instead of os.rename
      346784b devtool: runqemu: avoid recipe parse
      85d8b4a devtool: second fix for running from a different directory
      6363a95 guile: cleanup buildpaths and add RDEPENDS on pkgconfig
      6d1447b gmp: Use __gnu_inline__ attribute in 4.2.1
      42dc902 pseudo_1.7.4.bb: fix f*open()
      9f66aa1 bitbake: toaster: start script warning text formatting small improvement
      c6eaef0 bitbake: tinfoil: remove logging handler at shutdown
      fb26ea3 bitbake: toaster: remove time from builds in progress
      15b482b bitbake: toaster: Add fake entry to Target_File for filesystem root
      767fe69 bitbake: toaster: layerdetails Fix back button tab behaviour
      4c0320f bitbake: toaster: UI test improvements
      4c5af77 bitbake: toaster: support selenium testing from mac OS X
      e6c4970 bitbake: toaster: add 2 UI tests
      f6a70ad bitbake: toaster: change UI to show tasks
      08000eb bitbake: toaster: don't re-create Target objects
      ea37358 bitbake: toaster: store task name in Target objects
      524ddd8 oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start
      376ce71 oeqa/utils/qemurunner.py: Fix HIGH CPU usage on LoggingThread
      6c0066c devtool: add search command
      0613301 devtool: add basic means of running runqemu within the extensible SDK
      c4181c6 devtool / recipetool: add handling for binary-only packages
      76084cd devtool: build-image: delete bbappend at end of build
      ef197f9 devtool: build-image: improve image recipe handling
      8f67bb7 devtool: build-image: tell user where to find output files
      afb9340 devtool: build-image: fix recipe/package terminology
      d736518 devtool: add: move important "recipe created" message to the end
      3bd0f33 devtool: add: set up fetched source as a git repository by default
      e759b0b devtool: better handling for recipes that don't unpack source
      a34f733 devtool: fix extracting source for work-shared recipes
      5bc437b devtool: show proper error when extracting source for recipes with disabled unpack task
      210d959 recipetool: create: fix handling of URIs containing #
      a35ad72 recipetool: create: fix creating empty shell functions
      30c7e7a devtool: add: properly handle separate build directory
      99fc284 devtool / lib/oe/recipeutils: ensure we can parse without bbappends
      5d1a117 devtool: add: ensure --color=never turns off recipetool colour output
      ae788fb devtool: check that source tree still exists
      99cd79d scripts/contrib: add devtool stress tester
      e0b9a96 lib/oe/patch: fix for git am not cleaning up after itself
      8fb70c6 classes/externalsrc: fix setting of deps varflag as a string
      586291f classes/externalsrc: scale back warning to a plain note
      72810f9 toolchain-shar-extract.sh: show progress when extracting SDK
      0dc9299 classes/populate_sdk_ext: drop work-config.inc
      3a08728 classes/populate_sdk_ext: allow custom configuration for extensible SDK
      b853dde classes/populate_sdk_ext: fix missing environment settings if running installer with sh
      374e1fe lib/oe/recipeutils: properly split unexpanded variable values
      7fb3fb9 linux-yocto/4.1: hid, bluetooth, aufs and yaffs2 updates
      9241ec5 image_types.bbclass: Don't try to create ubi symlink twice
      266e417 oeqa/selftest: buildoptions.py Removed unused imports
      329d09f systemd: disable problematic GCC 5.2 optimizations
      554c817 libgpg-error: Add support for nios2
      84e1100 pixman: Fix missing FE_DIVBYZERO on nios2
      9baffc1 libtool: Fix nios2 support
      ba1e0ee linux-yocto: depend on libgcc for nios2
      8efff24 kernel-arch: Add nios2 to valid archs
      4d9af35 siteinfo: Add nios2-linux
      76a8c74 insane: Add nios2 support
      6adffd0 autotools: fix traversal bug in aclocal copying
      6a02bbd python3-debugger: Adds pkgutils dependency to pdb
      a7dd758 python3-debugger: fix importlib dependency
      0e5a911 libsdl: depends on libglu when both x11 and opengl
      d762ea1 lttng-tools: sessiond: disable: match app event by name
      c8a7d76 testimage.bbclass: Fix break introduced with SIGTERM handling
      7d166a6 sysstat: Include needed headers explicitly
      d36384e connman: Fix build with musl
      0df9b98 quota: Replace using -I= with STAGING_INCDIR
      433a7a0 opkg: Include stdio.h for FILE definition
      5aadabf syslinux: Dont bypass gcc driver for dependency generation options
      05b9a0c gnu-efi, syslinux: Support gcc < 4.7
      cdfd96e gummiboot: Fix build warnings seen with gcc5
      0141652 qt4: Fix kmap2qmap build with clang
      6b73a05 xz: Correctly specify GPL-3.0 with autoconf exception
      a96069d insane.bbclass: drop extra line-feed in pkgname check
      10fb575 insane.bbclass: show PN and relative path in package_qa_check_host_user
      5624889 package.bbclass: add summary line to installed-vs-shipped QA check
      d6e40e8 initramfs-framework: better error reporting for invalid root boot parameter
      288a9ff initramfs-framework: fix "support dropping into shell on failure"
      5ff7e8d qt4: remove already merged patch
      9578b09 gdk-pixbuf: remove redundant libx11 DEPENDS line
      fe70aa4 runqemu-internal: For qemumicroblaze use the QEMU provided device tree
      9aaf7e3 runqemu-internal: Fix qemu networking for qemuzynq an qemumicroblaze
      be493ba libpcre: Allow building 16 and 32bit libpcre versions
      f32a6e1 oe-git-proxy: Allow socks4 as protocol in $ALL_PROXY
      18309f0 oe-git-proxy: Correct the parsing of a port in $ALL_PROXY
      c035f35 oe-git-proxy: Allow explicit IP addresses in $NO_PROXY
      bbe06b4 oeqa/testimage: Enhance -v switch in testimage
      e0b38f2 wic-image-minimal: add dependency to .wks
      dd7726f wic: fix partition size calculation
      219d73a wic: use ext4 in wic-image-minimal.wks
      ce2cb45 wic: add dependencies to wic-image-minimal recipe
      a66f586 testimage.bbclass: Don't require an image manifest
      39c11d8 gstreamer1.0: Fix basesink drop buffer error
      5f13793 grep: fix install if bindir == base_bindir
      b17c02f gzip: fix install if bindir == base_bindir
      b6f8ea1 cpio: fix install if bindir == base_bindir
      fe0cdab tar: fix install if bindir == base_bindir
      c6b52f3 bind: fix too long error from gen
      81d65df ccache: fix file name too long
      cdbe5c9 bitbake.conf: update APACHE_MIRROR
      12772c8 linux-yocto/4.1: hid-core: Avoid uninitialized buffer access
      88b11e6 kern-tools: optimize patching peformance
      0864782 linux-yocto/4.1: aufs, yaffs2 and driver fixes
      7b86c77 bitbake: bitbake: bb.fetch2.git: Import errno module
      e993aa6 bitbake: toaster: hide irrelevant builds in the project builds view
      5b4e380 bitbake: data_smart: Ensure OVERRIDES dependencies account for contains()
      60d019d bitbake: data_smart: Correctly handle OVERRIDE values set using ??=
      701ad76 bitbake: data_smart: When considering OVERRIDE dependencies, do so recursively
      4325f6f bitbake: data_smart: Expand overrides cache recursively
      3a5e46b bitbake: bb.fetch2.{git, hg}: remove tarball if it needs updating
      441f04c bitbake: toaster: Simplify redirects when build page parameters are missing
      30f9f79 bitbake: toaster: Fix date range pickers on the project builds page
      047245f bitbake: toaster: Show correct builds count on project pages
      5528f3a bitbake: toaster: hide irrelevant builds in the project builds view
      2bb600a bitbake: tests/fetch.py: Fix recursion failure in url mapping
      4c3d4ec bitbake: fetch2/__init__.py: uri_replace regex handling
      460e4c2 bitbake: toaster: Don't def a function for each call to build_artifact()
      b6d1d2a bitbake: toaster: Avoid unnecessary local to local copy of cooker log
      8c63d60 bitbake: toaster: Read correct cooker log path from toasterui
      013c030 bitbake: toaster: delete multiple builds cleanup
      3165af3 bitbake: data_smart: Separate out update_overridevars into separate function
      07aef86 bitbake: cache: Handle spaces and colons in directory names for file-checksums
      9679500 autotools.bbclass: mkdir ${B} -> mkdir -p ${B}
      c30ee2a perf: mkdir ${B} -> mkdir -p ${B}
      d18612a recipetool: add 'newappend' sub-command
      4727384 oeqa/sstatetests: Add test for nativesdk stamp invariance with MACHINE
      56b2c53 glibc: Ensure OVERRIDES doesn't influence sstate checksum
      1884550 image.py: Ensure base image size is an integer
      ec72426 python: Add python-misc as rdependency to python-modules
      c170f35 cryptodev-tests: don't use STAGING_KERNEL_DIR, fix re-packaging in multi-machine builds
      2d7fe03 adwaita-icon-theme: RREPLACE gnome-icon-theme
      94d280f mkelfimage: fix owner for /usr/sbin/mkelfImage
      3323c3f nspr: fix SRC_URI
      935a8bd mkefidisk: Create interactive menu for the script
      6c05e6a image.bbclass: add do_rootfs vardeps for {COMPRESS, IMAGE}_CMD_*
      82be1f3 squashfs-tools: make it be able to be compiled by gcc5 with "-O0"
      dc3bc22 linux-firmware: package Broadcom BCM4354 firmware
      db8f796 perf: fix the install-python_ext on upstream kernel
      bfe2cd1 systemd: fix missing space in SRC_URI append
      2515cf2 python: remove --with-wctype-functions configure option
      17f5a5a kmod: fix link creation when base_bindir != /bin
      e2cfe93 prelink: Move to latest release
      32472dc glibc: don't require bash for nscd init script
      d8eb9d4 oeqa/decorators: Added decorator to restart the DUT in case of test hang.
      5acf99d init-install-efi.sh: Avoid /mnt/mtab creation if already present
      ea562de qemu: Update to upstream patches
      1d0b922 qemu: remove redundant lines in smc91c111_fix.patch
      39b661e webkitgtk: Add patch to fix gcc5 compile issues
      572e50d webkitgtk: add a new recipe for latest upstream version
      7eabed3 distutils.bbclass: Handle python-backport modules
      ca73270 xorg-driver: Fix logical && with bitwise and operation
      b5a433f distro: update include files related to webkitgtk and epiphany addition
      8fcb01c midori: remove the recipe and replace references to midori with epiphany
      e552b25 webkit-gtk: remove the recipe for the obsolete version 1.8.3
      23bf09b epiphany: add a recipe from meta-gnome
      62fca97 image_types.bbclass: Restore compatibility with previous UBI filesystems
      722aa22 image.py: Allow IMAGE_LINK_NAME to be empty
      3006cb2 as-needed.inc: add babeltrace exception
      75bad1b gcc: reformat 0063-nativesdk-gcc-support.patch
      1c914a8 meta: Fix Upstream-Status statements
      20d90af maintainers.inc: remove packages that are no longer in oe-core
      2625fa5 poky-tiny.conf: Require utmpx, its needed for busybox
      2e39f18 maintainers: add maintainer info for new webkitgtk, epiphany and their dependencies
      68aefbb bitbake: bitbake-worker: Ensure pipe closure doesn't crash before killpg()
      aaa48b6 bitbake: toaster: increase waiting time
      58ef81c testimage: Handle core-image-lsb-sdk qemumips test restriction
      ba17ce3 oeqa/targetbuild: Ensure we run gnu-configize so config files are up to date
      7c2ff62 populate_sdk_base: Fix aarch64 OLDEST_KERNEL sdk issues
      6a71f66 testimage: Fix SDK extraction error handling
      06cde90 devtool: update-recipe: get srcuri parameters with decodeurl()
      9cda8f7 Revert "ptest: use fakeroot for do_install_ptest_base"
      10c4f1b u-boot.inc: Add host compiler flags and openssl-native dependency
      29e94f6 build-compare: add support for examining deb and ipk packages
      3a9e230 classes/sstate: break out function to get sstate manifest filename
      2a05181 runqemu: avoid image file name mismatches
      c2165c9 u-boot.inc: Add U-Boot ELF install and deploy
      302ec46 connman: upgrade to 1.30
      08ec92a initramfs-framework: support dropping into shell on failure
      04f4ef9 initramfs-framework: support init boot parameter
      77524d7 initramfs-framework: support ro boot parameter
      d7508fe initramfs-framework: support rootflags and rootfstype boot parameter
      f9d2302 directfb: Avoid using VLAs and printf formats
      7d018a6 mdadm: Fix bugs exposed by clang
      0749e35 sudo: Disable rsize_t deliberately
      60a57c7 puzzles: Fix build with clang
      decbbac kexec-tools: Pass -r directly to linker
      5b97579 alsa-tools: Fix compiling with clang
      3d8fd2f latencytop: Fix build with clang
      c8f4822 ccache: Dont add LDFLAGS to compiler flags
      81d1508 bdwgc: Include signal.h instead of hard asm/sigcontext.h
      7e4cc98 minicom: Fix build with musl
      f03b36b man: Use -DSYSV when builing for linux
      0a67128 sudo: Include sys/types.h for id_t definition
      27a850a slang: Fix namespace conflict vis-a-vis posix_close
      5ee0383 irda-utils: Weak Define the build TARGETS
      18aaf65 bjam-native: build and install bjam.debug
      1f86887 gcc-5.2: remake 0040-nativesdk-gcc-support.patch
      1dbb37d bind: fix compile failure when building path is long
      48a144b sstate: only fetch remote signatures if verification is enabled
      f7056fa Revert "boot-directdisk.bbclass: use rootfs UUID by default"
      a2ec6d4 ptest: fix file ownerships in ${PTEST_PATH}
      e0543d1 runqemu: Define OECORE_MACHINE_SYSROOT on setup_sysroot
      30dc71d gnome-icon-theme: remove the recipe
      89118a3 pcmanfm: add an icon theme dependency
      a14c363 oeqa: Test failure/cleanup improvements
      4c73aaf perf: fix the install-python_ext
      d0abea0 packagegroup-core-nfs: provide the nfs-client IMAGE_FEATURES
      59f822d gstreamer1.0: Fix QoS/lateness checking if subclass implements prepare/prepare_list vfuncs
      f051f10 gstreamer1.0: Fix sticky events haven't been sent out when active track reach EOS
      9a24b6b externalsrc.bbclass: better filtering of cleandirs
      f0af24e buildstats: Outputs 'task recipe elapsed-time' from each buildstats' recipe
      9485888 devtool: make plugin_init optional
      996ec17 gnu-efi: Make setjmp.S portable to ARM
      53e09c5 scripts: Move BUILDDIR chmod fix after checks in oe-setup-builddir
      77523c0 gsettings-desktop-schemas: add a recipe from meta-gnome
      c52f71c gnome-desktop3: add a recipe from meta-gnome
      80ecafc libwnck3: add a recipe from meta-gnome
      e28a9f2 gcr: add a recipe from meta-gnome
      2096387 p11-kit: add a recipe from meta-oe
      f17e1da libwebp: add a recipe from meta-oe
      11e6aa6 libsecret: add a recipe from meta-gnome
      206049f ruby: add a recipe from meta-ruby
      5198ec9 libyaml: add a recipe from meta-oe
      4e661a5 wic-image-minimal: add wic image recipe and .wks
      32633f0 sanity.bbclass: remove abspath warning for SSTATE_MIRRORS
      44ae903 oeqa/runtime/date: stop systemd-timesyncd during test
      e20c9ea systemd: Implement OE-Specific systemd-sysv-install
      6814767 systemd: Upgrade 219 -> 225
      21fffde rootfs: Conditionally uninstall update-rc.d
      4cccac9 Revert "rootfs: Do not uninstall update-rc.d"
      d4585fa bsps: update 3.14 SRCREVs
      4460700 bitbake: toaster: Changes to navigation
      6271fcb bitbake: bitbake-worker: Handle SIGKILL of parent gracefully
      3195cd9 bitbake: bitbake-worker: Simple code cleanup
      85256c8 bitbake: prserv: SIGTERM and deamonization fixes
      289007e bitbake: utils: Add signal_on_parent_exit() function
      384533b bitbake: server/process: Handle SIGTERM more gracefully
      dae69e6 ptest: use fakeroot for do_install_ptest_base
      9bfaf59 oeqa/sstatettests: Improve output of assert
      79af375 bind: update to 9.10.2-p4
      e384b97 screen: backport to fix build error
      69b7a61 devtool: fix running from a different directory
      7b1f670 devtool: add package plugin that lets you create package via devtool
      6d50a5e devtool: update-recipe: add a warning when recipe is inside the workspace
      3dd9fc3 devtool: update-recipe: better 'auto' mode
      0d0e508 devtool: Allow disabling make parallelism on build command
      1a72181 devtool: Create a single file for the build devtool feature
      8be95c5 devtool: add upgrade feature
      7cde0eb devtool: improve modified file preservation to handle directory structures
      ee0c11d scriptutils: split out simple fetching function from recipetool
      3690281 devtool: modify: enable do_shared_workdir for kernel
      baf39c8 kernel.bbclass: do not mv/link sources when externalsrc enabled
      0ec0b17 kernel-yocto.bbclass: do_kernel_metadata depends on do_unpack
      07ac146 extrernalsrc.bbclass: treat kernel meta like local source
      08e0922 adt-installer: upgrade to opkg 0.3.0
      dd075b9 oeqa/parselogs: Updated log error whitelist.
      8a2edb9 binutils: Add thunderx support to gas
      8ad2c02 linux-yocto/3.14: fix edgerouter (octeon) build
      e87c182 qemurunner: Fix killpg pid usage
      335260c qemurunner: Ensure runqemu doesn't survive SIGKILL
      79bf3f7 rootfs.py: show intercept script output in log.do_rootfs
      525979f package_manager.py: search provides when not found by pkgname
      4031de5 wic: round variable before converting to int
      a0590d1 rootfs: Do not uninstall update-rc.d
      697428c busybox: Enable getopt applet
      e3b5d8f qemurunner: Drop error to a warning to improve user feedback
      fa2f7f9 qemu: Add fixes for smc91c11 qemu segfaults on arm
      ee428e2 devtool: add mechanism for updating extensible SDK
      2aaa59e oe-publish-sdk: add script
      ad95963 Extensible SDK: allow for installation without preparing build system
      9f670d1 populate_sdk_ext: don't remove the native qemu dependencies
      164136d populate_sdk_ext: consider custom configuration in local.conf
      d7efdfe copy_buildsystem: make sure bitbake directory is copied
      479deeb populate_sdk_ext: install the latest buildtools-tarball
      16d0df5 classes/populate_sdk_ext: avoid poky-specific buildtools naming
      4587180 toolchain-shar-extract.sh: explain why we cannot use sudo in extensible SDK
      08d0735 toolchain-shar-extract.sh: better default install path for extensible SDK
      f5f9185 toolchain-shar-extract.sh: ensure extensible SDK install path obeys restrictions
      6b41b7c testimage: handle SIGTERM to conclude runqemu
      e570b32 postinst_intercept: allow to pass variables with spaces
      ae00b59 rootfs.py: Allow to override postinst-intercepts location
      db92bc2 bitbake: toaster: replace ETA with % of tasks done
      c386abc bitbake: toaster: fix project names in latest builds
      a4dbd4b bitbake: toaster: remove unnecessary white space
      1e9ac4c bitbake: toastergui: Add missing files from 1c2f6b9b7b9e700146944b9d6d2114e0d014ee81
      c1df471 pseudo_1.7.3.bb: New version of pseudo
      e3feac1 sstate: implement basic signing/validation
      3bafddb libinput: avoid --enable-event-gui=auto
      afcd243 cross-canadian.bbclass: typo fix in comments (s/repsonsible/responsible/)
      3b823fe boot-directdisk.bbclass: use rootfs UUID by default
      6d7bcd4 boot loader: support root=UUID
      5d79814 image-vm.bbclass: support specifying an initramfs
      95bfdce image-vm.bbclass: avoid duplicating syslinux default values
      82dd3fb initramfs-framework: handle kernel parameters with . inside
      8582791 initramfs-live-boot: create /dev/console
      cc9ff1a initramfs-framework: create /dev/console
      8215c42 runqemu: support full-disk images
      9337ce2 oprofileui: Use inherit gettext
      4925fa0 oeqa/decorators: Fixed a problem with tests having the same names.
      e59b817 libunique: remove the recipe
      924348d report-error: send only last 5242000 characters in error logs
      466eee6 procps: fix for base_sbindir == sbindir
      1e9ed16 nfs-utils: don't force use of /sbin as sbindir
      73a6fe9 pcmciautils: handle udev dir being 2 levels below /
      b7a6484 bluez: handle udev dir being 2 levels below /
      d1c2b4d pulseaudio: handle udev dir being 2 levels below /
      d13bbbe alsa-utils: handle udev dir being 2 levels below /
      cfdf5d4 systemd: remove hard-coded paths in FILES entries
      cf5704e busybox: fixes for when base_bindir != /bin
      ef0fe31 oeqa: Test failure/cleanup improvements
      3d81a56 tcmode-default: Set gcc 5.2 as the default
      a024631 bitbake: bb.fetch: don't remove the clone when an update fails
      ba50c2f bitbake: bb.fetch: handle checksums consistently for mirrors
      abba11d bitbake: bb.fetch.git: remove leading '.' from gitsrcname
      7c4fdb8 bitbake: bb.cookerdata: include useful traceback for ExpansionError/ParseError
      5fe590c bitbake: bb.data_smart: retain traceback from ExpansionError
      7ef2f95 bitbake: cooker/runqueue: Allow bitbake commands starting with do_
      ccc1d9a bitbake: toaster: improve explanation of checkout dir
      4b9de76 bitbake: event/server: Add _uiready flag to handle missing error messages
      7c07946 bitbake: utils: Fix a potential error in movefile
      ea3384e qemu: Fix qemu_cpu_kick_thread on init
      92f68b4 package_regex.inc: various updates to improve RRS accuracy
      5799269 vte: add RECIPE_NO_UPDATE_REASON
      e874dd2 remake: update to 4.1+dbg-1.1
      5effdb3 python-smmap: update to 0.9.0
      ed77a00 python-async: update to 0.6.2
      ff100fd6 mkelfimage: add RECIPE_NO_UPDATE_REASON
      bf362e4 net-tools: update to 1.60-25
      1f5e747 mailx: update to 12.5-5
      d025e78 ccache: update to 3.2.3
      fac0d67e testimage: filter proper test cases by tags
      1efd172 gcc-target.inc: Remove non-related gcc headers from include_fixed folder
      2b6218d devtool: run kernel dependencies
      3b3f9bb devtool: extract: correct initial rev for kernel packages
      9e9fd09 devtool: make required tasks be run in kernel build
      5cf3420 ifupdown: create alternative links
      bf18f8a ifupdown: import recipe
      338c325 lib/oe/package_manager: Include PACKAGE_FEED_PREFIX instead of hardcode paths
      7f93052 libunwind: Security Advisory - libunwind - CVE-2015-3239
      1362986 sdk.py: fix conflicts of packages
      635d385 image.bbclass: add rootfs_check_host_user_contaminated
      2d49767 insane.bbclass: add host-user-contaminated test
      b95c340 insane.bbclass: handle tests which need fakeroot
      31c231c binutils: Fix symbols with --dynamic-list when using gold linker
      bc6a1a2 bitbake: toaster: Add tests for pages which show the default project
      3b6d193 bitbake: toaster: Fix test for projects page JSON
      3b233fc bitbake: toaster: Exclude default project unless it has builds
      c9a05be bitbake: toaster: Only redirect to projects page if user has added projects
      214ba67 bitbake: toaster: Improve how default project is identified and fetched
      5b26bbd bitbake: toaster: Make 0021 migration compatible with MySQL
      24d6d3f bitbake: toaster: show incomplete configuration warning
      249f366 bitbake: toaster: disable build button as needed
      c80b582 debianutils: create package for run-parts
      d8caef4 Fix recursive mode -st on BUILDDIR setup
      4287e5e qemu: enable alsa only if in DISTRO_FEATURES
      097f36f qemurunner: Handle lack of data on run serial gracefully
      a3fec07 image.py: rename _write_env -> _write_wic_env
      791a391 wic: fix short variable names
      14b47e2 wic: get rid of listing properties
      1561970 wic: fix pylint warning redefined-builtin
      e7287e5 wic: fix pylint warning unused-variable
      e3a062a wic: fix pylint warning no-member
      e85f807 wic: use optparse instead of cmdln
      f1bcf47 wic: fix pylint warning multiple-statements
      0fc551e wic: get rid of wildcard imports
      c987683 wic: fix errors in partition.py module
      90486ff wic: remove micboot.py
      282fb04 wic: remove micpartition.py
      2e2ac0c wic: fix typo
      4fd65df wic: add test cases for 3 images
      bf41b06 oe-selftest: wic: configure a build
      7d4bb40 wic: get rid of scripts/lib/image
      77561e7 wic: use ext4 in canned .wks files
      2e7e720 sysstat: add systemd service files
      1031ae3 valgrind: enable rt_sigpending syscall on ppc64 linux
      a346a3c kernel.bbclass: add the runtime dependency on kernel-vmlinux for kernel-image
      fc6e967 iproute2: upgrade to 4.1.1
      636d247 insane.bbclass: Check for invalid characters (non UTF8) on recipe metadata
      275fc5f screen: fix parallel build failure
      3dd8c75 libnotify: add (R)PROVIDES/RCONFLICTS/RREPLACES for meta-gnome's libnotify
      ae69b1f mtd-utils: add xattr PACKAGECONFIG and fix acl dependency
      d0b71dd libvorbis: remove legacy options
      59c7c7b package_manager: support for signed RPM package feeds
      3983e3f os-release: add the public package-signing key
      752736a package_rpm: support signing of rpm packages
      103f0e5 createrepo: disable RPM signature validation
      16bda74 pulseaudio: add 'autospawn-for-root' PACKAGECONFIG
      7e11e81 pulseaudio: pass --with-systemduserunitdir
      52b75fc packagegroup-core-x11-sato: obey the pulseaudio distro feature
      a2b0d04 runexported: Make it compatible with host dump
      53ab41a qemurunner: Added host dumps when there are errors
      170b89d glibc: package nscd related files
      3d75914 bitbake.conf: add MIRROR vars to SRC_URI vardeps
      b5c6675 python: Fix python-distutils variables
      3e6a5af python3: Fix python-distutils variables
      d6b1171 opkg: upgrade to v0.3.0
      ab50b1d libevent_2.0.22.bb: Add native and nativesdk support to the recipe.
      f321655 bitbake: utils: Specify dest file name in movefile()
      383450c bitbake: build: delete tasks thoroughly
      71b0568 rt-tests: drop unnecessary added-missing-dependencies.patch
      0491a7e openssh: Upgrade 7.0p1 -> 7.1p1
      e444e84 dpkg: update to 1.18.2
      eb45cd6 cmake: update to 3.3.1
      bb72a86 package_regex.inc: updates to improve upstream tracking
      ca1497b e2fsprogs: explain why there is no update for now
      5e79211 libnotify: don't inherit unnecessary distro_features_check
      abd9ae9 dropbear: update to 2015.68
      c19225a upstream_tracking.inc: deprecate and move contents to recipes
      8c40147 pulseaudio: improve PACKAGECONFIG for dbus/consolekit dependencies
      b9cdd11 mirrors.bbclass: Update gnutls mirrors
      2eb4b1e gnutls: Upgrade 3.3.14 -> 3.3.17.1
      3a37c43 nettle: Add ptests
      38f4e92 nettle: Add (LGPLv3) version 3.1.1
      6fac60d gmp: Bring back version 4.2.1 (LGPL 2.1+)
      b9ade91 nettle: Fix binary license to LGPLv2.1+
      cd61c1a Fix mode +st on TMPDIR when creating it
      79de172 packagegroup-base: pull in iw as well as wireless-tools
      464f4e2 iw: support and enable separate build dir
      fbb8b53 iw: obey our target path variables
      eced780 iw: inherit pkgconfig
      fc4a209 iw: add recipe from meta-networking
      e8769bf bitbake: toaster: new Toaster image
      3e27f92 bitbake: toastergui: remove old screenshots
      22afc04 oe-selftest: test devtool build-image plugin
      15526a8 devtool: build-image: add comments
      2dac49d devtool: build-image: remove <image>.bbappend
      9672624 devtool: build-image: add extra logging
      45ebff4 devtool: build-image: generate notification callback
      61ecb6c devtool: build-image: filter out recipes
      214dd95 devtool: build-image: improve help and description
      e9fbc7a devtool: build-image: rename LOG -> logger
      7eb7dc8 Revert "devtool: make add_md5 a public API"
      71fdc64 devtool: make 2 functions public
      906f885 devtool: build-image: stop using add_md5
      beea25e oe-selftest: wic: fix test19_image_env test case
      67ed7c3 oeqa: Add allarch sstate sig test
      fc8ceb7 layer.conf: Add missing dependency for allarch package initramfs-framework
      7b421dc wic: use bitbake variable ROOTFS_SIZE
      4f7b72a oe-selftest: test building wic image by bitbake
      7c09401 wic-image-minimal: add wic image recipe and .wks
      7053414 oe-selftest: test generation of <image>.env
      7770281 image.py: write bitbake variables to .env file
      8a5eb20 oeqa/utils/dump: Handle empty commandlist gracefully
      0f84702 image_types.bbclass: add wic image type
      530f3c5 wic: implement --vars option
      5856f8f wic: implement getting variables from .env files
      d80ad23 wic: set default image
      95c6749 wic: add default_image attribute to BitbakeVars
      e1fe347 wic: create new method _parse_line
      58c3930 wic: add BitbakeVars class
      92c3f03 linux-yocto-3.14: Use a revision thats on the branch for qemuppc
      6b17c38 linux-yocto-3.14: Update to latest revisions
      b0db6c2 linux-yocto/3.14/4.1: fix ARM boot with gcc 5.x
      ac0b85d oeqa/runtime/multilib: add test for libc
      277571b oetest: Fix regresion when testing real hardware
      c78ba0d dump: allow to have datastore vars on dump commands
      85fd1a7 dump: Created new classes for dump host and target
      d14ffaf classes/buildhistory: add build result to commit message
      734411a classes/buildhistory: include metadata revisions in commit message
      2a08f4a classes/buildhistory: handle additional files at recipe level
      846cb34 classes/buildhistory: fix permissions in package file listing
      1bfae0f classes/buildhistory: tweak buildhistory_list_pkg_files
      5d34d32 classes/buildhistory: indent recently added function consistently
      ec412d5 classes/buildhistory: exclude . in file listings
      e6c330c classes/buildhistory: ensure we push when "no changes" commits are made
      9badc1c image.py: add script output to the rootfs log
      5bcc423 image.py: set bitbake variable ROOTFS_SIZE
      8313cea wic: deferred call of hlp.get_wic_plugins_help()
      31324ed wic: rename variable
      b41de12 wic: remove undescore from function name
      e79a22e python-distribute, python-setuptools: Migrate to good old python-setuptools
      48373be testimage: Run commands in target and host when test fails
      f9f1643 byacc: fix compilation on Ubuntu 14.04
      6874f5e autotools.bbclass: Allow dependency tracking option to be overridden
      4292352 runqemu-internal: Fixes unary operator expected in new TCPSERIAL_PORTNUM
      38bc164 linux-yocto-dev: update to 4.2-rc
      6e0a563 linux-yocto/4.1: CIRRUS config and quark thermal support
      474f66c linux-yocto/4.1: enable DRM_CIRRUS_QEMU and EXT4_USE_FOR_EXT23
      6dd4209 linux-yocto/4.1: update to v4.1.6 and v4.1.6-rt5
      d1d3b64 linux-yocto/3.14: cleanups and gcc5 ARM build fixes
      ad4ab1b linux-yocto/4.1: quark configuration and thermal support
      9815270 linux-yocto/3.19/4.1: add coretemp to intel-common-drivers
      de7e449 linux-yocto/4.1: fix qemuarm preempt-rt configuration
      9253e92 lib/oe/patch: handle patches that delete files with older git
      fc209e9 os-release: Exclude DATETIME from sstate signature
      4e02e5b layer.conf: Add several allarch dependency exclusions
      66b7dfb package_*.bbclass: Ensure OVERRIDES doesn't change sstate signature
      d105205 oeqa: Optimise sstate tests
      b749251 jpeg: update to version 9a
      650fe92 xf86-video-intel: fix missing fstat() prototype
      a91e6f6 libatomic-ops: move to recipes-support, fix recipe name
      3ffad2d libunwind: always depend on libatomics-ops
      a753bc7 nativesdk.bbclass: set sbindir to bindir
      67ecba4 update-rc.d.bbclass: explicitly dep on initscripts
      b3d8b37 image.bbclass: re-run do_rootfs when feature packages change
      641b2e2 bitbake.conf: set PATCHRESOLVE to noop by default
      51f95df bitbake.conf: set USE_NLS based on DISTRO_FEATURES
      83ac732 bitbake.conf: unexport SHELL
      06b97ac systemd: Cache/define tool paths for target
      2a9cf4d core-image-minimal: Add 4M extra space when using systemd
      f457c98 diffstat: Add TOOLCHAIN_OPTIONS to Linker calls
      a95269a liburcu: Fix atomic function parameter types in calls
      506c564 systemd: Remove exporting special CPP
      0630005 bitbake.conf: Define fallback DISTRO_NAME
      36e8f93 mdadm: Upgrade mdadm_3.3.2.bb -> mdadm_3.3.4.bb
      9d46958 psplash: Turn psplash_fb_plot_pixel() into static inline
      99e67db libvorbis: Update libvorbis_1.3.4.bb -> libvorbis_1.3.5.bb
      646a29c json-c: Include math_compat.c for NAN/INF values
      0053600 sysvinit: Fix makefile bug found with clang
      ff7a4ca cross-canadian.bbclass: support for TCLIBC="baremetal"
      443c59b libgcc-common.inc: overrides for libc-baremetal
      466684e gcc-cross.inc: overrides for libc-baremetal
      260aa52 gcc-cross-canadian.inc: overrides for libc-baremetal
      2dd0c1d tclibc-baremetal.inc: baremetal specific distro policy file
      c2591e1 alsa-lib: Lift the limitation to use gcc only cross compiler
      b2c1e64 devtool: implement build-image plugin
      69c6372 devtool: make add_md5 a public API
      491e86a harfbuzz: upgrade to 1.0.2
      5a5cf2c btrfs-tools: 4.1.1 -> 4.1.2
      1b00e85 tune-octeon.inc: add BASE_LIB settings
      7635c1f tune-octeon.inc: correct packaging suffix
      b5b3085 oprofile: 1.0.0 -> 1.1.0
      79431e8 gnu-efi: 3.0.2 -> 3.0.3
      db1b3df gnupg: 2.1.6 -> 2.1.7
      14d4445 bitbake: toastergui: Add frontend javascript unit tests
      ab9644f bitbake: toaster: fix global navigation
      ae329b7 bitbake: toaster: adjust spacing in project pages
      7957e1f bitbake: toaster: fix show / hide columns in all builds table
      8e1f080 bitbake: toaster: Support environments which have proxies set
      ce2a827 bitbake: toaster: Remove Log column from All builds page
      f454fc5 bitbake: toaster: Fix extra checkbox in most recently built recipes section
      d45ab49 bitbake: toaster: update directory tree expansion
      294948c bitbake: lib/bb/cooker: add interrupted flag to BuildCompleted event
      7ee503e bitbake: toastergui: change image in landing page
      1fa9a0c qemu-native: Enable temporary debug info as default.
      995b6d6 systemd: Increase devices timeout in QEMU machines to avoid failures on serial-getty
      70b45d6 gcc-source: exlude from world
      0cd5d6d Empty image: filesystem allocation
      9b6bf6a Empty image: package list splitting and iteration
      013f762 oeqa/runtime/multilib: fix and improve multilib test
      f44e043 qemuarm64.conf: Make the second serial console /dev/hvc0
      a8a061b sysvinit-inittab: Run ttys on ttys that don't have tty in the name
      5c0e6f8 bind: remove dependency on bind in bind-dev
      1e8d038 qemurunner: Don't loop on EWOULDBLOCK in logging thread.
      63340ae runqemu-internal: Make sure tcpserial is always last
      6de522e runtime/syslog.py: fix syslog test crash
      393bd74 oeqa/oetest.py: add better package search for hasPackage()
      315fb4c qemurunner: In the logging thread retry on EAGAIN, EWOULDBLOCK
      778fc61 libnotify: update to version 0.7.6
      55077ea qemurunner: Shut down logging thread successfully when test fails
      15c8835 yocto-bsp / yocto-layer: fix template recipes
      790b229 README.hardware: drop mention of binary-only drivers
      e6a917d layer.conf: Increase layer version to 6
      bb34181 bitbake: lib/bb/main: avoid importing all server/UI modules on every execution
      d893a25 runqemu: Add a tcpserial option
      fd164dc qemurunner: Use two serial ports and log console with a thread
      8d05d8a qemurunner: Make create_socket() return data and use exceptions
      62585cf qemurunner.py: Move some class variables that should only be local
      8754a00 libcap-ng: add package 0.7.7
      20c6c72 swig: add package 3.0.6
      6b0768e xf86-video-intel: enable xvmc feature by default and fix dependency
      311c428 package_rpm.bbclass : escape "%" in files and directories name
      e062f01 packagegroup-qt*-toolchain-target: fix hard dependency on phonon library
      0f42566 service: tweak example recipe
      fde9969 hello-mod: drop PV and PR
      21f9844 oe-selftest: replace assertTrue(False, ...) with fail(...)
      d114b56 classes/insane: fix QA check message referring to nativesdk
      025f759 scripts/create-recipe: drop
      bb00ebc man-pages: update to 4.02
      37b73ce lsbinitscripts: Upgrade 9.63 -> 9.64
      b3db1f3 lsof: Upgrade 4.88 -> 4.89
      c95e205 gstreamer1.0-plugins-*: Remove unused GSTREAMER_1_0_ORC variable
      d51f314 gstreamer1.0-plugins: Ensure the native OE orcc is used
      e4522a8 iso-codes: add a recipe from meta-oe
      fdc8267 glib: add a warning suppression patch to glib
      c89a1eb classes/cmake: add arch conversion routine
      2b46af7 harfbuzz: enable icu feature
      429985c classes/gnomebase: change tarball compression to xz
      7ce9209 perl: Undefine finitel for uclibc
      aced11f kernel-arch: Force BFD kernel when using gcc for linking
      a6a0251 libinput: Upgrade 0.18.0 -> 0.21.0
      e4cb847 wic: Test creation of iso image
      1308e30 wic: add mkhybridiso kickstart file
      de5bc1b wic: Add plugin for hybrid iso image
      5c44238 parted: set VERSION number same as recipe's version
      f62afbf glibc: use cross-rpcgen to replace host's rpcgen
      ee80b72 openssh: build regression test binaries
      1993c1f json-glib: inherit gnomebase instead of gnome
      9697c58 gnome: move introspection options to gnomebase
      e01f40f json-glib: enable native builds
      a044db9 multilib: let pkg-config find architecture-independent .pc files
      a3d228a bitbake: main: Handle RuntimeError exception in list_extension_modules
      a01a33b linux-yocto-3.14: Update to branch HEADs
      6b8bb44 genericx86*: Update BSPs to use 4.1 Kernel
      6f176d4 bitbake: toastergui: fix projectbuilds page
      ab13498 bitbake: toastergui: do not show in-progress builds in the table
      25d4a35 bitbake: toaster logger: fix pylint issues
      c9455a7 bitbake: toaster: fix pylint errors
      07b58c9 bitbake: toaster: fix updates on failed build requests
      242603e bitbake: toaster: replace raising Exceptions in loadconf
      c159b3c bitbake: toaster: do not stop data import on bad data
      be4636a bitbake: toastergui: rename variables in views.py
      12c9cca bitbake: toaster: use loggers instead of prints
      d18e630 bitbake: toaster: models field initialization
      504396f bitbake: toaster: improve exception handling
      99730d6 bitbake: toaster: checksettings: fix TEMPLATECONF detection
      3a1af07 bitbake: toaster: checksettings: fix guesspath initialization
      98dfa27 bitbake: toaster: pylint fixes
      c8df847 bitbake: toasteruitest: Updated UI tests cases to use dom IDs and 1.9 UI changes
      55f13d4 bitbake: toastergui: Call csrf function in all pages to ensure cookie is sent
      ae7d048 bitbake: bitbake-layers: show-recipes: allow filtering by class inheritance
      a3967e2 bitbake: bitbake-layers: fix mapping files to layers
      22e8c6c bitbake: bitbake-layers: remove-layer: accept just layer directory
      c4989e7 bitbake: bitbake-layers: ensure we exit if BBLAYERS_LAYERINDEX_URL is not set
      5807ab3 bitbake: lib/bb/main: consolidate UI/server extension listing and loading
      9b05ef5 bitbake: lib/bb/parse: properly handle OSError when updating mtime cache
      9706775 bitbake: bitbake-layers: use "with open" consistently
      90d97f7 bitbake: bitbake-layers: refactor show-appends to stop using cooker bbappends list
      67a6a4d bitbake: bitbake-layers: Convert flatten to use collections.bbappends
      3c3ff92 bitbake: cooker: drop appendlist
      b84bf58 bitbake: cooker: drop appliedappendlist
      e2ddc18 bitbake: Fix -m handling if cannot connect to server
      7ce27b9 bitbake: cooker: ensure prefile/postfile can work in memory resident mode
      37a2c06 bitbake: command: ensure sync commands that read configuration see updates
      6e5ac6b bitbake: cooker: further limit inotify watches
      e0daf78 bitbake: command: intercept SystemExit to avoid trashing the server
      715d857 bitbake: Fix default function parameter assignment to a list
      22a653d binconfig-disabled: write an message to stderr to help confused developers
      c0dd559 oeqa/targetbuild: Remove bashism
      c1e7995 glibc-package: use ${PN} in INSANE_SKIP
      a21b047 rpm: opendb before rpmverifyscript to avoid null point input
      7ed4a91 u-boot.inc: Add UBOOT_BINARY sym links for UBOOT_CONFIG types
      d4618ff packagegroup-core-standalone-sdk-target: remove qemuwrapper-cross
      dd7b869 toolchain-shar-extract.sh: add a space in the end
      b961402 tune-octeon: add tune file for MIPS Octeon
      86559e1 binutils: Add MIPS Octeon3
      0f23a3a lib/oe/recipeutils: avoid parsing in get_var_files()
      677e8c8 devtool: fix handling of BBCLASSEXTENDed recipes
      48bb9ec devtool: extract: remove patches subdirectory when S == WORKDIR
      5e88067 devtool: extract: prevent externalsrc from interfering with extraction
      1019d8c package_deb.bbclass: Allow UTF-8 characters on control files
      3898cc3 valgrind: build ptests without optimizations
      c8b8749 openssh: Upgrade 6.9p1 -> 7.0p1
      050629c gdk-pixbuf: Security Advisory - gdk-pixbuf - CVE-2015-4491
      09ad7ca lz4: update to 131
      76d7e8e archiver.bbclass: Run deploy_archives in $WORKDIR
      d6eb9cc uclibc: Upgrade to tip of master
      71e1835 lzop: Fix build with gcc5 on ppc
      de17216 libunistring: Upgrade recipe 0.9.4 -> 0.9.5
      a334395 guile: Specify directories to find proper libunistring, libgmp and libltdl
      625e0ec glibc: Consider adding -Wno-error in cases when not using -O2
      b7cd768 canned-wks: added a qemux86* directdisk recipe for wic
      3aaea35 image_types.bbclass: allow replacing tar command
      3753b51 tar-replacement-native: relocate via NATIVE_PACKAGE_PATH_SUFFIX
      a56d7e9 qemu: upgrade to 2.4.0
      c348fa5 bitbake: toaster: move code from setup_lv_tests to setUp
      e5956a6 bitbake: toaster: remove ProjectLVSelectionTestCase
      5638321 bitbake: toaster: add header to orm/test.py
      50f9e20 bitbake: toaster: simplify testcase code
      552b1fe bitbake: toaster: remove duplicated code
      1f7d7bf bitbake: toaster: reuse common code
      958696f bitbake: toaster: reformat LayerVersionEquivalenceTestCase
      d637b91 bitbake: toaster: rewrite LILSUpdateTestCase
      344ad2e bitbake: toaster: rewrite test for LayerSource model
      11668e2 bitbake: toaster: fix test_build_layerversion test case
      77ca551 bitbake: toaster: remove prints from the test code
      645435a bitbake: toastergui: Added IDs to elements used in testing
      91d8f88 bitbake: toastergui: Add tests for xhr_importlayer
      c9d1cb2 bitbake: toaster: fix invalid fields in the package details page
      8ab2101 bitbake: toaster: Fix typo in set up script output
      783a76d adt-installer: use DEPLOY_DIR in ANT_DEPLOY expansion
      cbf8dcc mtd-utils: keep xattr support enabled
      dd8e385 package_regex.inc: fix regexes for adwaita-icon-theme, cairo and dhcp
      918379a puzzles: switch svn for git, as upstream has done the same
      6e1f77c tremor: update to 20150107 (svn r19427)
      a25e8bd quilt: fix the deps for ptest
      be158c8 curl: upgrade to 7.44
      330340f libpfm4: Fix GNU_HASH warning.
      e623c10 screen: Upgrade 4.0.3 -> 4.3.1
      b3ec91d glibc: Package libmvec when built
      cb7368c glibc: Upgrade 2.21 -> 2.22
      0183d7c openssh: Upgrade 6.8p1 -> 6.9p1
      00b7ea6 apmd: update to 3.2.2-15
      5b9f451 blktool: update to 4-7
      7cc816b build-appliance-image: use ext4 for rootfs
      407d156 IMAGES_FSTYPES: default to EXT4
      857da08 oetest.py: Don't wait to write dump files
      9c72c1a oetest.py: Added method tearDown for oeRuntimeTest
      51d8e8f qemurunner.py: Performance improvements in run_serial
      c0c463b qemurunner.py: Added raw mode in run_serial
      a5bfa11 qemurunner.py: Added login to start method
      78e1c4f qemurunner.py: Add method run_serial
      7ffb660 gnu-efi: BBCLASSEXTEND to native
      73a876e qemu-native: Add debugging when qemu fails with qemu_cpu_kick_thread
      6b16689 bash: append srcdir to run-ptest script
      a62e073 systemd: update SRC_URI
      4c35cd9 create-pull-request: cleanup bashisms
      f535efb valgrind: Fix build with glibc 2.22
      0e05155 librsvg: Upgrade 2.40.9 -> 2.40.10
      a111555 nss: Upgrade 3.19.1 -> 3.19.2
      d2164b7 mc: Fix QA warning depends on util-linux
      97105c4 attr: narrow fix_symlink to populate_sysroot
      07cbc40 meta-yocto-bsp: mpc8315e-rdb: Set KERNEL_DEVICETREE to mpc8315erdb.dtb
      db8886d distro/include: Move files to OE-Core for support distrodata
      95683e6 tzdata: update to 2015f
      6754469 tzcode-native: update to 2015f
      fd3dd25 kernel: Correct mishandling of linux.bin for building uImage
      522af4f uclibc.inc: remove unused UCLIBC_EXTRA_LDFLAGS
      c8b7f09 lib/oe/package_manager: fix opkg feed generation
      d7581de upstream_tracking.inc: add no update reasons for base-passwd and chkconfig
      6a024c2 distrodata: Make self-contained.
      a533776 perf: fix build breakage on kernels after 4.1
      0f7df92 clutter-gst: update to 3.0.8
      161180b Revert "base.bbclass/blacklist.bbclass: remove doc item when d.getVarFlags()"
      d6d7494 fotowall: update SRC_URI to use github instead of qt-apps.org
      bda0ac2 distcc: update SRC_URI to not use Google Code
      5b1d7ca xf86-video-omapfb: switch SRC_URI to debian git repo
      b638fb2 stress: use BPN and BP in SRC_URI
      be79a17 texinfo: Upgrade 5.2 -> 6.0
      a7aab66 qmmp: Upgrade 0.8.5 -> 0.8.6
      0a662f2 libepoxy: Upgrade 1.2 -> 1.3.1
      6d8ace0 autogen: update to 5.18.5
      9d32d93 apt: update to 1.0.10.1
      654ac86 bluez5: update to 5.33
      514077b cdrtools: update to 3.01a31
      072330d nettle: clean up license information
      44ee875 packagegroup-core-sdk: Disable sanitizers on musl
      69790b0 cml1.bbclass: make menuconfig task configurable
      d2598bf oeqa/selftest: remove tests for TCs that are no longer valid
      61fe46d kernel.bbclass: dont assume ${B}/include/generated exists
      f820d02 sanity.bbclass: check SSTATE_DIR, DL_DIR and *MIRROR for broken symlinks
      9d8a725 gstreamer1.0-plugins-base: Need more buffers in output queue for better performance
      e9a3cfa gstreamer1.0-plugins-base: Set need_segment after sink pad receive GST_EVENT_SEGMENT
      96cc8de gstreamer1.0-plugins-base: Enhance SSA text lines parsing
      41792fe gstreamer1.0-plugins-base: Don't set async of custom text-sink to false
      48cfaec gstreamer1.0-plugins-base: Make memory copy when video buffer's memory is read only
      19c96d7 gstreamer1.0-plugins-base: Do not change EOS event to GAP event
      f0f8f90 gstreamer1.0-plugins-base: Keep sticky events around when doing a soft reset
      30e6657 gstreamer1.0-plugins-base: Fix output buffer can't writable after frame_map() issue
      ec5d33a gstreamer1.0-plugins-base: Update video alignment after video alignment
      9a5a62a gstreamer1.0-plugins-base: Handle audio/video decoder error
      bda68cc gstreamer1.0-plugins-base: Bug fix for id3demux issue
      1f156ab gnu-config: Update git version to latest and use it
      a71ef70 wpa-supplicant: Fix CVE-2015-4142
      3b7a062 weston: improve parallel make race fixes
      a8804b1 bootchart2: update to 0.14.7
      627d183 mesa-demos: Fix dependency for 'vg' support
      a16e0b4 bitbake: toaster: reduced amount of instance attributes
      5fe1c19 bitbake: toaster: fix pylint warning 'no space allowed'
      27a483d bitbake: toaster: fix test_get_json_call_returns_json again
      3ba3cf2 bitbake: toaster: don't catch json.load exceptions
      b3ab9b1 bitbake: toaster: add header and docstings
      8ee14d5 bitbake: toaster: remove unused import
      91fea09 bitbake: toaster: get rid of class attributes
      8af82c2 bitbake: toaster: put all test cases into one class
      2f8c8e4 bitbake: toaster: get rid of AllProjectsViewTestCase
      13e0417 bitbake: toaster: wrap long lines
      9e3c0ee bitbake: toaster: fix test_get_json_call_returns_json test
      0b80ef5 bitbake: runqueue.py: Add provides to taskdepdata
      9527cd0 bind: upgrade to 9.10.2-p3
      309982f recipeutils.py: allow all characters in regexes used to parse version strings
      aa8225f oprofile: reorder SRC_URI lines to fix upstream version check
      13dce7c gptfdisk: update to 1.0.0
      34b59db mesa: upgrade 10.5.8 -> 10.6.3
      fbe44c4 xf86-input-vmmouse: Upgrade 13.0.0 -> 13.1.0
      f0ad4ce pulseaudio: Add systemd to PACKAGECONFIG if enabled in DISTRO_FEATURES
      3255d00 systemd.bbclass: Use systemd_system_unitdir
      319a69f bitbake.conf: Add nonarch_libdir and base systemd vars on it
      6617347 bootimg.bbclass:iso: determine the -iso-level only if there is a rootfs
      d00f88b bash_3.2.48: dont include target CFLAGS in host LDFLAGS
      101fac5 ca-certificates: Update 20141019 -> 20150426
      7137a31 uclibc: backport upstream fix for SH4
      670244e libiconv_1.11.1: merge build and packaging fixes from libiconv_1.14
      2601d52 libiconv_1.11.1: fix LICENSE declaration, LGPL -> LGPLv2.0
      5d03ba2 gettext_0.16.1: add -lrt and -lpthread to LDFLAGS for uclibc builds
      c66aca7 gettext_0.16.1: remove obsolete uclibc specific patch
      3893a4f which: Upgrade 2.20 -> 2.21
      d70a3db vte: Fix LICENSE to LGPL2.0
      acc0af6 fontconfig: Upgrade 2.11.93 -> 2.11.94
      0bf30e5 gtk-icon-utils-native: Upgrade 3.16.4 -> 3.16.6
      3205b86 gtk+3: Upgrade 3.16.4 -> 3.16.6
      f41818c gstreamer1.0-plugins-base: Enable pango packageconfig by default
      38d5255 initscripts: Fix regression for requiring /bin/bash
      8b83808 qemu: upgrade to 2.4.0-rc4
      b698e2e libinput: add configure arg and PACKAGECONFIG for libunwind
      fcc3afc cups: upgrade to 2.0.4
      5f1615e resolvconf: upgrade to 1.77
      c4040ea binutils: 2.25 -> 2.25.1
      31eb386 qemu: add ptest sub-package
      800ebee rt-tests: fix redo install error
      44bbb40 bash: 4.3 -> 4.3.30
      280a895 libcheck: 0.9.14 -> 0.10.0
      9d162de file: 5.23 -> 5.24
      9170c34 git: 2.4.6 -> 2.5.0
      a9b41db boost: add python3 support
      c75cefe libpam: Fix patch broken during upgrade
      ad841db security_flags.inc: disable -pie and -fpie from Python3 compilation.
      9b97a06 wic: release 0.2.0
      8ce8328 wic: code cleanup: pylint misc.py
      8421e0e wic: code cleanup: remove unused code
      87a846d wic: Report recipe name for native commands
      daa8109 wic: Improve 'wic help overview' content
      04c5307 wic: improved usage text
      57b3e39 stress: update checksums to match upstream tarball
      da0f503 create-pull-request: cd to relative directory
      d31f89b wpa-supplicant: Fix CVE-2015-4141, CVE-2015-4143, CVE-2015-4144, CVE-2015-4145, CVE-2015-4146
      177d463 xf86-video-intel: fix yocto/oe-core wreckage from libdrm upgrade
      37e7846 oeqa/qemurunner: Improve runqemu log output debug
      0968e3a runqemu: Handle device names like tapX@NONE
      8020a9e runqemu: Add error handling for unexpected tap devices
      ecec4af weston: Fix parallel make race
      8b847ff combo-layer: fix action_pull for unknown branch
      b2a0c2f combo-layer: enhance output in action_pull
      0658434 qemurunner: Improves checking for server and target IPs on qemus parameters
      58197f3 bitbake: toastergui: layerBtn Fix build trigger mechanism
      a65099e bitbake: toastergui: Fix typo on layers in project filter condition
      5194f04 bitbake: toastergui: Move click disabled check after table ready event
      c1993d0 bitbake: toastergui: Machine select button url parameters change
      b12e51c bitbake: toastermain: Add a longer default database timeout
      af72d0f bitbake: toastergui: Move layerdetails view definition to the views.py
      da4c663 bitbake: toastergui: Fix toastertable table header reference
      e616c20 bitbake: toastergui: libtoaster typeahead Add in results highlighter
      aad3800 bitbake: toastergui: libtoaster: typeahead resiliency for slow server
      0494a27 bitbake: toastergui: tests Fix and more comprehensive typeahead unittest
      4d7944d bitbake: toastergui: views Standardise the fields project layer response
      951e40d bitbake: toasterui: views Remove unused xhr_typeahead view definition
      1e7707b bitbake: toastergui: libtoaster Throw an exception no url is specified
      aff29d2 bitbake: toastergui: Switch to using the new toaster typeahead widget
      73367c2 bitbake: toastergui: Add typeaheads layers, machines, projects, recipes
      f4e51ff bitbake: toastergui: widgets Add a typeahead widget
      68128ad bitbake: toastergui: tables Use util functions for the common querysets
      c4e7113 bitbake: toaster: orm Add util functions to return common querysets
      d3b9927 bitbake: toaster: orm Add util function to return the url to layerversion
      c8bc7ee bitbake: toastergui: add action to empty "most built" recipes
      1a0fa6c bitbake: toastergui: fix spacing in the import layers page
      0378aad bitbake: toastergui: remove project name from layer change notification
      69c6f1f bitbake: toastergui: change link styles in alert-info
      569567d bitbake: toastergui: breadcrumb fixes
      d47358f bitbake: toastergui: spacing and top nav style change
      a8b7234 bitbake: cooker: Resolve file monitoring race issues when using memres bitbake
      55c662d builder: Fix multilib compile failure
      22078d5 bitbake: bb.parse: properly error out on filesystem errors
      75fc6bf bitbake: bb.cookerdata: don't show traceback for ParseError/ExpansionError
      d2bf05f perl: fix build failure if building dir has the "blib" string
      aaf1033 rootfs.py: fix PRE/POSTPROCESS_COMMANDS for rpm and deb
      10196e3 python3: delete patches that don't get applied anywhere
      b5e9dbb python3: remove 2to3 symlink from package python3-2to3
      0b69680 python3: remove package python3-robotparser
      3c53a2b python3: detect libraries in STAGING_LIBDIR
      016f5ae builder: fix USERADD_PARAM
      f292979 useradd_base.bbclass: do not warn when the user exists
      fd92142 useradd_base.bbclass: print PN when bbnote/bbwarn/bbfatal
      b741780 base.bbclass/blacklist.bbclass: remove doc item when d.getVarFlags()
      1df8af4 base.bbclass: move invalid PACKAGECONFIG checking to insane.bbclass
      6087a04 busybox: enable support for sha1sum and sha256sum applets
      40d64a5 busybox: support mount via label for btrfs and squashfs
      a2fad2b busybox: disable fatattr in defconfig
      6618cb4 busybox: disable sha3sum in defconfig
      35f02c9 busybox: refresh defconfig for busybox v1.23.2
      7ea9595 busybox: re-order defconfig to align with busybox 1.23.2
      be79846 busybox: remove CONFIG_FEATURE_VI_OPTIMIZE_CURSOR from defconfig
      52328c2 dhcp: fix installed not shipped warning for lib32
      5398b9d populate_sdk_ext: pass BBPATH to devtool --bbpath
      84ad12e devtool: add --bbpath argument
      2251f71 populate_sdk_ext: use lnr, not ln -sr, for portability
      d16b62f python-scons: 2.3.4 -> 2.3.6
      e91ce72 kexec-tools: 2.0.9 -> 2.0.10
      020f33c mpfr: 3.1.2 -> 3.1.3
      d0be3ae libmpc: 1.0.2 -> 1.0.3
      e87b533 opkg: solve inconsistency of using different lists directories
      5c76072 base.bbclass: Note when including pn with INCOMPATIBLE_LICENSES
      445c49c init-install-efi.sh: Check if an installation device is present
      e4a4c9b bitbake: bitbake-user-manual-fetching.xml: note about URLs with semi-colons
      7f4eb55 bitbake: bitbake: toaster: Add is_image field to the Recipe model
      9be8ea6 bitbake: bitbake: toaster: Uncomment logging messages
      79c8ffa bitbake: bitbake: toaster: get rid of _createdirpath function
      3b6e5df bitbake: bitbake: toaster: Fix usage of wrong variables
      a403ddb bitbake: bitbake: toaster: Wait for toaster gui to come
      e68370c bitbake: bitbake: toastergui: Toastertables don't replace dash in cache key
      6520feb bitbake: toaster: toastergui: run pylint on the toaster files
      1da5e0a bitbake: toaster: tts: execute tests in numeric order
      e6419cc bitbake: toaster: tts: make sure to import data
      ada494d bitbake: toaster: tts: delete the database only if created
      ef70e13 bitbake: toaster: tts: delete pyc files before the tests start
      f9eb958 bitbake: toaster: tts: fix startup and cleanup for managed mode
      ba667a0 bitbake: toaster: tts: improve logging in urlcheck.py
      faaa5d4 bitbake: toaster: tts: improve debugging information
      f169733 bitbake: toaster tests: gitignore and use absolute path for log file
      73f1497 bitbake: toaster: tts: clean up HTML5 compatible url list
      1640a65 bitbake: toaster: tts: fix pylint warnings
      160d610 bitbake: toastergui: Remove angularJS and projectapp based on angular
      829fe32 bitbake: toastergui: project page Add inline project name change feature
      c76137e bitbake: toastergui: layerBtn use libtoaster for change notification
      b90a253 bitbake: toastergui: newbuildbutton Fix removed elements
      11627fc bitbake: bitbake: toastergui: newbuildbutton Fix typo on project save function
      c385f15 bitbake: toastergui: Change build button popover to a build-button
      10ffe1b bitbake: toastergui: base Use removeAttr / attr
      be2b423 bitbake: toastergui: Fix Duplicate layer importlayer api calls
      1a2f120 bitbake: toastergui: libtoaster: Add guard against missing name property
      a9549e8 bitbake: toastergui: libtoaster Make sure we always pass format=json
      691d547 bitbake: toastergui: css Remove redundant css rules
      80c1586 bitbake: toastergui: Add new project page and navigation
      258c929 bitbake: toastergui: css Add new rules for new project page
      9af7ce5 bitbake: toastergui: http api Add guard against incomplete change requests
      7a589c0 bitbake: toastergui: tables Add name field to layers table
      8ff56b0 bitbake: toastergui: libtoaster Add show change notification function
      1b13222 bitbake: toastergui: Standardise the layer object property layerdetailurl
      df999d2 bitbake: toastergui: Remove erroneous CSS property
      dd8c78b bitbake: toastergui: importlayer Add format type to JSON calls
      d826d4e bitbake: toastergui: base Fix html indentation
      b06a633 bitbake: toastergui: Implement new project navigation
      3d3a2db bitbake: toastergui: Implement new top navigation design
      8acab25 bitbake: wget.py: fix incorrect regexes
      4c2f28b bitbake: cooker: properly fix bitbake.lock handling
      18dfdb0 oeqa/commands: Increase qemu boot timeout to match testimage.bbclass
      b850da9 license_class: Fix choose_lic_set into incompatible license
      4d027f0 distrodata.bbclass: drop the manual upstream version check logic
      a1ec19c distrodata.bbclass: do not skip -native recipes in checkpkg task
      b76c908 nss: advance to version 3.19.1
      4c8f274 perf: add liblzma depdenency
      77e3946 guilt-native: set PV in the recipe to allow upstream version check
      5f9d379 stress: use developer's website for SRC_URI
      1ef03d5 shared-mime-info: reorder SRC_URI lines to fix upstream version check
      7258205 syslinux: drop v6.xx/ from directory path in SRC_URI
      91c9532 pseudo: fix upstream SRC_URI to enable upstream version check
      0bb94f4 libmad: use ftp instead of sourceforge for consistency with libid3tag
      eac846b eglinfo: change version from 1.0 to 1.0.0 to match the upstream git tag
      f606c52 ossp-uuid: update SRC_URI to not use Google Code
      689dd4e adt-installer: update SRC_URI to not use Google Code
      891ee70 libproxy: update SRC_URI to not use Google Code
      79e41e3 oeqa/sstatetests.py: add annotator to test_sstate_32_64_same_hash [YOCTO #6006]
      d1e2d28 oeqa/sstatetests.py: add decorator to test_sstate_nativelsbstring_same_hash
      36eb8f9 alsa-utils: assume the alsa storing is success if machine has no sound card
      dd8db95 tzdata: Add marking for config files in recipe
      90bc2f3 create-pull-request: Implement -d option
      363bec0 smartpm: set noprogress for pycurl
      5452625 qemu: upgrade to 2.4.0-rc3
      a1f78e4 guile: Add earlyclobber constraint to the SMULL outputs.
      8f12739 dbus: upgrade to 1.8.20
      f494fc2 gcc-multilib-config: Adapt mips for mips64 and different gcc versions
      c125ef1 cross-canadian/gcc: Various mips64 fixes
      7b56b2c glibc: don't override TUNE_CCARGS for MIPS
      05879d6 cross.bbclass: override MULTIMACH_TARGET_SYS
      25fad72 packagegroups-cross-canadian: don't override TRANSLATED_TARGET_ARCH
      ec38dac arch-mips.inc: don't override TRANSLATED_TARGET_ARCH
      ac692c6 multilib_global: Fix PREFERRED_VERSION mapping for gcc-cross-canadian
      d3f991a cross-canadian: Add symlinks for multilib cases
      c114833 libgcc: Fix symlink handling in cross-arch multilib cases
      6c4b21d gcc-multilib-config: Tweak naming of options to match gcc's expectations
      cc21092 gcc-cross-canadian: Add symlink to real-ld alongside other symlinks
      c4e40a4 gcc: Add patch to handle on target multilibs better
      a95a14a packagegroup-cross-canadian: Make the code more readable
      146905a utils: Handle MLPREFIX in all_multilib_tune_values()
      f351c03 testimage: testsdk fixes/improvements
      93360e8 oe-selftest: devtool: fix teardown warning in test_devtool_update_recipe_append
      9a672bd devtool: use tinfoil shutdown method
      3167580 u-boot: fix extern inline build errors for gcc 5
      3243682 poky: Fix SANITY_TESTED_DISTROS lsb name for openSUSE 13.2
      9890344 upstream_tracking.inc: remove outdated information
      87d6468 package_regex.inc: updates to fix upstream version checks for multple packages
      e73ba3b distro_alias.inc: drop reference to Google Code
      3d6893a distro/maintainers.inc: maintainer updates
      405bb5b combo-layer: fix AttributeError traceback.
      54c9219 sshcontrol: Use os.environ.copy() instead of copy.copy()
      e384d9b pixbufcache: Use sceneQueueComplete event to simplify usage
      64acfb3 arch-armv7a.inc, feature-arm-vfp.inc: add tunes for vfpv3 and vfpv3d16
      8f270dc elfutils: fix stack usage warning
      133ad63 bind: upgrade to 9.10.2-P2
      6ff6cc4 pax-utils: 1.0.3 -> 1.0.5
      855a442 man-pages: 4.00 -> 4.01
      8998358 help2man-native: 1.46.4 -> 1.47.1
      d1ee2d7 gnupg: 2.1.5 -> 2.1.6
      45efeff cracklib: 2.9.4 -> 2.9.5
      2b9dca1 less: 478 -> 479
      4e87fef libuser: 0.61 -> 0.62
      2d7a1a7 git: 2.4.4 -> 2.4.6
      222b1a9 lsbtest: sync test suite packages version
      60f6dcb qemu: add PACKAGECONFIG for gnutls
      fc8902f qemu_git.bb: remove it
      7635f09 lighttpd: 1.4.35 -> 1.4.36
      96433ee opkg-utils: use ${bindir} instead of hardcoding /usr/bin
      0e9a984 run-postinsts: use ${localstatedir} instead of hardcoding /var/lib
      1ce5d59 initscripts: urandom: respect ${localstatedir} instead of hardcoding /var
      6b4cfaa opkg: read config file from ${sysconfdir} instead of /etc
      890f24a rsync: use ${sysconfdir} instead of hardcoding /etc
      856082c libepoxy: Don't try to use python3 during configuration
      d897507 toolchain-scripts: Extend to cover nativesdk compiler tools (e.g. nativesdk-gcc)
      f66ead9 linux-firmware: upgrade to commit 75cc3ef8ba6712fd72c073b17a790282136cc743
      dab511c gcc: Add support for nativesdk-gcc
      3b7c384 binutils: Add nativesdk support
      7f654dc lib/oe/classextend: Fix nativesdk double name mapping
      eb1c88c distro/maintainers.inc: Fix parsing error due to lack of " at end.
      19f77cf distro/maintainers.inc: remove Saul Wold from maintainership
      798fc18 ref-manual: New description for KERNEL_CLASSES variable.
      49bcb74 dev-manual: Applied review edits to devtool section.
      ce97654 poky.ent: Added "findutils" and "which" packages to Fedora essentials.
      c3ac09f kernel-dev: Added 'make defconfig' details for own source work
      3b93408 dev-manual: Added a "biosfilename" item to the runqemu command section.
      cb19478 ref-manual: Added glossary description for BB_ALLOWED_NETWORKS.
      ab23dd9 yocto-project-qs and others: Rewrite of the QS
      add1f73 ref-manual: Fix to QA error message.
      3cd876d ref-manual: Updated the IMAGE_TYPES glossary description.
      68620d5 ref-manual: Fixed grammar issue in the oelint.bbclass section.
      282fe35 ref-manual: Updated UNKNOW_CONFIGURE_WHITELIST variable
      926d70f kernel-dev: Added kernel-devsrc information for building on target
      39bcabf toaster-manual: Removed the daemon requirement
      3423f3b poky.ent: Updated the YOCTO_RELEASE_NOTES variable
      9325599 ref-manual: Updated the UNKNOWN_CONFIGURE_WHITELIST variable.
      5644756 kernel-dev: Added new requirement for working with yocto-linux-custom.bb
      4764062 ref-manual: Updated ARCHIVER_MODE and archiver.bbclass
      4ec8e88 documentation: Updated customization layers to point to XSL mirrors
      2de3283 ref-manual: Fixed "TBD" section cross-reference in KBUILD_DEFCONFIG
      f9df1a4 kernel-dev: Added new "in-tree" defconfig file section.
      540b8ef dev-manual: Added new section on "defconfig" files.
      7b1697b kernel-dev: Added detail to start of generating config file
      7baadd8 ref-manual: Removed PRINC entry from the glossary
      e52dd53 toaster-manual: Added detail for the URL to access Web Interface
      ec068fe ref-manual: Added new variable description UNKNOWN_CONFIGURE_WHITELIST
      744893b ref-manual: Updated EXTRA_IMAGE_FEATURES variable
      64d7456 dev-manual: Updates to kernel configuration in the "Kernel Modification Workflow" section
      3d2f2b6 dev-manual: Added a link to reference defconfig files.
      8c43d0f dev-manual: Minor edits to "Configuring the Kernel" section.
      72169b2 ref-manual: Added new glossary description for KBUILD_DEFCONFIG.
      6e12a35 adt-manual: Updated the "Getting the Images" section for eclipse-debug
      d9cf575 ref-manual: Added and updated variables to support calling functions
      fb82bcb ref-manual: Added 'ptest' to the list of Distro Features
      26f9777 ref-manual: Updates to the "Speeding Up the Build" section
      e05c636 ref-manual, dev-manual: Added info about make race work-around
      8c9fb71 ref-manual: Formatting fixes and tag fix.
      935f5d7 ref-manual: Updates to BB_NUMBER_THREADS and PARALLEL_MAKE
      113c427 ref-manual: Added descriptions for four new variables
      2a95850 adt-manual: Emphasis on populate_sdk as bitbake method for building toolchain
      95108a1 dev-manual: Updated requirements for writing a new test.
      d0531db ref-manual: Added new variable description for ARCHIVER_MODE
      46f8649 ref-manual: clarify allarch wrt RDPENDS and TUNE_PKGARCH
      a894da0 ref-manual: fix example of setting root password using extrausers
      5e357ed oe-selftest: restore gummiboot tests
      1b88b74 bitbake: build: Exit scripts with result of last shell function
      eeb412d harfbuzz: upgrade to 1.0.1
      5d8739f opkg-utils: fix bashism in opkg-build
      5981ccf cross-canadian: Put links in place for uclibc and musl
      72777f4 toolchain-scripts: For non-glibc, pass compiler options to ensure the correct libc selection
      ae344c1 oeqa/qemurunner: Fix AttributeError: QemuRunner instance has no attribute 'server_socket'
      7c71bc8 nativesdk-qt4-tools: depend on nativesdk-qt4-tools only if DISTRO_FEATURES includes x11
      997893e security-flags: Disable PIE for coreutils, elfutils, gcc, iptables
      f4f72b1 qemurunner: Show last 25 line of log, not 5
      e3aa7a3 targetcontrol: Improve logs by outputting qemu boot log in case of failure
      edc7780 oeqa/selftest/devtool: use new runqemu function
      c256bbc oeqa/selftest/imagefeatures: remove gummiboot tests
      86f0232 oeqa/selftest/imagefeatures: fix RPM4 test
      90a52ff oeqa/selftest/imagefeatures: fix SSH without password tests
      76d8c4e oeqa/selftest/imagefeatures: Use QemuTarget code
      01ccad1 oeqa/targetcontrol: write QemuRunner log output to a file
      a6eb5ec oeqa/utils/qemurunner: fix error handling if runqemu exits with an error
      7f9b42a oeqa/utils/qemurunner: avoid blocking on stty when running under oe-selftest
      4855ec3 oeqa/utils/qemurunner: fix logging
      69bae06 oeqa/targetcontrol: create test directory before copying rootfs image
      67a3807 oe-selftest: add scripts/lib and bitbake/lib to path
      3108e00 oeqa/recipetool: allow templayerdir override
      7eb55b4 oeqa/recipetool: add tests for appendsrcfile(s)
      6e7ee4e oeqa/recipetool: refactor / split out RecipetoolBase
      51d760e oe-selftest: add libdirs from BBPATH to sys.path
      d2023c3 oe-selftest: obey oeqa.selftest.__path__
      0eb40ba devtool: also load plugins from BBPATH
      da02f48 recipetool: parse global args early
      7136678 recipetool: also load plugins from BBPATH
      89878f5 recipetool.append: add extralines arg to appendsrc
      e28c4ba recipetool: catch BBHandledException from parsing
      813c417 toaster.bbclass: Fix ValueError
      e86dc1a gcc-target 5.1: fix for libcc1
      fd91e71 gcc5: Upgrade from 5.1 to 5.2
      53caeeb sudo: upgrade to 1.8.14p3
      898fd07 sed: Make locale depenencies glibc specific
      d941141 updated-rc.d: Only add dependencies in target case
      e9804c7 oeqa: Add exception handling around qemu process cleanup
      6381d45 update-rc.d: Include updated-rc.d in DEPENDS
      4ab6b46 qemu: change default version to 4.1
      ad5414b yocto-bsps: add 3.14-rt configuration
      3a4b0d6 linux-yocto: introduce 4.1 versioned recipes
      f7ee1c9 kern-tools: standalone tree configuration
      c29aac6 linux-yocto: split meta data from kernel repository
      741a44c perf: Fix config file conflict with 4.1 kernels
      12b5a44 byacc: upgrade to 20150711
      2963cc2 image: Support for qcow2
      6dcd355 qemu: upgrade to 2.4.0-rc2
      ff037a6 boot-directdisk: Make kernel image inclusion conditional.
      66bad55 diffstat: upgrade to 1.60
      c9553b8 tcf-agent: Update to version 1.3
      00a706e mklibs-native: Remove dependency on dpkg
      9a539cb oeqa/qemurunner: don't assume hostname starts with qemu
      b0f034e oeqa/runtime/parselogs: don't use uname to get MACHINE
      46cb3f0 oeqa/selftest/imagefeatures: handle killpg victim not existing
      7b33ced oeqa/runtime/parselogs: add more x86 log exceptions
      672517e oeqa/sshcontrol: Ensure we don't trigger ssh-askpass
      98b5364 sed: rrec on locale-base-ru-ru, not rdep
      f5f6748 bitbake: data_smart: Improve override history logging
      9901415 bitbake: data_smart: Improve performance of infer_caller_details()
      67c6cc8 bitbake: data: Clean up datastore accesses and True/False values
      fdfb3fd bitbake: data: Add newline after the last export in emit_func
      ada9300 bitbake: tinfoil: Add shutdown method
      901be2c bitbake: bitbake-selftest: Add -v option for verbosity
      aaea533 bitbake: tests/parse: Add BBCLASSEXTEND multiple data store corruption reproducer
      19f290f bitbake: data_smart: Add CoW approach for overridedata
      9120130 linux-libc-headers: update to 4.1
      c56cb31 recipetool: appendsrcfile: handle S == STAGING_KERNEL_DIR
      5c080f7 recipetool: appendsrcfile: use -D, not -d for destdir
      023e9b2 recipetool: appendsrcfile: fix duplicate SRC_URI check
      51ae491 oeqa/buildoptions.py: automate test case 926, archive work dir and export source
      d8c9810 oeqa/buildoptions.py: automate test case 563; build directfb image
      99e39a1 common-glibc: define bash_cv_getcwd_malloc
      1b17b58 oeqa/QemuRunner: don't use bb for logging
      d87878e cronie: Upgrade v1.4.12 to v1.5.0
      fbea156 bootimg: remove previous FATIMG before creating a new one
      50b5186 mesa-demos: Fix building demos which require GLU.
      3b7961f gtk+: require either x11 or directfb DISTRO_FEATURES to be set
      08f0136 tune-cortexa17: add tunes for ARM Cortex-A17
      fd31e62 ncurses-terminfo-base: include screen-256color
      6e78cc4 *image.bbclass: Consolidate ROOTFS_POSTPROCESS_COMMANDs
      061d6ec gtk+3: fix Wayland-only builds
      271b9b6 lttng-ust: 2.6.1 -> 2.6.2
      51b590d u-boot: Upgrade to 2015.07 release
      99b082d volatile-binds: correct path of command umount
      31531dd sqlite3: Upgrade 3.8.10.0 -> 3.8.10.2
      83f19d4 oeqa/syslog: Removed a pointless testcase and added skip for another.
      cc2202b oeqa/runtime: Added decorators for the remaining auto tests.
      1bfb932 oeqa/runtime: Added a new automated rpm test.
      0d1f10e oeqa/prservice: add useful failure messages to test cases
      68f546e oeqa/recipetool: add useful failure messages to test cases
      9d02d3f oeqa/pkgdata: add useful failure messages to test cases
      7d01c59 oeqa/runtime: Added one runtime testcase in connman.
      613cbe5 rpm4: Drop native RDEPENDS
      6deffe1 recipeutils.py: get_recipe_pv_without_srcpv remove prefixes from pv
      74240cc oe/recipeutils.py: get_recipe_upstream_info update to get revision
      e28c1eb oe/recipeutils.py: get_recipe_upstream_info only use sfx and pfx when exits
      205c39b bitbake: tests/fetch.py: Updated test name FetchMethodTest -> FetchLatestVersionTest
      22d2f7b bitbake: fetch2/wget.py: latest_versionstring now returns (version, revision)
      bd5167d bitbake: fetch2/git.py: latest_versionstring now returns (version, revision)
      4bbc5dd bitbake: fetch2/git.py: latest_versionstring search in all tags
      bc0f1cf libx11: update Upstream-Status on a merged patch
      d6fa512 oeqa/selftest: Fix imagefeature testcases not to interfere with testimage on AB
      aa05be4 distro: remove gamin metadata
      94c50ef Revert "create-pull-request: Fix error on 2.0 versions of git"
      0a5f2bc sanity.bbclass: Remove check if /tmp is writable
      9f87dcf local.conf.sample: Added /tmp to BB_DISKMON_DIRS
      f5206e8 bitbake: data_smart: Use deepcopy for overridedata
      b68de1c native: Move virtclass override to earlier so DEPENDS is handled correctly
      f8a6931 qemu: upgrade to 2.4.0-rc1
      c5f1681 pseudo: 1.6.5 -> 1.6.7
      9a92500 bitbake: toastergui: make our tables Chrome-happy
      0c0ec86 bitbake: toaster: continue processing layer dependencies despite errors
      0f8d89c core-image-lsb-sdk: use kernel-devsrc to ensure kernel module builds work
      557bca8 kexec-tools: change powerpc memory size limit
      c49cfc2 kexec-tools: disable the GCC's stack protection for purgatory code
      88dd997 libpam: Upgrade v1.1.6 -> v1.2.1
      e9b9f8c lttng-modules: 2.6.1 -> 2.6.2
      8325277 btrfs-tools: 4.0.1 -> 4.1.1
      d0ae6fa pulseaudio: rdepend on modules referenced by start-pulseaudio-x11
      7942e64 neard: merge .inc file
      a2d6745 neard: remove overridden do_install
      6257bf7 gnome-icon-theme: clean up icon-naming search
      350b73f python-smartpm: Improve warnings/errors consistency
      fbec920 lib/oe/package_manager: Use log-level warning instead of quiet
      0076525 package_ipk/deb: Drop version information from RPROVIDES
      771126c debian: Add versions to RPROVIDES
      920819f gamin: remove
      2563aa5 extensible sdk: Error when trying to install as root.
      873b8ed subversion_1.8.13.bb: Upstream-Status updated to Accepted
      c54472c libcap: control attr PACKAGECONFIG via xattr DISTRO feature
      2173c00 libcap: avoid losing default Large File Support CFLAGS
      26b2db8 libcap: always link apps dynamically
      058b53e linux-yocto/3.19: drm and axxia updates
      d7c633c linux-yocto/3.14: fix gcc 4.9.4/5.1 build issues, yaffs2 memory leak
      46720f0 qemu: upgrade to 2.4.0-rc0
      56542b8 maintainers/distro-alias: rename gtk-update-icon-cache to gtk-icon-utils
      5e7f26d gtk-icon-utils: Rename, upgrade, add binary
      5863080 package_regex.inc: Add rules for clutter recipes
      d3809b7 bitbake: lib/bb: provide mechanism to bypass UI log suppression
      5261c5b bitbake: lib/bb/process: check output of select() before reading extrafiles
      723411d lib/oe/recipeutils: fix replace_dir_vars to return the correct variables
      7e7e123 sstate.bbclass: remove redundant cd and mkdir commands
      4d77270 oeqa/devtool: add useful failure messages for some test cases
      a7f23c6 bitbake.conf: fix qemu user mode linux for qemuarm64
      77cd461 runqemu-internal: add temporary disk interface to qemuarm64
      74dc0c8 oeqa/buildoptions: add useful failure messages for all test cases
      eeed010 oeqa/bblayers.py: add useful failure messages to all test cases
      2606cd2 oeqa/bbtests: add useful failure messages for all test cases
      e20f810 connman-conf: fix SRC_URI_append
      e60597a classes/logging: allow shell message functions to work in devshell
      ddc1df3 Use die() or bbfatal_log() where the log should definitely be printed
      757be60 classes/base: fix die() to print the full log
      546bfe8 classes/useradd: don't read bbnote/bbwarn/bbfatal values
      09fe2fd guile: Add explicit directories to guile_cross_config
      bca59f9 chkconfig: use explicit directories in obey_variables()
      4e9ea09 dmidecode: use absolute paths in fixup task
      5352e65 depmodwrapper-cross: set S correctly
      794ea78 qemuwrapper-cross: set S correctly
      3172250 opkg-arch-config: set S correctly
      9cbc0c1 systemd-compat-units: set S correctly
      13dbdd4 gnupg: fix build of GPLv2 version of gnupg with gcc 5
      aad604f lighttpd: Fix mod_cgi to avoid it buffers data without bound.
      88d7df4 systemd: update the status of configurable root patch
      c713a22 kernel: fix path assumptions in tasks
      a08f8db libc-package: don't abuse B to change directory
      af2deca python: add explicit directories in py_package_preprocess
      62dae66 boost: add dirs flag to boostconfig task
      c5c80d9 ptest: add dirs flag to ptest tasks
      6e8313d create-pull-request: Fix error on 2.0 versions of git
      1195b41 grep: use internal regex library with musl-libc
      7e51763 systemd: add PACKAGECONFIG for valgrind
      e47a97a piglit: Fix floating dependency on freeglut
      fdbd322 systemd: recommend the vconsole setup units
      df2e393 gnu-config: set noexec for do_compile
      d890d81 glibc: print PN when bbwarn
      1537381 newt: enable native builds
      9f33c00 slang: enable native builds
      8bffb5a mesa: respect MESA_EGL_NO_X11_HEADERS even with x11 in PACKAGECONFIG
      3f9658a kernel-yocto: fix machine_srcrev check in do_patch
      525ba4c initrdscripts: handle mmc device as installer medium
      ca869fd gettext-minimal-native: use MKIDR_P in Makefile.in.in
      2b811ee perf: Modify SPDX_S directory to avoid do_spdx error.
      4012fd3 do_unpack: move qa check of unpack into insane.bbclass
      c18fadb lttng: Fix timer calculation error
      a117fd5 libdrm: Upgrade to 2.4.62
      6c3c74f expect: replace the STAGING_INCDIR with includedir
      ca789f0 midori: Depend on Adwaita, not gnome-icon-theme
      80fdc5d sato-icon-theme: Inherit Adwaita, not gnome-icon-theme
      7395925 matchbox-session-sato: set GTK_CSD env var
      88ea874 gtk+3: Upgrade to 3.16.4
      f71e473 adwaita-icon-theme: Add new icon theme for GTK+
      b0079ec combo-layer: implement --hard-reset option
      d1a1dbb combo-layer: only allow fast-forward when pulling
      60cebe6 apr: Fix packet discards HTTP redirect
      3f79bf7 python-io: Add runtime dependency on contextlib
      45772ba sanity.bbclass: Check if /tmp is writable
      b250b5c buildhistory.bbclass: Check output folder is present before creating files-in-$pkg.txt
      a79007b dbus-ptest: set INSANE_SKIP for build-deps
      49f1d97 xserver-xorg: remove invalid ac_cv_file__usr_share_sgml_X11_defs_ent
      191e93a apt: remove invalid ac_cv_glibc_ver
      db18fed glibc: remove invalid ac_cv_path_KSH
      6ea080f git: remove invalid ac_cv_c_c99_format=yes
      5ba0890 mc: Upgrade to release 4.8.14
      1678926 alsa-plugins, pulseaudio: depend on speexdsp, not speex
      505e1af speex: 1.2rc1 -> 1.2rc2
      d8c3428 speexdsp: initial recipe
      ba07a69 dpkg: Fix for Fedora22 and new versions of tar
      bc2191d tar: Add symlink to tar from gtar
      7f8286f classes/sstate.bbclass: Improve checkstatus using connection cache.
      7699386 python-smartpm: Have native smart use nativepython
      2ec97a2 opkg-build: Ignore tar error due to hardlinks issue when creating ipk files
      f1bf0b4 gcc: remove EXTRA_OECONF_INTERMEDIATE
      9fee217 netbase: add rpcbind as an alias to sunrpc
      75c877b oe/recipeutils.py: get_recipe_upstream_version returns 1.0 when not SRC_URI
      5d0f8a6 intltool: Upgrade 0.50.2 -> 0.51.0
      450dd5a harfbuzz: upgrade to 0.9.41
      c3ac850 classes/logging: make shell message functions output to the console
      de2d643 qt4: fixes for sed command
      e2cf270 cups: remove invalid sed command
      301e73b perf: remove invalid sed command
      3f71c88 python-pygtk: remove invalid sed command
      d3904ca python: remove invalid sed command
      ee5b19d perl: remove invalid sed command
      d512cf2 mdadm: remove do_configure_prepend
      911cb68 rpm: remove invalid sed command
      8d1a344 qemu: remove invalid sed command
      4e9c3db glibc-initial: remove invalid sed command
      e1c9739 opkg: remove do_configure_prepend
      af3f87c elfutils 0.163: remove do_configure_prepend
      4a32362 i2c-tools: uprev to 3.1.2
      1bd4ee1 gnome-icon-theme: inherit allarch
      95083b2 archiver.bbclass: add do_deploy_all_archives
      274389c populate_sdk_base.bbclass: don't inherit toolchain-scripts.bbclass
      2d498b0 buildtools-tarball: Add inherit toolchain-scripts
      960ed55 clutter-gtk-1.0: Upgrade 1.4.4 -> 1.6.2
      d296521 clutter-1.0: Upgrade 1.20.0 -> 1.22.4
      4094901 cogl-1.0: Upgrade 1.18.2 -> 1.20.0
      383e48e xproto: Upgrade 7.0.27 -> 7.0.28
      671a00b gcc-5: Backport patches for -Wno-narrowing behaviour fixes
      ee9e365 gcc-4.9: Upgrade to 4.9.3
      0ae9afd bluez5: upgrade to 5.32
      e9817d5 oeqa/sstatetests: Add NATIVELSB sstate signature equivalence test
      ee69463 recipetool/append: Fix selftest failure with multilib
      b60521c lib/oe/recipeutils: Ensure order of data store doesn't influence the result
      a730981 bitbake: tests/data: Add new data tests
      4c386e1 bitbake: data_smart: Fix appendVar/prependVar
      75a5855 bitbake: data_smart: Fix data expansion cache issues
      a259968 bitbake: data_smart: Fix keys() missing overrides
      816acb6 bitbake: data_smart: Cache set(self.overrides)
      0ac9c80 bitbake: data_smart: Improve override recursion handling
      2dbb067 bitbake: data_smart: Tweak OVERRIDES value cache for performance
      d8ebb47 bitbake: data_smart: Seperate out the override cache
      c690d5b bitbake: data_smart: VariableHistory: Ignore override duplicates and overlap with CoW functions
      933e196 bitbake: parse/ast/data_smart: Add parsing flag to getVar/setVar
      95be16f bitbake: data_smart: Move override handling to getVar
      7fc6f6c bitbake: data_smart: Cache overrides and fix data store
      35a6f7d bitbake: data_smart: Fix cache clearance problems
      577f160 bitbake: data_smart: Improve override handling
      e7ccd90 bitbake: data_smart: Remove need for update_data calls
      42a5996 bitbake: data_smart: Defer append/prepend handling
      5ae52ee bitbake: fetch2/wget.py: checkstatus disable SSL cert validation.
      73b9cd9 bitbake: tests/fetch.py: FetchCheckStatusTest add cases for ftp and https.
      804f1a2 bitbake: fetch2/wget.py: checkstatus fix using proxy handler
      913631c bitbake: tests/fetch.py: Add FetchCheckStatusTest tests.
      3b186fb bitbake: fetch2/wget.py: Add support of connection cache in checkstatus.
      97c5ecf bitbake: fetch2/sftp: Set BatchMode=yes as argument to sftp
      518abb7 bitbake: git.py: create a branch when checkout
      61fbff2 bitbake: cooker/taskdata: Make NoProvider errors non-fatal to -e/-g options
      625a6bf bitbake: prserv/db: Document history modes
      3b50312 bitbake: lib/bb: set up infrastructure for shell message functions
      8f8d336 wic: Set default set of bitbake variables
      b80ddb0 openssl: upgrade to 1.0.2d
      f9ea480 bitbake: fetch2: Add fetch parameter to checkstatus
      bf6c21c bitbake: fetch2/__init__.py: Add FetchConnectionCache class
      3b5b74b bitbake: knotty.py: Make sure bitbake.lock is unlocked before exiting
      67eaefe bitbake: command.py: Unlock function included into CommandsSync class
      7bccf59 bitbake: cooker.py: Lock/Unlock members function into BBCooker
      4b9fc47 libtool: Fix regression from previous commit
      d245899 testimage: Add support for test suites manifest files
      129aed8 testimage: Support full TC path such oeqa.runtime.pnp.get_memory_size in TEST_SUITES
      92c10c9 bootchart2: add runtime dependency
      975cb96 oeqa/selftest: Added 2 testcases and updated setup for other two in imagefeatures.
      1881c5e systemd: add PACKAGECONFIG selinux
      fbe51e0 initscripts: add /sbin/sushell for systemd service debug-shell
      fb9e697 opkg-build: Ignore tar error due to hardlinks issue when creating ipk files
      64df5e5 coreutils: upgrade to 8.24
      e2ac1e8 qemu: fix CVE-2015-3209
      8b3666e rpm: disable external key server
      925397f gdb: Fix detection of 64-bit PPC inferior in gdbserver
      05b02d2 python-smartpm: 1.4.1 -> 1.5
      f9ac3f3 elfutils: 0.162 -> 0.163
      d32b383 less: 471 -> 478
      5de2efa nfs-utils: fix to start nfs-server correctly in systemd
      5a0f48f ltp: Add inhibit of split
      32cd0c8 systemd: fix immediate unmount of mountpoints not in fstab
      91c1574 report-error: expand all variables
      7250010 bitbake.conf: Add BUILD_ARCH and SSTATE_PKGARCH to HASHBASE whitelist
      3e4edfd pseudo: Exclude SITEINFO_BITS from checksums
      9fa842a oeqa/sstatetests: Add test for comparing 32 and 64 bit sstate checksums
      0aaa67a oeqa/bbtests: Fix to ensure DL_DIR is set
      25702f3 bitbake: cooker: Improve DATE/TIME handling
      eb068cc file: fix long-options
      21bdccb ca-certificates: remove Debianism in run-parts invocation
      9238984 image_types.bbclass: add support for multiple ubi sizes
      d93171c subversion_1.8.13.bb: Regex modified to allow '-D' in paths
      389d010 mklibs-native: two fixes
      abe6459 security_flags: eliminate FORTIFY_SOURCE for debug builds
      c4437f1 Update alternatives of man pages
      44544fc man: replace ',' with '#'
      09febe0 ldconfig-native: Add 64-bit flag for ELF64 entries
      daec53e combo-layer: modified to generate better commit messages.
      8a0cb22 mesa-demos: rename clear
      4913e35 libdrm: remove git recipe, merge inc
      86fc0b2 lsbinitscripts: avoid exit 1 in functions script
      eb29cea rpm: check if the argument(rootpath) exists or be writable
      09a5cb0 image_types_uboot: remove the middle file
      d7826f2 libav: update i586 TARGET_ARCH test to also handle i686
      090e957 lsb: update i586 TARGET_ARCH tests to also handle i686
      a1bb764 gcc: update i586 TARGET_ARCH tests to also handle i686
      d1874be multilib_global: expand multilib pref values properly
      cb196d2 core-image-kernel-dev: Define a correct subset of TEST_SUITES to run for this image
      992c02c perl: Undefine finitel for musl
      ad11256 valgrind: build with altivec only if it supported
      5e032f1 squashfs-tools: upgrade to newer revision from git
      44f0c01 dhcp: modify dhcpd.service to make it start successfully and add systemd service files dhcpd6.service
      ae5c24b grub-efi: Allow to use file name different from grub.cfg in GRUBCFG
      923fb2e oeqa/selftest: Added new testsuite for image features.
      75fa966 scripts/oe-selftest: Added mechanism for including/removing bblayers.inc
      ffa54b9 oeqa/selftest: Added @testcase decorators to oeselftest testcases.
      9f91aa6 oeqa/selftest: Add methods to manipulate bblayers.conf in base.py
      cd37932 report-error.bbclass: Added file syncronization.
      046f1ab volatile-binds: Set S to prevent QA warning
      2513e02 systemd-serialgetty: Set S to prevent QA warning
      18d71ed bitbake: main: add skeleton documentation for the recipe:do_task syntax
      62caaa4 bitbake: fetch2: Checkout to correct ref begore init and update submodules
      a24fdca oeqa/bbtests: Fix race over DL_DIR and SSTATE_DIR
      929a109 libffi: fix typo in fix-libffi.la-location.patch
      0e82f9f texinfo: fix typo in dont-depend-on-help2man.patch
      da65172 valgrind: fix typo in valgrind-remove-rpath.patch
      3990d42 rpm: fix typo in rpm-reloc-macros.patch
      6fd8459 rpm: fix typo in rpm-realpath.patch
      cb52477 python-numpy: fix typo in no-host-paths.patch
      0436dc1 pkgconfig: fix typo in fix-glib-configure-libtool-usage.patch
      a806971 flex: fix typo in do_not_create_pdf_doc.patch
      d5e0177 dosfstools: fix typo in nofat32_autoselect.patch
      a44f203 glibc: fix typo in add_resource_h_to_wait_h.patch
      6edd1f0 base-passwd: fix typo in add_shutdown.patch
      2dd57d9 dpkg: fix typo in tar-error-code.patch, Upsteam -> Upstream
      67ab9eb distrodata.bbclass: fix typo, Upsteam -> Upstream
      a49a850 maintainers.inc: reassign audio recipe maintainership
      7a40230 distro/package_regex.inc: Use GNOME_STABLE rule for vala
      5706b0c tune-core2.inc: set X86ARCH32 to i686 (instead of i586)
      df61141 wayland: enable nativesdk builds
      df7386e wayland: always build wayland-scanner
      fa0845f mesa: Add blank r600 PACKAGECONFIG
      d451627 cmake bbclass: fix support for native builds
      6b76ee0 libinput: Upgrade 0.7.0 -> 0.18.0
      43e5bf4 wayland: Upgrade 1.6.0 -> 1.8.1
      3ff474c weston: Upgrade weston_1.6.0.bb -> weston_1.8.0.bb
      edb240b libpciaccess: Upgrade to 0.13.4
      7803567 gdb: Disable lttng support for musl
      4a52eb5 feature-arm-thumb.inc: Fix ARMPKGSFX_THUMB value
      cea2042 sanity.bbclass: Check if /tmp is writable
      38d8f2e rootfs.py: Add check for kernel modules before running depmod
      7e074c3 runqemu-internal: correctly set format for root FS as raw
      a23d273 bootimg bbclass: don't hardcode 'bzImage' name
      ffb64e3 documentation: document KERNEL_CLASSES
      81ead6a ltp: vma03 fix the alginment of page size
      00020fa wic: Code cleanup: unused imports
      34172ef wic: Code cleanup: long lines, identation and whitespaces
      335aa0f wic: Fix confusing error message
      d88af4f wic: Remove __write_partition method
      0ef9cdd wic: Refactor fstab update code
      a49a422 wic: Add --uuid partition option
      594dc72 wic: Fix naming conflict
      4023377 wic: Remove duplicated code
      b5dce25 wic: Refactor prepare_empty_partition API
      052c819 wic: Call methods better way
      73d0d23 wic: Get rid of useless variable 'image_rootfs'
      1e307c3 wic: Rename partition images
      e9237bf wic: Refactor prepare_rootfs API
      992f789 wic: Turn off debug output for 'bitbake -e'
      9ca3472 wic: Remove annoing debug message
      1cabf09 wic: Include mount point into image report
      aa470a1 wic: Refactor getting bitbake variables
      6733434 wic: Test rootfs plugin using rootfs paths
      ba23968 wic: Fix misleading message
      b42d7d2 wic: Test rootfs plugin using image recipes
      c86a0d2 bitbake: toaster: Fix build execution regression
      5606687 bitbake: toaster: runbuilds Fix incorrect variable name
      483b21b bitbake: toaster: Remove erroneously committed template include
      cfc4f1b bitbake: toaster: Revert the addition of analysis project mode selection
      3b3ef9c bitbake: toaster: Partial Revert "fixes after html5 compliance testing"
      d73a813 cross.bbclass: delete package_qa task
      b78b1a6 tune-i586-nlp: Add new tune file to support Quark/X1000 CPU
      5c71337 bootimg.bbclass:hddimg: check the size of rootfs.img for hddimg
      b3c79c4 bootimg.bbclass:iso: use mkisofs -iso-level 3 for large iso
      53ddebe logrotate: 3.8.8 -> 3.9.1
      563269f wpa-supplicant: Fix CVE-2015-4142
      63873d0 nfs-utils: debianize start-statd
      703108c nfs-utils: Reexport all directories when start
      3c6ddc7 mklibs-native: avoid failure on symbol provided by application
      71ceb8c unzip: drop 12-cve-2014-9636-test-compr-eb.patch
      a386648 perl-native: Specifically undefine other gdbm paths
      3360f93 oeqa/bbtests: Show useful failure message for gplv3 test
      58ecd46 oeqa/bbtests: Improve error handling
      dcd361f gdbm 1.8.3: install ndbm.h and dbm.h
      2d65e23 openssl: upgrade to 1.0.2c
      dc5813d perl: remove default byteorder from config.sh
      f4248c6 perl: odbm.t: fix the path of dbmt_common.pl
      d61804d perl: fix for ODBM_File.so
      ae4e9de perl: fix test case switches.t
      3020570 perl: use perl.inc for target and native perl
      304ebe1 cpan_build.bbclass: remove libmodule-build-perl
      3f7e55b perl: 5.20.0 -> 5.22.0
      a01d406 curl: upgrade to 7.43.0
      af193ea sysstat: upgrade to 11.1.5
      b111b6b mmc-utils: fix the building failure when DEBUG_BUILD is 1
      348c85c file: 5.22 -> 5.23
      318687d gnupg: 2.1.4 -> 2.1.5
      85b27b5 hdparm: 9.45 -> 9.48
      2904802 git: 2.4.2 -> 2.4.4
      da9b9ac elfutils: 0.161 -> 0.162
      2578ff3 bitbake: codeparser: Add repr() methods
      dcbbe54 bitbake: codeparser: Allow empty functions
      43c6e8c bitbake: bitbake: fetch2/hg.py: fix unpack error and mirror tarball
      3836d9b bitbake: fetch/perforce: Fix single file checkouts
      4bc0fc7 oeqa/parselogs: Whitelist qemumips64 runtime error
      b3b6483 testimage: Don't test xorg/vnc on qemuarm64
      6dba7a0 oeqa/parselogs: Whitelist qemuarm64 runtime errors
      e77c23c oeqa/recipetool: Fix symlink resolution
      a3df479 gstreamer1.0-plugins-bad.inc: remove duplicate bzip2 dependency
      e3b35f5 tiff: Update to 4.0.4
      b3fc374 subversion: Fix subversion-native on Fedora22
      608bf22 oeqa/parselogs: Fixed a problem in parselogs
      871efa6 quota: fix quota do_install errors
      c8042fd kmod: upgrade to 21
      b428f88 recipetool: add appendsrcfile(s) sub-commands
      49a089f recipetool.append: use argparse types for validation
      83a6611 oe.recipeutils: fix line.split error in bbappend_recipe
      01c9c73 buildhistory.bbclass: Create a files-in-<pkg>.txt containg recipe's pkg files
      a053775 xf86-video-vesa: Upgrade 2.3.3 -> 2.3.4
      f8b2537 xorg-xserver: Upgrade 1.17.1 -> 1.17.2
      c11d4c9 mesa: Upgrade 10.5.6 -> 10.5.8
      c812af4 freetype: Upgrade 2.5.5 -> 2.6
      2eb1794 populate_sdk_base.bbclass: use pbzip2 to compress SDK tarfiles
      a62cb8a image_types.bbclass: use pbzip2 for images requiring bz2 compression
      bac6bb6 pbzip2: Fix native dependency on bzip2-native
      a3a3376 pbzip2: add initial recipe, pbzip2 v1.1.12
      64229cb run-postinsts: Fix ipk package management detection
      b2c9e73 oe/rootfs.py: DpkgRootfs/OpkgRootfs add support for dependency handling in postinsts scripts.
      f8661aa cmake: Upgrade 2.8.12.2 -> 3.2.2
      b053b81 oe-selftest: timestamp the test runs
      545ff77 uclibc: Cope with other mips32 variants
      8b4f659 piglit: fix floating dependence on freeglut
      6122446 gdb: Add missing runtime dependency for python option
      d2a87aa unzip: fix four CVE defects
      a1bac0f qemu: backport patches to fix CVE issues
      a8ae731 terminal.py: Allow devshell/menuconfig on recent gnome-terminal
      e8af6ad bluez5: upgrade to 5.31
      c148ce5 linux-firmware: upgrade to commit 3161bfa479d5e9ed4f46b57df9bcecbbc4f8eb3c
      7b2f30e weston: fix libdir/libexecdir confusion
      8cef098 bluez5: fix lib/libexecdir confusion
      98c2bdb testimage: Handle ipk/deb packaging format tests correctly
      e6f29dd wic: oe-selftest: Test image compressing
      a04ebe7 wic: Make code more pythonic
      3476685 wic: Implement image compressing
      597cba6 wic: Add new argument to direct plugin
      40349f1 wic: Add new argument to wic_create function
      13427e1 wic: Add --compress-with command line option
      48b5ea6 sanity.bbclass: check /bin/sh is dash or bash
      ad2bd4c toolchain-scripts: fix for multilib
      8c3dd2d bitbake: event: Handle recursive events and the data store better
      00ca43b bitbake: cooker: Fire BuildCompleted before finishing the command
      d93bc4c bitbake: toaster: Add url pattern for backward compatibility
      df48243 bitbake: toaster: split orm app into it's own module and app
      62288a6 bitbake: toaster: bldcontrol Ignore toasterconf files in own directories
      10e35ab bitbake: toaster: Restore 'in project' filters to main tables
      4013784 bitbake: toaster: table.js fix filter visual indicator and interaction
      d21e174 bitbake: toaster: toastertable Pass up the kwargs for setup_filter
      93c54c2 bitbake: toaster: Enable toastertable cache
      f28116e bitbake: toasterui: fixes after html5 compliance testing
      583e320 bitbake: toasterui: verify variable before usage
      8ef5165 bitbake: toaster: delete multiple builds
      5d0abf1 bitbake: toastergui: select project types
      70c4eb8 bitbake: toaster: refactor build model
      287b49a bitbake: toaster: bring django-aggregate-if into the project
      35fe311 bitbake: toaster: add django-aggregate-if
      335c975 bitbake: toaster: fixes after replacing BuildRequest with Build
      d7c8d95 bitbake: toaster: fill in build data from buildrequest
      1605635 bitbake: toaster: refactor the builds pages
      2c7ed96 bitbake: toaster: remove BuildRequest references
      c362e61 bitbake: toaster: remove MANAGED references
      b98a2fc bitbake: toaster: fixing undefined variables
      933e4db bitbake: toastergui: enable strict variable checking
      0b2e644 bitbake: toaster: improve the buildenvironment API
      aad93dd bitbake: toastergui: fix angular error
      ffd7cac oeqa/selftest/recipetool: Fix appendfile_binary test on opensuse131
      e8c50a2 lib/devtool/standard: Fix patch cleanup
      d85231e lib/oe/patch: Fix git patch application for source in subdirectory
      615b351 oe/utils.py: Add support for init/end helper functions in ThreadWorker.
      3fa3215 oe/utils.py: Fix thread leakage in ThreadPool
      18e902b wpa-supplicant: Revert "Make SystemD D-Bus config conditional"
      ef1a66b maintainers.inc: reassign GTK+ and X maintainership
      70a1c1e apt-native: Drop obsolete symlinks
      68a11a8 meta-environment: Ensure we append to the default TOOLCHAIN_NEED_CONFIGSITE_CACHE
      6cfed59 toolchain-scrpts: Fix sitecache issues with multilib
      fed80c3 staging: Strip files in sysroot
      6f4304e bitbake: runqueue: Sanity check BB_NUMBER_THREADS
      810bf00 bitbake: runqueue: Handle BBHandledException correctly
      2ce9055 bitbake: server/process: Don't log BBHandledException
      c6918b6 bitbake: runqueue: Improve handling of fakeworker failing to start
      df123dd bitbake: event: Inject 'd' into event handlers
      69b6919 bitbake: bitbake: Add explict getVar param for (non) expansion
      86d30d7 meta: Add explict getVar param for (non) expansion
      f98c849 distro/package_regex.inc: Fix dbus version pattern
      a06a5ae bitbake: bitbake-user-manual-ref-variables: Added BBLAYERS_FETCH_DIR glossary item.
      dcb441c neard: remove unused service file
      c0123e5 rpm: Rebrand rpm custom macro paths to be distro specific
      a990d21 rpm: Fix lua 'print' statement capture
      db34474 rpm: Fix CVE-2013-6435
      3886107 rpm: Fix CVE-2014-8118
      5f0dfec distutils-common-base: add to, don't set, FILES_${PN}
      bfa8ae9 python-2.7/3.4-manifest.inc: add missing dependencies for python-netserver
      fbed86a python3-ctypes: Fix cross compilation for arm targets
      81e469b wic: removed unused command line option
      a4da21d wic: code cleanup: superfluous-parens
      4862a4c wic: oe-selftest: Add 3 tests of 'wic help' command
      40764a3 wic: Return error code when wic fails to invoke command
      5daadf8 wic: Integrated plugin docstrings into 'wic help plugins' output
      cfe6412 wic: Add missing docstrings to plugin classes
      553f332 wic: Code cleanup: bad-classmethod-argument
      9286213 wic: Document creation of empty partition
      410e272 oe-selftest: wic: Fix testcase
      2173a0e init-install: Properly delete partition table
      68d8f6d init-install: code cleanup: replace /dev/$device -> $device
      99a7c5b init-install: code cleanup: Replace tabs with spaces
      a10c448 init-install: Specify partition name in parted command line
      891cdac init-install: Specify filesystem type in parted command line
      1f7d16b init-install: Implement UUID support
      04bff65 init-install: Use GPT table with GRUB 2
      78bacee init-install-efi: Implement UUID support
      d040802 busybox: Enable UUID-related options
      411c276 initramfs-live-install: Add blkid to initramfs
      ff8ec3d image-live: Set syslinux timeout to 5s
      74603c4 rt-tests: bump version to v0.92
      b8d8d1d babeltrace: Fix invalid pointer free with trace collection
      f3a1bec dbus-test: Upgrade 1.8.10 -> 1.8.18
      955537c dbus: Upgrade 1.8.16 -> 1.8.18
      9497345 packagegroup-core-tools-profile.bb: Remove oprofile.
      5c1f244 packagegroup-core-sdk.bb: Drop distcc from the core-sdk.
      840d055 runqemu-internal: set mutual exclusiveness for serial and nographic options
      a155d24 runqemu-script: define console for qemuarm NFS booting
      67b9643 runqemu-internal: add support to boot arm64 qemu target via NFS
      8b1bc36 runqemu: fix MACHINE being detected as qemuarm for qemuarm64 kernel image
      3739d36 qt4-4.8.7: restore arm64 patches which are dropped by mistake
      b877c96 cups: upgrade from 2.0.2 to 2.0.3
      83836c5 openssl: fix building on x32 systems
      798daa7 Revert "distrodata: Remove unnecessary include of package_regex.inc"
      41423d9 lttng-modules: drop makefile patch
      f677b58 insane.bbclass: fix false negative in build-deps QA check
      ae9102b copyleft_filter.bbclass: Allow to filter on name
      b4c5f80 gtk+: Upgrade 2.24.27 -> 2.24.28
      04a1fea base.class: warn for invalid PACKAGECONFIG
      e344dc1 libpcap: add a dummy PACKAGECONFIG for bluez5
      00a3872 bluez5: remove alsa from PACKAGECONFIG
      695279b libsdl2: PACKAGECONFIGize
      914278e neon: fix compat issues with gnutls 4.3
      553305e logging.bbclass: avoid bashism in bbdebug()
      4caed87 distutils: regenerate pyc files after being modified by sed
      de18f75 security_flags.inc: remove duplicated over-rides
      8ef99a0 libxml2: Security Advisory - libxml2 - CVE-2015-1819
      64df52d piglit: Add missing inclusion of Xutil.h
      6353ee6 tzdata: update to 2015e
      eaf0980 tzcode-native: update to 2015e
      2054b29 devtool: deploy: fix preservation of symlinks and permissions/ownership
      e22c181 lib/oeqa/utils/commands: ensure get_bb_var() works when value contains =
      0899d9a classes/externalsrc: handle tasks with existing lockfiles
      32ed5f5 recipetool: appendfile: fix file command error handling
      44e0369 recipetool: appendfile: clarify help text
      07f7665 devtool: use DevtoolError for error handling
      5648a79 devtool: remove some unused return values
      6027809 devtool: split out 'patch' update mode into a separate function
      18efa99 devtool: split out 'srcrev' update mode into a separate function
      f5ea48c devtool: slight simplification of path splitting logic
      962f8a4 devtool: simplify few conditionals a bit
      1f48307 devtool: simplify the logic of determining patches to be removed
      5d7437e devtool: update-recipe: do rev parsing in a separate function
      f0ab93f devtool: refactor bb task execution into a separate class
      6e039bf devtool: fix wrong indentation
      7a98387 bitbake: bitbake-user-manual-ref-variables.xml: Added BB_ALLOWED_NETWORKS desc.
      5efbaaf packagedata: Fix to ensure variables expand correctly
      ed3b424 wayland: Fix hardlink corruption issue
      04e2dd9 multilib_global: Stop empty space influencing RPROVIDES
      af377d6 package_ipk/deb/rpm: Improve OVERRIDES handling
      379a030 bitbake: toastergui: prevent contamination of libtoaster context
      4f459fc bitbake: toaster: Add global ajaxError handler
      0573e2d bitbake: toaster: Add ajax loading spinner
      eb28534 bitbake: toaster: tables: Remove obsolete field_name for select column
      5a013b5 bitbake: toaster: Make toaster script to work in dash
      0eaf070 bitbake: toaster: Code cleanup: bashisms
      58cd4a1 bitbake: toaster: fixes after refactoring
      27f5137 bitbake: toastergui: remove xhr_datatypeahaed layerdeps call
      a8be6d4 bitbake: toastergui: remove xhr_datatypeahead and xhr_XXXbuild
      88dca45 bitbake: toaster: eliminate duplicate querysets
      7c2b866 bitbake: toaster: add class template view for single-object pages
      51ae1de bitbake: toaster: toastertables raise errors
      c941743 bitbake: toaster: ToasterTables add computational fields
      58600cf bitbake: toaster: toaster table add raw data
      4a2a057 bitbake: toastergui: remove xhr_projectedit and xhr_projectinfo URLs
      b1c91d0 bitbake: toastergui: use defaults on xhr_datatypeahead parameters
      d9341d1 bitbake: toaster: toastertables REST refactoring
      751e918 bitbake: convert all project-based view to JSON APIs
      afe06e3 bitbake: toaster: move project data typeahead to the REST API
      94aa0d5 poky-tiny: Update kernel to 3.19
      f268480 pulseaudio: fix version when building inside a dirty git checkout
      19d61b9 libpostproc: pass correct libdir
      1d350d4 Add license file XFree86-1.0
      e53c871 gcc-source.inc: fix STAMPCLEAN to avoid race issue
      7a4d72d oeqa/parselogs: Added some more errors to the whitelist.
      ee66396 oeqa/parselogs: The logs are now copied and parsed locally.
      f355baa libatomic-ops: 7.2 -> 7.4.2
      346769c piglit: upgrade to more recent srvrev
      7b08012 cmake: extend CMAKE_MODULE_PATH instead of setting
      ad0aa8d oeqa/utils: Added timeout decorator for testcases.
      f08baee cracklib:Fix an error in the patch
      8db97b5 libgpg-error: Upgrade 1.18 -> 1.19
      b108e3e blktrace: 1.0.5 -> 1.1.0
      f0651f4 sysstat: DEPENDS on base-passwd
      4467c72 mtools: add PACKAGECONFIG for libbsd
      041af82 multilib.bbclass: use package_qa_handle_error
      ad9542c update-rc.d.bbclass: add MLPREFIX when set RRECOMMENDS
      6119f30 bind: ensure searching for json headers searches sysroot
      62136c0 xorg: fix VESA int10 error
      c929827 neon: build the test suite to verify neon links
      b012fc8 cups: clean up autotools use
      8c9acb7 x264: r2265 -> r2491
      e28c111 yasm: 1.2.0 -> 1.3.0
      89734f8 libevdev: 1.3 -> 1.4.2
      c516f5f qmmp: 0.7.7 -> 0.8.5
      6aa3cdd gstreamer1.0-libav: fix build for i586 with gcc
      6e54d3b gpgme: 1.4.3 -> 1.5.4
      bd418a0 dropbear: 2014.66 -> 2015.67
      daa597e augeas: 1.2.0 -> 1.4.0
      3e42d79 clutter-gst-3.0: 3.0.4 -> 3.0.6
      860265e libpfm4: 4.3.0 -> 4.6.0
      d1fc21e busybox: fix the wrong help text for chown
      47c4e76 busybox: fix double free error for ifconfig
      7ab1ae6 busybox: sync the patches for git version
      4fb4732 build-appliance-image: do_vmdkimg replaced by do_vmimg
      a0b5164 boot-direct.bbclass: Add support for VDI images
      fe0f643 sanity.bbclass: Prevent 'vdi' and 'live' to be built together
      1177419 documentation.conf: Document do_vmimg
      24be4df qemu: Add support for UUID
      a13c51e image: Support for VDI
      d59d876 wic: Move validation of --ptable option to wks parser
      69bbf80 wic: Add help for --part-type and --use-uuid options
      998273a wic: oe-selftest: Configure testing of gpt/UUID image
      b71f4d0 wic: Use partition UUID in directdisk-gpt
      708ce3f wic: Set type GUID and UUID for partition
      9f40e6a wic: Add parameter 'uuid' to Image.add_partition method
      c3148c6 wic: Refactored getting root device name
      5b4ab4e wic: Fix format string
      0510591 wic: Generate random uuid for partition
      8535185 wic: Add --use-uuid partition option
      0e36497 wic: pylinted partitionedfs.py
      4f9fe5b wic: replaced __run_parted with exec_native_cmd
      dec9156 wic: move checks to exec_native_cmd
      77e9243 wic: removed exec_cmd_quiet and exec_native_cmd_quiet
      921ea71 wic: Test creation of directdisk image with GPT table
      ebc6936 wic: create directdisk-gpt.wks
      9682d8f wic: Make _ptable_format public
      179fb20 wic: Use gptmbr.bin MBR for gpt partitions
      76f5035 wic: Add gpt to the list of supported partition table formats
      b7b3e46 wic: check if part_type is set only for msdos partition table
      0a13707 wic: set legacy_boot flag for gpt partitions
      e5a1175 python-smartpm: change "already installed" warnings into info messages
      0090170 lib/oe/rootfs: tidy up log warning reporting
      63e6259 insane: errors out on binaries installed by allarch-inherit recipes
      062678c sysvinit: Only enable recipe in builds where its applicable
      a3e60c3 sanity.conf: Bump minimum bitbake version to 1.27.1 for sstate change
      ccb2d1b sstate: Add eventhandler which cleans up stale recipe data
      926de56 bitbake: bitbake: Bump version to 1.27.1
      4bedfef bitbake: cooker/event: Add an event which lists all stamps reachable after parsing
      c93f334 poky.conf: use correct GPLv3 license name
      90b58da x264: use x86 over-ride instead of i586
      c116da8 lame: use x86 over-ride instead of i586
      cfd7d6e gstreamer1.0-plugins-base.inc: use x86 over-ride instead of i586
      1f3b403 python-numpy: use x86 over-ride instead of i586
      ba74614 scripts/jhbuild: remove
      02a1a8f libsndfile: Security Advisory - libsndfile - CVE-2014-9496
      e2603e5a autogen: redirect the log file to build dir
      20a71d6 distrodata: Use Python CSV instead of did by hand
      56072bb distrodata: checkpkg make usage of oe.recipeutils.get_recipe_upstream_version
      2a4ee94 distrodata: Remove unnecessary include of package_regex.inc
      a8c7467 recipeutils: Improve get_recipe_pv_without_srcpv function
      9634494 xkeyboard-config: Upgrade 2.14 -> 2.15
      1a6bcd7 xf86-video-vmware: Upgrade 13.0.2 -> 13.1.0
      0131986 xf86-video-omap: Upgrade to 0.4.3
      81b0a09 xf86-input-synaptics: Upgrade 1.8.1 -> 1.8.2
      28d9b2d xf86-input-keyboard: Upgrade 1.8.0 -> 1.8.1
      a2caca7 xf86-input-evdev: Upgrade 2.9.1 -> 2.9.2
      09fd6c8 python3-pip: Adds recipe for python3-pip
      c4553e0 python3-distribute: Upgrade to python3-setuptools 15.2
      ae67f74 python3-io: Fixes compilation of python3 ssl module
      3b1f687 python3: Fix distutils import error
      84105eb python3: fix pyconfig.h installation on target
      39abb87 rpm: remove extra dev and dbg packages
      673a49a lsof: Remove LSOF_OS
      554e255 libpam: Fix wrong crypt library detection
      f73abe5 sgmlspl-native: 1.03ii -> 1.1
      9c8ed1b cmake: Whitespace fix
      759ac65 alsa-tools: add dependency glib-2.0
      60d67fe alsa-plugins: enable alsa-plugins-pulseaudio-conf conditionally
      ba93bdd qt4: upgrade to 4.8.7
      20a3a36 scripts/combo-layer: Fix exit codes and tty handling
      ffd9a4b bsps: update SRCREVs to the 3.19 latest
      be0c6ec meta-yocto-bsp: bump to linux-yocto 3.19 for the non-x86 BSPs
      ffaa0f1 bitbake: parse/BBHandler: Avoid repeatedly resetting FILE
      7fff2ed xserver-xorg: always enable DRI2 by default
      ea63603 linux-yocto: update beaglebone, mpc8315e and edgerouter to 3.19
      fcc67ae xserver-xorg: Upgrade 1.16.3 -> 1.17.1 (OELAYOUT_ABI change)
      8b5cb86 distro/package_regex: add stable branch regex for Pango
      8313d6e dosfstools: Add recipe for v3.0.28
      87d6717 glib-2.0: 2.44.0 -> 2.44.1
      359585a ethtool: 3.16 -> 4.0
      46ccf0a debianutils: 4.5 -> 4.5.1
      5143631 python-nose: 1.2.1 -> 1.3.6
      0c2f1ce python-mako: 0.9.1 -> 1.0.1
      9052526 liberror-perl: 0.17023 -> 0.17024
      f63e9b3 xserver-xorg: Upgrade 1.16.3 -> 1.17.1 (OELAYOUT_ABI change)
      0420f7f distutils.bbclass: consistency between error message and setup.py's command
      68ffb9a libav: upgrade to 9.18
      86319df btrfs-tools: 3.18.2 -> 4.0.1
      d66e6d5 alsa-plugins: Include missing sys/select.h
      91b7c88 binutils: Update to tip of 2.25 branch
      0d45914 gdb: Minor upgrade to 7.9.1
      8a5df28 glibc: ignore for musl/uclibc but only for target recipes
      9dbb2d2 glibc: remove duplicate --disable-nscd from EXTRA_OECONF
      933aaf7 rsync: backport a patch to fix CVE-2014-8242
      9ee388f gawk: upgrade to 4.1.3
      ed3283b util-linux: upgrade to 2.26.2
      1fd152f glibc: Fix __memcpy_chk on non-SSE2 CPUs
      f21f0d7 packagegroup-core-full-cmdline: remove lighttpd
      8c6bd8a recipeutils: Add get_recipe_upstream_version and get_recipe_pv_without_srcpv functions
      7cd3c60 boost: fix build for mips
      801436b sstate: Add note when performing sstate mirror checks
      1f839f2 sstate: Parallelise checkstatus calls for sstate mirror
      5331bbc oe/utils: Add simple threaded pool implementation
      9fd3c7e soc-family.inc: Add a default SOC_FAMILY value
      2389d4c base: Fix license checksum rebuild problems
      5cc614e qt4: unconditionally disable gstreamer 0.10 support in qt webkit
      1d0e217 xserver-nodm: Support reboot from inside X
      1d22b56 gnutls: control zlib support via PACKAGECONFIG
      1a180b6 gnutls: use pkg-config to locate zlib
      e092f15 openssl: Backport upstreamed version of patch to fix build on mips64
      db3aafa alsa-plugins: Install 99-pulseaudio-default.conf when pulseaudio is enabled
      5973353 mesa: Upgrade 10.5.4 -> 10.5.6
      63a409a python3: fix build for shared object
      511865f alsa-tools: update makefile_no_gtk.patch
      30adf4b grep: fix CVE-2015-1345
      fb0da9e gpgme: fix CVE-2014-3564
      1c5e37a security_flags: Add comment about what it does and who uses it
      ac87ae7 lttng-ust: 2.6.0 -> 2.6.1
      23371df nasm: 2.11.06 -> 2.11.08
      b47ef4f gnupg: 2.1.2 -> 2.1.4
      917ca4d man-pages: 3.83 -> 4.00
      3ac8fb3 cracklib: 2.9.3 -> 2.9.4
      df093b3 python-git: 1.0.0 -> 1.0.1
      1b193fd git: 2.3.7 -> 2.4.2
      b268343 debianutils: 4.4 -> 4.5
      6e23a3d bitbake: toaster: more HTML5 fixes
      225daf4 bitbake: toaster tests: enable url check test
      2914391 bitbake: toaster/tts: Fix tests
      356809f bitbake: toaster: enable no browser start
      b3189f3 bitbake: orm: Fix all failing unit test
      3480be7 bitbake: bldcontrol: Fix all failing unit tests
      22a0d8a bitbake: toastergui: add tests for xhr_datatypeahead calls
      65c805e bitbake: toastergui: tests for the all-projects API point
      fea4a82 bitbake: toasterui: replace cookie-based preferences with session data
      1b6a50c bitbake: toaster: refactor checksettings command
      52fe880 bitbake: toastergui: Consider task name when restarting a build in /builds
      6fab4cb bitbake: toaster-gui: Show task name for the builds in /builds
      e5aa569 bitbake: toaster: Add an invalidate cache method on data update signal
      2de01a6 bitbake: toaster: Port layerdetails to ToasterTables
      a0ea663 bitbake: toaster: Add a simplified ToasterTable template
      e3a4905 bitbake: toaster: Fix toastertable header
      6a9efef bitbake: toastergui: show relative paths in configvars view
      9dcfa32 bitbake: toastergui: table header bring back
      56c5ff9 bitbake: toaster logger: assign projects to all builds
      e3e85bd bitbake: toaster logger: refactor recipe and layer file paths
      a5236be bitbake: toaster: enable server-side sessions for all usages
      5da543c bitbake: toaster: Fix build button current project race
      b8caddb bitbake: data: Make expandKeys deterministic
      3db9d6e bitbake: ConfHandler: Fix bogus dependency problems
      91c45c0 bitbake: BBHandler: Drop cwd from search path
      08b77c8 bitbake: cooker/utils: Improve parsing profiling
      553267d bitbake: tests/data: Add key expansion unit test
      bde0f60 bitbake: tests/data: Add log parsing test code
      8d8b02a bitbake: data: Revert expandKeys warning move
      30cba37 bitbake: data: Clean up expandKeys None value handling
      c7f01ce harfbuzz: upgrade to 0.9.40
      46bca1b wpa-supplicant: upgrade to 2.4
      2d2d5e6 ppp: Security Advisory - CVE-2015-3310
      0bbd310 boost: extend libraries with log and random
      68d7124 xkeyboard-config: bring back Philippines keyboard symbols
      7a4c52c gcc-source.inc: set PATH for gnu-configize, not for cd
      5a2d985 qemu: fix CVE-2015-3456
      2efd475 apt: upgrade to 1.0.9.9
      320d766 waffle: Upgrade 1.3.0 -> 1.5.1
      346ef92 wic: refactored processing of wic exceptions
      9761bec wic: do not strip traceback
      3b627bb update-rc.d: Improve RRECOMMENDS handling
      2f0fcb2 bitbake.conf: Use immediate expansion for os.uname()
      ed1555c avahi: Fix key expansion variable masking
      a05663b distro/upstream_tracking: remove stale update reasons
      374064c distro/package_regex: Add extra patterns for GNOME stable release packages
      d60a207 distro/package_regex: add patterns for GNOME stable releases
      1604ca2 kernel: Build uImage only when really needed
      a33a567 kernel: Add basic fitImage support
      d2e26ef kernel: Build DTBs early
      bb68c7c kernel: Separate out uboot_prep_kimage
      7f131b8 kernel: Pull uImage generation into separate class
      12f983b kernel: Pull out the linux.bin generation
      88d79fe kernel: Rework do_uboot_mkimage
      92864a9 kernel: Clean up KERNEL_IMAGETYPE_FOR_MAKE
      af6405e grep: Fix LSB NG Cases for gplv2 version.
      fe405a4 native: Improve PROVIDES handling
      a9cb4dd autotools: Use space with prepend to clean up variable whitespace
      a32937c bitbake: data: Move warning code to the first loop for performance
      9e9d052 bitbake: siggen: Don't crash if number of task dependencies change
      7fab819 bitbake: cache: Clean up getVar usage to modern syntax/style
      5ee1222 bitbake: bitbake-worker: Fix regression with unbuffered logs
      70c1d22 bitbake: fetch/hg: Disable checksums for archived downloads
      51701777 bitbake: fetch2/git.py: Add gitpkgv_revision alternative version information
      f03e108 bitbake: fetch2/__init__.py: Make get_srcrev output configurable
      2db5dd7 packagegroup-core-x11-sato: add PulseAudio
      bd9177c pulseaudio-client-conf-sato: initial recipe
      862ce8a pulseaudio: conf-parser: add support for .d directories
      5246fc0 pulseaudio: client-conf: Add allow-autospawn-for-root
      5d71a49 alsa-plugins: initial recipe
      55fe5a0 eglibc-use-option-groups: Conditionally exclude c++ tests
      7a7c6b0 image.bbclass: Add a method for creating a companion debug filesystem
      fa00c9a openssl: Fix build with gcc5 on mips64
      d6e0c3f npth: Upgrade to 1.2
      b6dc547 libassuan: Upgrade to 2.2.1
      71b4ca3 boost/bjam-native: Upgrade to 1.58.0
      d1ce219 valgrind: remove arm tests that don't compile
      ace08a2 package.bbclass: Include missing variables on PACKAGEVARS
      c49ff17 libpng: Upgrade 1.6.16 -> 1.6.17
      5f60fd4 libpng12: Upgrade 1.2.52 -> 1.2.53
      29d5503 oe-selftest: Build wic runtime requirements and images before testing
      7a4d637 gettext-minimal-native: Disable the unnecessary check in iconv.m4
      ef19b19 bitbake.conf: programatically generate COMBINED_FEATURES
      a60aeca utils: add helper to perform the intersection of two string lists
      a497998 openssl: drop the padlock_conf.patch
      ea2428a packagegroup-core-qt4e: make phonon-gstreamer plugin optional
      87d20e4 gnutls: remove --with-libz-prefix configure option
      98a3f87 toolchain-scripts.bbclass: fix quoting for CCACHE_PATH
      a55e99f squashfs-tools: build and install unsquashfs as well
      74c7efb wic: Make sure file exists before removing it
      1b2332d classes/buildhistory: ensure that git user email and name are set
      e1de8af initrdscripts: make boot drive detection more generic
      9da81df buildstats-summary: add eventmask
      65c0027 rootfs.py: Make set -x not break rootfs creation
      c1eefc5 libepoxy: make buildable for x11-less environments / update to latest version
      887fcb5 linux-yocto/3.19: NFC config, Braswell fixes and axxia support
      c1ed724 linux-yocto/3.19: CONFIG_ATA_BMDMA and gcc5 ARM64
      be1442e linux-yocto/3.19: Braswell DRM fixes
      03abfcb linux-yocto: drop suggestion of devshell for patch failures
      203eadf linux-yocto-custom: clarify bbappend versus copy in comments
      f92f336 linux-yocto/3.19: braswell DRM/i915 Graphics fixes
      ada5e49 linux-yocto/3.14: cavium and configuration changes
      2f41470 bitbake: bitbake-user-manual: Updated "Delete a Task" section for broken deps
      decb28f genericx860common.inc: Enable using the 3.19 kernel
      ef8a781 xvinfo: upgrade to 1.1.3
      175c724 xkeyboard-config: upgrade to 2.14
      b88a24a xdpyinfo: upgrade to 1.3.2
      b7a051f puzzles: upgrade to latest srcrev
      9d8c61a sanity.bbclass: import subprocess in correct function
      45bf783 license_class: Add explicity avoid of CLOSED license in validations
      b3fba03 gtk-engines: Make gtk-engines-dev installable by dropping dependency to not generated gtk-engines package.
      a0cbb5b rootfs.py: Improve rpm log_check_regex
      b29ca69 zlib: clean up base_libdir symlink
      45b8e62 combo-layer: handle unset dest_dir in sanity_check()
      c60aac5 distro: remove obsolete gstreamer 0.10 packages from distro configuration
      bedf028 upstream_tracking.inc: Remove obsolete reasons
      86a49aa libxdmcp: make libbsd usage deterministic
      5bcf966 sstate: Add handling of do_shared_workdir task
      b5ba70b sqlite3: upgrade to 3.8.10
      2af3009 midori: fix build with GLib 2.44
      929b179 testapps: remove old gst-meta-audio/video dependencies
      66e2eef sanity.bbclass: improve the sanity check for PATH and BBPATH
      9ceff87 pinentry: package update to 9.2
      91681fe alsa-utils: upgrade to 1.0.29
      1416986 alsa-tools: upgrade to version 1.0.29
      3a864e5 vala: upgrade to version 0.28.0
      f8232d7 gstreamer: remove 0.10 recipes
      443d25a webkitgtk: disable audio and video support
      4c67abd qt4: disable Phonon framework
      b2365c4 qt4: remove Qt Mobility
      50ce68a clutter-gst: update to latest upstream version 3.0.4
      d30b1b0 python-gst: remove obsolete Python gstreamer 0.10 bindings
      336ddb3 icu-native: fix hard paths in native icu
      d642865 xkeyboard-config: remove GPLv3 files
      0e38b69 libxx86vm: upgrade to 1.1.4
      c096376 libxvmc: upgrade to 1.0.9
      d561834 libxt: upgrade to 1.1.5
      db6ca6b libxshmfence: upgrade to 1.2
      a8a2b8d libxrender: upgrade to 0.9.9
      0e99e1a libxrandr: upgrade to 1.5.0
      f158d2e randrproto: upgrade to 1.5.0
      3ddc5cb libxkbfile: upgrade to 1.0.9
      c271fae libxfont: upgrade to 1.5.1
      9c6576b libxdmcp: upgrade to 1.1.2
      bfb1cf7 libx11: upgrade to 1.6.3
      b52526d libfontenc: upgrade to 1.1.3
      9fbfb5c font-util: upgrade to 1.3.1
      3eab94c pcmciautils: fix the parallel building issue
      7539c1f devtool: update-recipe: add option to write changes to bbappend
      fbfc06a recipetool: add appendfile subcommand
      c63adf5 oe-selftest: move recipetool tests to their own module
      2298b4a lib/oe/patch: use with open() for all file operations
      3d0418a devtool / recipetool: ensure bb.note() gets printed
      f302457 msmtp: Upgrade to 1.6.2
      e5ef343 liburcu: Upgrade to 0.8.7
      6dcb8ef libinitscripts: Upgrade to 9.63
      550a0ae libidn: Upgrade to 1.30
      f49d90a libksba: Upgrade to 1.3.3
      16caaab bitbake: bitbake-user-manual-customization.xsl: Pointing to mirrors for XSL files.
      7310c3c bitbake: fetch/git: Fix uri in git checkstatus
      8b8859a bitbake: toaster: Remove dependency on daemon application
      37c0b98 bitbake: localhostbecontroller: Fix server search debug message
      3371a7b bitbake: fetch2/hg.py: add clean function
      aefc80c bitbake: lib/bb/utils: fix and extend edit_metadata_file()
      ba0546b bitbake: lib/bb/utils: fix several bugs in edit_metadata_file()
      0d9c452 bitbake: lib/bb/utils: add function to get layer containing a file
      40b58b1 meta-yocto-bsp: Add genericx86* BSP to use 3.19
      37fe48d glibc: CVE-2015-1781: resolv/nss_dns/dns-host.c buffer overflow
      bc162d2 bitbake: tests/parse: Add file missing from previous commit
      c2bb602 wic: remove intermediate partitions
      71626c1 bitbake: tests/fetch: Add mirror of mirror tests
      2be2271 bitbake: fetch2: Improve mirror building function error handling
      b614049 bitbake: fetch2: Allow GIT_SMART_HTTP to be passed through
      5d42679 useradd.bbclass: Remove base-passwd dependency
      4075192 devtool: if workspace layer exists, still ensure it's in bblayers.conf
      293c82b devtool: deploy-target: use tinfoil instead of bitbake -e
      5796fe4 lib/oe/recipeutils: add a parse_recipe_simple() function
      1bab18f devtool: fix build env command execution error handling
      18114bb devtool: deploy plugin: fix bad indentation
      7883af3 devtool: add missing docstrings
      c977cdf devtool: rename unused variables
      87fba31 devtool: remove unused imports / re-imports
      89fb8c5 devtool: extract: remove patches when S=WORKDIR
      4faa0cd gstreamer1.0-plugins-bad: Move EGL requirement for Wayland
      05ea29b xserver-xorg: add PACKAGECONFIG for wayland and add xserver-xorg-xwayland
      24b8347 native.bbclass: avoid unintended substring replacement when setting PROVIDES
      cdf8180 lttng-modules: Update to stable version 2.6.1
      e5f9a2c Revert "libsdl: depends on libglu when x11"
      0cf9ef0 cairo: make xlib and libxcb dependencies explicit
      26fcfbb base-files: Remove /proc/bus/usb from fstab.
      3f8a47b automake: simplify perl location forcing logic
      226ba5c autoconf: simplify perl location forcing logic
      c41b5b6 bitbake: bitbake: fetch2/git: Add URL when latest_revision generates an exception.
      2a56445 bitbake: tests/parse: Add very basic start of parse tests
      fd73114 bitbake: BBHandler: Error for incomplete function definitions
      c5316d4 bitbake: tests/fetch: ensure fetch tests preserve current dir
      f5a87b4 bitbake: fetch2/git: ensure the unpacked origin remote points upstream
      1dc2ee9 bitbake: runqueue: Handle cases where siginfo is now a parameter to the hashvadlidate function
      a485c2b boost: properly fix do_boostconfig re-execution
      79a2fc2 python3: Upgrade from 3.4.2 to 3.4.3
      1237db6 sstate: Improve HASHCHECK function to make siginfo configurable
      f5f2467 kernel/rm_work: Improve interaction
      fab7da4 poky.conf: Fix git URL example
      e05be1f bitbake: toastergui: tables updates for HTML5 compliance
      80ca4f0 bitbake: toaster/contrib: adding TTS squashed patch
      23f5b00 bitbake: toaster: Port All recipes, layers and machines to ToasterTables
      7f8c447 bitbake: toaster: Add toaster table widget
      2ac26e4 bitbake: toaster: managedcontextprocessor requires Project imported
      ec8bd70 bitbake: toaster: Remove old bldviewer application
      c5a1623 bitbake: toaster: fix html5 compliance
      35d75c8 bitbake: toastergui: change the import layer action help text
      534da08 base: Avoid find race
      cf8c2e3 glibc: Fix x32 make race
      3e7dde7 oeqa/utils: Fixed a problem with get_bb_var not returning right variable.
      13fb855 libevent: add ptest
      942ec74 systemd: removing workaround odering journal after remote-fs.target
      11b8f34 alsa-tools: set CLEANBROKEN
      0bc3a79 systemd.bbclass: drop has_exactly_one_service setting
      3fb1532 strace: add PACKAGECONFIG for bluez
      b92a75c socat: fix for parallel build
      5f165e1 ghostscript: 9.15 -> 9.16
      109d670 apr: 1.5.1 -> 1.5.2
      27387f5 libpcre: 8.36 -> 8.37
      bbb00e3 coreutils_6.9.bb: Fix LSB NG Cases.
      7a483d1 bind: separate B and S
      3cad583 xf86-video-cirrus: Upgrade 1.5.2 -> 1.5.3
      0ac9aa1 packagegroup-core-qt: add x11 to REQUIRED_DISTRO_FEATURES
      d003b90 at-spi2-atk: add x11 to REQUIRED_DISTRO_FEATURES
      12d02d5 recipes-sato: add x11 to REQUIRED_DISTRO_FEATURES
      3a0a27f gst-plugins-gl: add x11 to REQUIRED_DISTRO_FEATURES
      b741051 recipes-graphics: add x11 to REQUIRED_DISTRO_FEATURES
      f609f7a recipes-extended: add x11 to REQUIRED_DISTRO_FEATURES
      41719e1 libowl/settings-daemon/libnotify: add x11 to REQUIRED_DISTRO_FEATURES
      f744f0b libsdl: depends on libglu when x11
      45c008b libglu: add x11 to REQUIRED_DISTRO_FEATURES
      5f21aa0 mesa-demos: only enable glu when x11 in DISTRO_FEATURES
      d5f7e09 mesa: fix do_install_append
      212d9d4 libxml2: fix python path and add libxml2-python
      52e465f ncurses: inherit pkgconfig
      9f83916 qt4-x11-free: make virtual/libgl dependency conditional
      f6e13ec sanity.bbclass: Increased verbosity for connectivity check
      c9ec542 unzip: Security Advisory -CVE-2014-9636 and CVE-2015-1315
      654f3e5 kernelshark: fix for rebuild
      a3eda32 gcc-5: fix installed-vs-shipped
      b12d79e module/module-base/lttng-modules: Improve kernel module dependencies
      57aeb9e openssl/orc: virtclass-native -> class-native
      7d02344 stat: fix SRC_URI
      2682b78 elfutils: Disable the unnecessary check in iconv.m4
      f65a682 gcc5: Add back g++ sysroot patch
      80f59a3 meta-yocto/distro: Added Ubuntu 15.04 to SANITY_TESTED_DISTROS
      099dbf3 maintainers.inc: update MAINTAINERS
      4df4098 bitbake: toaster: adding art missing from Bootstrap
      2d09cb2 gcc5: Add PR65779 patch to fix powerpc compile issues
      e6bb5db insserv: Remove
      464ee2e dbus: Fix do_install files outside ${D}
      59ce7d0 bitbake: fetch2: Add BB_ALLOWED_NETWORKS support
      9e24bde bitbake: fetch/hg: support submodules
      d30aedc bitbake: fetch2: Allow git to use a different CA Bundle with private keys
      cc63e15 bitbake: bitbake-user-manual-metadata.xml: Alphabetized varflag list.
      0e8f83f bitbake: bitbake-user-manual-metadata.xml: Added two new varflag descriptions
      3c4f377 bitbake: toastergui: removing unused views
      e7f4d9c bitbake: toastergui: fix whitespace after URL
      94d38a4 bitbake: toasterui: URL refactoring
      a5193d3 bitbake: toastergui: Consider task name when restarting a build
      44b7b67 bitbake: toaster: <Add class id to a few columns>
      1e625fc bitbake: toaster: fix typo in format string
      b546be9 bitbake: toaster: Code cleanup: indent
      13e8814 bitbake: toaster: Make toaster script working in zsh
      3b1bb2d bitbake: toastergui: decrease load time for configuration page
      84a294e bitbake: toaster: clear up toaster shutdown for mac osx
      2d69dd2 license_class: license_create_manifest improvment
      b394cd4 license: Add support for handle INCOMPATIBLE_LICENSE in manifest creation
      bb3469f license: Split visit_string in LicenseVisitor
      8c7082d license_class: Generalize license_ok function
      b971eb0 license_class: Reimplemented manifest creation in python
      7405f47 distro_features_check: add any of test
      dcb8f89 combo-layer: improve merge commit handling
      5179d7c weston-init: support system's configuration file
      54870dc dbus: upgrade to 1.8.16
      4e5d6c7 gcc-4.9, gcc-5: Use variable SYSTEMLIBS_DIR instead of hardcoding it for aarch64
      9ba0bf8 gcc: Add 5 recipes
      a28371b kernel-yocto: propagate in tree defconfigs to WORKDIR
      5929d94 linux-yocto/3.14: fix qemumips build error
      c126709 linux-yocto: fix race between checkout and meta data generation
      61e077e linux-yocto/3.19: Braswell support and bug fixes
      fbbf054 xserver-xorg: Make xinerama selectable via PACKAGECONFIG
      ccd0bed gstreamer1.0: Make check selectable via PACKAGECONFIG
      5ac3e91 gstreamer1.0: convert GSTREAMER_1_DEBUG to PACKAGECONFIG
      c4fc58e bind: disable the HTTP statistics service by default
      4b042c2 bind: update libxml2 detection patch
      0595667 bind: upgrade to 9.10.2
      29c7111 bitbake: prserv: serv.py: remove unused and duplicate imports
      1fe445d bitbake: toaster: filtersnippet remove redefinition of filter type key
      286da98 bitbake: toaster: Add links to the layer add notification
      bec5d16 bitbake: toaster: Refactor and expand layer add remove mechanism
      a4cfca6 bitbake: toaster: projectapp Implement machine select command
      ed26a06 bitbake: toaster: Move project context variables to common scope
      4b59ba1 bitbake: toasterui: close build on BuildCompleted event
      7759cd4 bitbake: toasterui: proper exit code on toaster errors
      4a71102 oe-selftest: devtool: add a proper test to see if tap devices exist
      1f15117 devtool: fix for rename of gcc-source
      b7cff75 oe-selftest: devtool: fix broken URL in test_devtool_add_fetch
      78ec80a bluez: update to 5.30
      3176510 e2fsprogs: fix the CVE-2015-1572
      781cd0d curl: upgrade to 7.42.1
      0ea0f6d insane: Support aarch64 on musl
      2a743d6 libart-lgpl: Fix cross compiling
      02d0a00 kernel.bbclass: Fix race condition
      e01db42 classes/buildstats: misc cleanups
      9e9d25d classes/buildstats: don't catch all errors from mkdirhier
      c045129 classes/buildstats: whitespace cleanup
      6ca0be7 runqemu-internal: correctly set format for root FS as raw
      19d5755 qemu: upgrade to 2.3.0
      fc94b83 x11perf: Upgrade 1.5.4 -> 1.6.0
      b98e993 xhost: Upgrade 1.0.6 -> 1.0.7
      329245f xmodmap: Upgrade 1.0.8 -> 1.0.9
      fea20fd xev: Upgrade 1.2.1 -> 1.2.2
      14acb33 serf: update SRC_URI to use debian mirrors instead of googlecode
      fd673b4 libarchive: fix out of tree builds
      8381ffc kbproto: Upgrade 1.0.6 -> 1.0.7
      c7e524c randrproto: Upgrade 1.4.0 -> 1.4.1
      58830d3 xproto: Upgrade 7.0.26 -> 7.0.27
      bebf1ce python3: Disable pip to fix issues on the Autobuilders
      6599783 python3-native: Disable pip on native builds to fix Autobuilder issues
      0be72c2 python3-native: Fix pip install issue due to unclean build directory
      528a256 python3: Change python BASEVERSION to 3.4
      2912ad7 generate-manifest-3.4.py: Add fractions to ${PN}-numbers
      19149e6 python3: Upgrade from 3.3.3 to 3.4.2
      b2b59b1 poky.conf: remove SVK mirror
      fd584e0 connman: upgrade to 1.29
      1f6d4cc connman: code cleanup
      a2b98ef ghostscript: Add MicroBlaze support
      51985eb siteinfo.bbclass: Add MicroBlaze big endian target info
      8473de9 insane.bbclass: Add MicroBlaze big endian target info
      55c96db kernel-arch: Update mapping for MicroBlaze architectures
      09fa915 mirrors.bbclass: drop support for svk sources
      c4359d1 shared-mime-info: Upgrade 1.3 -> 1.4
      08d78e0 pseudo 1.6.5: less pointlessly chatty
      eb4306e bitbake.conf/base.bbclass: Drop PRINC support
      f841526 directfb: Correct bashism
      7a8f37d dev-manual: Updates to add Luna support for Eclipse
      b72cb0d ref-manual: Updated the "Image Features" section
      6192753 ref-manual; mega-manual: Edits to further define packaging process
      a2d770b poky-lsb: Select that latest LTSI, not a version which doesn't exist
      6773af5 directfb: Improve CFLAGS handling for x86
      d650772 security_flags: Add python-numpy to pie incompatible list
      ee1c1ea bitbake.conf: backfill bluez5 feature
      dbdf1ed bluez: remove bluez4 recipes
      11981a5 bluez4: add proper systemd support
      a7afc04 multilib: Tweak value of PN used for OVERRIDES
      ed3321d systemd: bring back the patch to customise root's $HOME
      39bd94a bind: remove 5 backport patches
      daf5113 libart_lgpl: Allow art_config.h to be generated at compile time
      29abd1f icu: Upgrade 54.1 -> 55.1
      f0ac290 freetype: Upgrade 2.5.4 -> 2.5.5
      8b96568 e2fsprogs: install populate-extfs.sh
      9f40031 linux-yocto-dev: introduce 4.1-rc development kernel
      358be3e perf: fix build (and feature tests) for 4.1-rcX
      383fb05 linux-yocto: add core bluetooth support to qemux86* and common-pc*
      e12d2be linux-yocto/3.14: refresh -rt support
      d755e76 systemd: remove unused patches
      90972c95 openssh: fix login fails for ssh -o Batchmode=yes with empty passwords
      aa2b636 boost/libxslt: Enable nativesdk to unbreak <bitbake universe>
      4255b32 wic: Add plugin for single partition disk
      fd254d0 wic tests: Move wic tests to oe-selftest infra
      6451c08 wic tests: Add docstrings to test methods
      9fbfd40 wic tests: Add functional tests for directdisk
      5bed033 qt4-embedded: add checking for AArch64 ilp32
      eea3a90 libcap: Avoid passing "-e" to make
      8bc5ccb oeqa/utils: Allow ~ in bblayers
      0d9903d libtasn1: Upgrade 4.0 -> 4.5
      014c9bc gnutls: Upgrade 3.3.12 -> 3.3.14
      1643a7f oe-selftest: devtool: add some tests for devtool add -f
      fa61a94 recipetool: allow specifying SRCREV via rev= in URI
      4502dae devtool: add: use the appropriate file naming and versioning for SCM recipes
      266ea28 devtool: add: add an option to fetch remote source
      a4fca1d recipetool: ensure git clone is standalone when extracting
      24e5ad2 recipetool: avoid second-level subdir when extracting
      bae7794 package: Fix license exclusion packaging errors
      24609d9 subversion: remove 1.6.X recipes
      c1ac5a8 pigz: set ALTERNATIVE for nativesdk package to empty
      145abfc elfutils: Security Advisory - CVE-2015-0255
      927bc71 linux-firmware: add NO_GENERIC_LICENSE for all licenses
      8651289 Revert "common-licenses: Add common license files for linux-firmware"
      9c2e961 license.bbclass: allow copying license not in common licenses
      462a873 pcmciautils: fix for parallel build
      a185a09 bison: fix parallel issue
      43a60fa rpcbind: 0.2.2 -> 0.2.3
      18ed8ec ltp: 20150119 -> 20150420
      1df3ea3 git: 2.3.5 -> 2.3.7
      a69a4e8 man-pages: 3.82 -> 3.83
      150fe37 dpkg: upgrade to 1.17.25
      8ca6988 curl: Fix wrong assumption about sizeof off_t on largefile systems
      aa38937 grub2: fix initrd size restriction bug
      7fc174f elfutils: enable fix-build-gcc-4.8.patch
      ddc6d09 texinfo: remove enumerate_greater_than_ten.patch
      1bd0115 libaio: remove libaio-generic.patch
      17f6cd2 lttng-modules: remove bio-bvec-iter.patch
      636cbe6 openssl: remove 3 patches
      2be3398 kmod: remove 0001-Makefile.am-fix-parallel-build-problem.patch
      1903369 logrotate: remove logrotate-CVE-2011-1548.patch
      7e23d9d libxml2: remove libxml2-CVE-2014-3660.patch
      2e31add nspr: remove nspr-CVE-2014-1545.patch
      31e6dda python3: remove sys_platform_is_now_always_linux2.patch
      8cf04ed python-numpy: remove 2 dangling patches
      f2db690 mesa: Upgrade 10.4.4 -> 10.5.4
      44f5b0e default-distrovars: Clean up gcc license issues
      bb77a36 libgcc-initial: Correctly reflect libgcc LICENSE
      7b88042 gcc-shared-source: Add PV to PN
      0321760 xserver-xorg: use GCC 5 patch from upstream
      db40969 bitbake: bitbake: reset build mtime cache before the build
      4eeae70 bitbake: bitbake: use sys.exit to simplify the code
      37e46e4 bitbake: bitbake: Check if bitbake versions match
      47e2dbd bitbake: bitbake: Handle BBMainException
      74dc936 split_and_strip_files: regroup hardlinks to make build deterministic
      9eb4222 lib/oe/package: Improve strip subprocess handling
      26997d1 lib/oeqa: Add sdk tests for gcc/perl/python
      527b28c autotools: Fix find races on source directory
      e794d09 testimage: Improve sdk handling of TEST_SUITES
      1ef8234 gpgme: Fix to use pkg-config in .m4 files
      94ed114 oeqa/targetbuild: Use DL_DIR for downloads if present
      591e6a6 sstate: Use SSTATE_DIR for FILESPATH
      0007b5c testimage: Fix sdk test manifest handling
      515a8b7 ref-manual: Updated the ELF Binary QA warning message
      6e4a1a0 dev-manual; ref-manual: Fixed &dash; issue
      ae736db libxfont: Security Advisory - libxfont - CVE-2015-1804
      8f8858b libxfont: Security Advisory - libxfont - CVE-2015-1803
      1abe116 libxfont: Security Advisory - libxfont - CVE-2015-1802
      d812d32 kern-tools: unify meta directory detection
      aee1b2a libarchive: Security Advisory - libarchive - CVE-2015-2304
      0a6e3a9 less: fix CVE-2014-9488
      b628843 rsync: backport a patch to fix CVE-2014-9512
      c3537bd kernel-devsrc: depends on virtual/kernel:do_install
      d6a579a gnu-efi: fix parallel issue
      5c93858 icecc.bbclass: blacklist libgcc-initial
      4817e01 libunwind: don't use gold for mips
      e346628 mesa: respect x11 in PACKAGECONFIG not DISTRO_FEATURES
      9686a10 udev-cache: improve error handling
      c62828e udev-cache: Remove unnecessary tar read from stdin
      b34412c alsa-utils: Remove double dependency on udev
      a03039c subversion: upgrade it from 1.8.11 to 1.8.13
      6bae518 populate_sdk_base: also record the host part into manifest
      87de892 ptest: add recommends to ptest-runner
      3ddd99d mkefidisk.sh: be more explicit with device error
      50623fd mkefidisk.sh: fix hanging on non-writeable device
      4d5c875 mkefidisk.sh: use script mode when running parted
      216d26a devtool: update-recipe: check if source tree is a git repository
      d6cd355 devtool: update-recipe: handle unversioned bbappends
      1d40692 devtool: reset: avoid errors in case file no longer exists
      e8db1cc devtool: add: use correct bbappend file name with -V option
      f1f9fab devtool: handle . in recipe name
      ca1f4d7 devtool: include bbappends in recipe parsing
      a8c7558 oe-selftest: devtool: fix test_devtool_update_recipe_git
      240b4ef devtool: modify: implement --no-same-dir
      ee0ff82 devtool: modify: use B=S if that is the default for the recipe
      46add1d xkeyboard-config: modified the license
      a61234e sysstat: upgrade to 11.1.4
      b92fd39 pciutils: upgrade to 3.3.1
      34ddfb6 linux-yocto/3.19: configuration updates and stable integration
      8c92444 tzdata: update to 2015d
      b69bf51 tzcode: update to 2015d
      b23855f insserv: Fix build with gcc5 and clang
      09fab50 fontconfig: Fix pkgconfig file generation to not have absolute paths
      7caffd2 fontconfig: Upgrade to 2.11.93
      3ec67a9 pkgconfig: Upgrade to latest git tip
      2a14041 gummiboot: upgrade 43 -> 48+git
      3d2e60f grub: Backport const qualifier fix for gcc-5
      fb4478e gtk+: Correct function prototype
      4c74306 gnome-icon-theme: Needs nls.m4
      9b19d65 subversion: Add -P to CPPFLAGS
      35a2acd lttng-tools: Add extern qualifier to declarations in .h file
      25105f8 mdadm: Fix inline semantics
      77c2e2d u-boot-mkimage: Backport fix from upstream to fix build with gcc-5
      44131ab xserver-xorg: Fix build with gcc-5
      2bdbadd glibc, packagegroup-self-hosted, packagegroup-core-lsb: Consider non-glibc libcs
      f6a2628 libsoup-2.4: Upgrade 2.46.0 -> 2.50.0
      b4b46c0 librsvg: Upgrade 0.40.6 -> 0.40.9
      0247a1e json-glib: Upgrade 1.0.2 -> 1.0.4
      e070ff8 hicolor-icon-theme: Upgrade to 0.15
      31e55d0 libxml-simple-perl/libconvert-asn1-perl: using PERLHOSTLIB
      f003674 curl: upgrade to 7.42.0
      7bfc989 systemd 219 -> system 219-stable
      a6ad418 oeqa/selftest/toaster: fix bad indent
      438b7e0 mtd-utils: enable mtd-utils-fix-corrupt-cleanmarker-with-flash_erase--j-command.patch
      2f78aeb populate_sdk_base: avoid executing empty function
      2d74cb4 uninative-tarball: delete the packagedata task
      9a91a1f yocto-project-qs: Replaced GNOME Mobile with GTK+ wordings.
      14d0b60 toaster-manual: Removed redundant video.
      92d9a29 ref-manual: Removed FAQ question for GNOME Mobile.
      ee19ce0 ref-manual: Fixed some dashes in the user input examples.
      5c27b8b ref-manual: Fixed some formatting on a user-input example.
      bed39bb ref-manual: Removed tag from profile-manual cross-ref
      d0ba89a bsp-guide: Fixed link to the OpenEmbedded style guide.
      e1518ee adt-manual: fixed formatting for user-supplied data in example.
      9a054c4 dev-manual: Applied some formatting for user input.
      87a60a2 dev-manual: Fixed link to Toaster Manual.
      7e1a9d9 dev-manual: Fixed a cross-ref link that used "here" as the link.
      acf537b dev-manual: Added Toaster to the list of ways to develop.
      527cf82 dev-manual: Removed a cross-ref link to "here"
      2747111 dev-manual: Updated branch descriptions for better manual maintenance
      031aba2 ref-manual: Removed "Intel Corporation" from the "Links" section.
      966dd98 dev-manual: Updated the poky definition in the "Terms" section.
      447a351 ref-manual: Updates to ELF binary QA warning - review changes
      d4dc2f8 dev-manual: Updated the "Enabling and Using the Tool" section
      b8d0927 dev-manual: Updated "Requirements" section for creating partitioned images
      7634512 ref-manual: Updates to the TCLIBC variable description
      2eb48c2 ref-manual: Updates to ELF binary QA warning
      f06cd40 ref-manual: Added glossary entry for EXTERNAL_KERNEL_TOOLS
      ddafde3 ref-manual: Fixed style sheet
      3985cef bash: explicitly define NON_INTERACTIVE_LOGIN_SHELLS in CFLAGS
      d477da6 shadow: fix `su' behaviour
      da1a288 gcc-4.9: backport from gcc trunk r212178
      4af6384 siteinfo.bbclass: Added Epiphany archinfo
      b16f22b insane.bbclass: Added Epiphany machine definitions
      376b6b7 image: zap_empty_root_password doesn't handle passwd file in shadow case
      bef3305 rootfsdebugfiles.bbclass: quick-and-dirty installation of additional files
      e156b08 ghostscript: add objarch.h for armeb
      f2a0a98 wic: code cleanup: wildcard imports
      1d0c338 wic: code cleanup: undefined variables
      eb9964e toolchain-shar-extract.sh: mention how to set up the SDK environment
      f61e572 classes/populate_sdk_base: Show title in SDK installer
      617a02d classes/populate_sdk_ext: add warning against editing configuration
      0c09ff2 classes/populate_sdk_ext: disable network connectivity check
      5b1a6ab devtool: force use of bash when running build within extensible SDK
      d997e75 nss: improve the script signlibs.sh
      9b1ad0e util-linux: Add lastb to alternatives
      775dedb alsa-lib: 1.0.28 -> 1.0.29
      b80a8fe u-boot.inc: make sure all counter variables are properly unset
      781165b bison: don't depend on help2man
      fc15878 init-install-efi.sh: fix gummiboot entry installation
      6467ad4 txdata: update to 2015c
      b3a9979 tzcode: update to 2015c
      3a6f221 gcc-target: remove gcc-plugin-dev from PACKAGES
      3189c5c libgcc: remove libgcov-dev from PACKAGES
      6834c08 curl: remove extra dev and staticdev from PACKAGES
      b07659e xz: remove liblzma-dev and liblzma-dbg from PACKAGES
      6787dbc bison: 2.7.1 -> 3.0.4
      2b49fba webkit-gtk: ANGLE doesn't build with bison 3
      4f35838 gstreamer: change priv_gst_parse_yylex arguments
      b20b0a6 python-git: 0.3.6 -> 1.0.0
      4b295e5 tcl: 8.6.3 -> 8.6.4
      243985f gnu-efi: 3.0.1 -> 3.0.2
      29361a0 fontcache: allow to pass different fontconfig cache dir
      71db576 oeqa/utils/decorators: Fix up frame selection
      7283022 recipes: Fix charset.alias for musl
      bd1aa28 mtd-utils: update to latest and fix static inlining
      9e901d8 libnfsidmap: Include sys/types.h for u_int32_t
      a4111d3 parted: Add patches to fix build on musl
      114dd78 distcc:Include missing fcntl.h in zeroconf
      c94d444 dosfstools: Fix build with musl
      5688e6c openssh: Upgrade 6.7 - > 6.8
      95f2534 coreutils: Add code to consider musl when selecting charsets
      3dcaab5 at: Remove glibc specific code
      1e4c6e8 strace: fixes for compilation failures with musl
      869a770 e2fsprogs: add ptest
      8fb1cd8 libunwind: use gold for all archs
      25217da pax-utils: 0.9.2 -> 1.0.3
      80d7ae1 liberror-perl: 0.17022 -> 0.17023
      04419c1 cryptodev: 1.6 -> 1.7
      6184951 dbus-glib: 0.102 -> 0.104
      59abe83 ccache: 3.1.9 -> 3.1.11
      aa091f9 directfb: 1.7.6 -> 1.7.7
      05395a5 cracklib: 2.9.2 -> 2.9.3
      fcc6092 sysvinit: Add lastb to alternatives
      ca2948a udev: Add RCONFLICTS/RREPLACES for udev-utils
      705f14d lz4: update package to 128 and SRC_URI
      b35e311 upstream_tracking.inc: bluez4 removed from oe-core
      e555851 maintainers.inc: remove info related to bluez4
      50c2ef0 image.bbclass: Allow to remove do_rootfs -> virtual/kernel:do_packagedata dependency
      167025e initscripts: Remove /etc/volatile.cache on upgrade
      6f03a8d base-files: Check for /run and /var/lock softlinks on upgrade
      72d88f2 bitbake: lib/bb/utils: add safeguard against recursively deleting things we shouldn't
      f9b1605 bitbake: cookerdata: Allow ~ in bblayers
      4c31f35 gmp: remove referencing paths from the build host
      ccb2feb cairo_1.14.2: Modified the license of cairo-trace.
      760dec2 libgcrypt: modified the license of dumpsexp.
      01fec9e mdadm: add ptest
      9a664b9 wic: try to find bitbake using find_executable API
      d7a9b5e devtool: call parse_recipe with correct arguments
      494bf2d classes/base: clarify S not set correctly warning
      d92970f lib/oe/package_manager: avoid traceback with no packages
      9fc5587 classes/package: clarify installed-vs-shipped message
      a23c938 lsb: provide lsb-core-ARCH
      32d2351 groff: fix RDEPENDS
      fa391a5 busybox: remove CVE-2014-9645 patch (already upstream in 1.23.x)
      bb9b0e3 strace: fix build for aarch64
      f40a2d6 libunwind: fix build with aarch64
      9a52901 aspell: inherit binconfig-disabled
      529c4c0 libepoxy: DEPENDS on virtual/egl and virtual/libx11
      21efa90 cracklib: add python support back
      e1bf753 syslinux: Fix syslinux-nomtools permissions
      203aaae bitbake: bitbake-user-manual: Cleaned up parallelism note and formatted user input
      547b189 bitbake: bitbake-diffsigs: consider the situation where sigdata and siginfo files having the same hash values
      abc7f15 bitbake: toaster: date range filter for project builds page
      db254cb bitbake: toaster: recipe path broken in recipe detail page
      77cad30 bitbake: toasterui: remove 'targets' from project notification
      c655227 bitbake: toaster: searching all projects table resets page count
      ac69236 bitbake: toaster: add layer source in admin throws an error
      86f982c bitbake: toasterui: correct terminology in landing page
      0405ef3 bitbake: toaster: BuildButton target input allow building targets with tasks
      fab29bd bitbake: toaster: base.js minor jshint fixes
      65e9859 bitbake: fetch/git: Remove a possible trailing '/' in subpath
      3c0664b bitbake: toastergui: minor spelling fixes
      02881a8 documentation: Preparation for 1.9 builds
      65167a8 yocto-project-qs: Added MinnowBoard MAX example to "Super User"
      d654160 adt-manual: Updated the Makefile-based project section.
      941910f ref-manual: Updated the section on oe-init-build-env-memres
      9d72edd ref-manual: Fixed two spelling errors.
      59c09e3 toolchain-scripts: Allow the CONFIGSITE_CACHE variable to be overridden
      7fe5976 gst-player: Fix typo
      c012dcb elfutils: fix an incorrect patch for 0.161
      1da17af crypto: use bigint in x86-64 perl
      31b2c1f elfutils: fix build with -Os
      1b4f717 syslinux: add syslinux-nomtools to PACKAGES
      51a16b4 linux-firmware: fix the mess of licenses
      7a1fb7a common-licenses: Add common license files for linux-firmware
      7ad628e kmod: upgrade to 20
      710b01e oeqa: Add test for layer append and FILESPATH tracking
      e9fcc57 wic: Print bitbake error output
      ea07f03 wic: use native parted
      df9069d bitbake: bitbake-layers: ensure non-extended recipe name is preferred
      8538c22 libgpg-error 1.18: simplify tupple handling and add armv8b support
      42131b6 oe-init-build-env: fix for build dirs that have spaces in their path
      0fa5b04 gdb: Refresh patches against git
      683942b kbd: Mark glibc headers under __GLIBC__
      4fb58a4 xserver-xf86-config: Preload graphics driver modules for musl
      40db5c4 sudo: Disable hardening for musl
      b8d9c04 pulseaudio: Fix build with musl
      7b766ab xserver-xorg: Use __GLIBC__ instread of __linux__ to denote glibc dependent code
      0b708c5 iptables: Fix build on musl
      65b4ed6 perl: Fix build for musl
      98f4f38 libfm-extra: Add own nls.m4
      00adc1a vte: Pass _GNU_SOURCE via CFLAGS
      d451fec musl: Enable NLS
      a543a57 ppp: Add extra include dirs
      76e8f21 libproxy: Include select.h for posix compliance
      5dff87d groff: add runtime dependency on sed
      7a5a20d bitbake.conf: add sed-native to ASSUME_PROVIDED
      eb6d324 package_manager: RpmPM: Fix scriptlet for rpm 4
      23a88e2 tiff: remove extra dev and dbg from PACKAGES
      22af6a2 sysfsutils: remove libsysfs-dev and libsysfs-staticdev from PACKAGES
      05a1f2b pciutils: remove libpci-dev and libpci-dbg from PACKAGES
      b9fb704 opkg: remove libopkg-dev and libopkg-staticdev from PACKAGES
      4a9b8e5 libxmu: remove libxmuu-dev from PACKAGES
      f44aa10 libtool: remove libltdl-dev libltdl-dbg libltdl-staticdev from PACKAGES
      e263083 elfutils: remove libdw-dev libasm-dev libelf-dev from PACKAGES
      eb342b8 cogl: remove extra dev from PACKAGES
      3e14122 augeas: remove extra dev and dbg from PACKAGES
      f225880 apmd: remove libapm-dev and libapm-staticdev from PACKAGES
      acaf702 aspell: remove libpspell-dev from PACKAGES
      b515939 acl/attr: remove extra dev and staticdev from PACKAGES
      672d38e bzip2: remove libbz2-dev libbz2-staticdev from from PACKAGES
      9e80d79 wic: setup infrastructure for nosetests
      3a60a23 wic: Add argv argument to main
      7141e48 wic: Use __file__ instead of sys.argv[0]
      d0d0ab8 wic:code cleanup: No space allowed
      1521a3d insane.bbclass: Enhance file-rdeps QA check
      86cbe08 generate-manifest-2.7.py: Add fractions to ${PN}-numbers
      df59ac2 pcmciautils: fix for parallel build
      5fd4453 grub-efi: add PACKAGECONFIG for grub-mount and device-mapper
      9ee62f1 at-spi2-core: Upgrade to 2.16.0
      bd7de7e libepoxy: Add as GTK+ 3.16 requirement
      4a1b6ad at-spi2-atk: Upgrade to 2.16.0
      1ee0907 atk: Upgrade to 2.16.0
      0bfd63e cairo: Upgrade to 1.14.2
      ebe931c glib-networking: Upgrade to 2.44.0
      d61cba7 git: 2.3.1 -> 2.3.5
      8e66ba1 wget: 1.16.2 -> 1.16.3
      23a8493 groff: 1.22.2 -> 1.22.3
      84e8b1b shadow: split files needed for PAM use into separate package
      b77b25e bluez5: upgrade to 5.29
      3d1106e oeqa/runtime: Boot test for poky-tiny.
      38320db oeqa/utils: Add runner for poky-tiny qemu.
      fa5970e oeqa/targetcontrol: Add support for poky-tiny in QemuTarget.
      bcd9f05 mesa: Fix building with musl
      62980ea at-spi2-core: Add nls.m4 from gettext
      83f9ab7 bluez4: Fix encrypt symbol namespace collision
      4ace5f8 quota: Fix build with musl
      768794e binutils: Fix linking issue for R_ARM_REL32 relocs
      252d566 ncurses: Upgrade 4.9 stable to latest patchlevel 20150329
      f2d82a1 libusb-compat: Include sys/types.h in usb.h
      472eaf1 util-linux: Upgrade to 2.26
      b221140 quota: Upgrade quota_4.01.bb -> quota_4.02.bb
      1f922cb libffi: Use proper compiler define for linux platform
      e81e085 common-licenses: Add BSD-0-Clause
      933967f libdaemon: Explicitly include unisttd.h instead of sys/unistd.h
      16d8c89 wic: make error message more informative
      0245140 wic: don't use host paths when looking for native tools
      77a44c2 xorg-server: Security Advisory - xorg-server - CVE-2015-0255
      6cbfe0f libpcap.inc: consolidate inherit and PACKAGECONFIG lines
      ddb122f libpcap.inc: remove obsolete libnl1 PACKAGECONFIG
      39d5666 oeqa/runtime/smart: Added new decorators for existing automated tests.
      e58e983 oeqa/runtime/rpm: Added new decorators for existing automated tests.
      3dabad4 oeqa/runtime/ping: Added new decorators for existing automated tests.
      f33488a oeqa/runtime/parselogs: Added new decorators for existing automated tests.
      d48df94 oeqa/runtime/ldd: Added new decorators for existing automated tests.
      f626c58 testimage: sort modules based on dependencies
      206d532 oeqa/runtime/systemd.py: skip instead of failing without avahi
      058e75d oeqa/oetest.py: use bb logging
      8284e3e gst-ffmpeg: fix internal-libav builds with inherit autotools-brokensep
      d275504 gst-ffmpeg: remove bogus patch that leads to build failures
      915712d gst-ffmpeg: fix libav-9.patch
      c793501 dpkg: add triplet entry to fix build error for armeb
      c0fc3c4 lib/oeqa/selftest/bblayers: improve test for add-layer and remove-layer
      f23a3b6 shadow: add 'util-linux-sulogin' to RDEPENDS
      8c24e4e util-linux: split out util-linux-sulogin
      36e064a pango: fix postinst
      0928eb7 tzdata: fix postinst
      2b77579 libgpg-error: Fix native build on i686
      bf8aa74 connman: Create connman.service at proper moment
      21303a4 nss: Fix build in x32 ABI
      7ab461c kexec-tools: Add support for build with x32 ABI in x86_64
      66b39c8 gtk+: Upgrade to 2.24.27
      17b0be5 xz: upgrade to 5.2.1
      ec0f031 sysstat: upgrade to 11.1.3
      465508d sudo: upgrade to 1.8.13
      eac9603 busybox: upgrade to 1.23.2
      462e7cc curl: upgrade to 7.41.0
      6bd0df0 ref-manual: Corrected the "package_rpm.bbclass" section.
      fa398ae ref-manual: Update to oe-init-build-env-memres description.
      be1e182 ref-manual: Updates to "Kernel Build Changes" in the 1.8 migration section.
      ab14596 toaster-manual: Fixed release month in the manual table.
      48804ad toaster-manual: Added new video link for toaster configuration.
      7fb6a6e upstream_tracking.inc: Add no-update reason for gdk-pixbuf
      2dc3024 wic: Implement --build-rootfs command line option
      939fca9 wic: support ontrackdm6aux3 partitions
      8bf5afb wic: rawcopy: ensure comparison is done on int
      dd6a152 wic: code cleanup: unused imports
      ba9cde6 wic: code cleanup: bad indentation
      7c63dc2 security_flags.inc: elfutils on ARM fails with PIE flags
      f042708 file: add -P prompt into usage info
      a686622 perl: module overload rdpends on overloading
      a64aeb2 python: Change python 2.7.9 to use libffi from the system
      9bad894 glib-2.0: 2.42.1 -> 2.44.0
      e3704e8 binutils: Fix packaging now gold is always built
      25ab65b tcmode-default: Pin gdb to 7.9
      a146e8c bitbake: runqueue: pass finalized metadata to scenequeue callbacks
      3ed754b gcc-4.8: Upgrade 4.8.2 -> 4.8.4
      ca6b43c rpcbind: Fix build with musl
      9a2768b libxml2: Contain glibc-extentions under __GLIBC__
      ab16cd1 wpa-supplicant: Replace non-standard base defines with c99 compliant ones
      de32267 pixman,libpciaccess: Fix build on musl
      be8ffcd ofono: Disable backtrace for non-glibc libraries
      f5e7eee man-pages: 3.76 -> 3.82
      86e6a37 dhcp: 4.3.1 -> 4.3.2
      8bdf8b9 socat: 1.7.2.4 -> 1.7.3.0
      7d6f070 gnupg: 2.1.1 -> 2.1.2
      b44d75e libgcrypt: 1.6.2 -> 1.6.3
      2402fe8 patch: 2.7.1 -> 2.7.5
      8feafde libuser: 0.60 -> 0.61
      5169721 strace: 4.9 -> 4.10
      6cd8c8d libunwind: Build with gold to avoid build failures
      26648dc binutils: Allow gold to build even when not the default
      33db621 u-boot: Avoid issues with binutils-2.25
      3141e1e util-linux: add lastb.1 and nologin.8 to update-alternatives
      13db7db prelink_git.bb: Update to latest cross-prelink version
      fa43839 pinentry: update to 9.1
      efb906a useradd_base.bbclass: typo fixes (s/scucess/success/)
      87aedfb valgrind: add configure option to build only 32-bit or 64-bit components
      ea4f0da libevent: update 2.0.21 -> 2.0.22
      801269e libevent: control openssl support via PACKAGECONFIG
      5ef9f03 oe.sstatesig: align swspec handling with sstate.bbclass
      dd90ccf meta/lib/oe/utils.py: Corrected the return value of both_contain()
      74e7f68 nss: generate debug info
      60cea21 uclibc: fix undefinition of '_dl_strchr' in libdl.a
      a940fcc piglit: add PACKAGECONFIG for freeglut
      904e73f lzop: Fix build using x32 ABI
      c3991d2 stress: add new package
      00be85a hwlatdetect: upgrade to version 0.91
      12f3850 rt-tests: bump version and enable ptest support
      b559d7f binutils: Switch to using binutils stable/2.25 branch
      1cb175f binutils: Fix ICE in gold
      2be79f0 binutils: upgrade to 2.25
      b3b6cfb gdb: Upgrade 7.8.1 -> 7.9
      a50a01e git: 2.3.0 -> 2.3.1
      3df7127 wget: 1.16.1 -> 1.16.2
      d6d2dd5 tools: A real fix for thos mega-manual.sed file for Toaster.
      810106a tools: Updated the mega-manual.sed file to include the Toaster manual.
      51c68d7 toaster-manual: Review edits applied.
      12f6c19 toaster-manual: Updated customization layer to not use local XSL file.
      82fea80 dev-manual: Fixed bitbake -c populate_sysroot example.
      cd0800f ref-manual: Edits to the 1.8 migration section.
      d5abcfb toaster-manual: Applied final review edits.
      079d6c9 ref-manual: Added new migration section for going to 1.8
      9f08067 ref-manual: Added new bluetooth class.
      b544b4b package_manager: call createrepo with --dbpath pointing inside WORKDIR
      673d022 createrepo: Implement --dbpath command line option
      1674b53 glibc: fix a typo
      dc2d0e8 db: fix parallel issue
      723c64b ref-manual: Updates to doc packages and reference links
      c24b67d bsp-guide: removed the BBLAYERS_NON_REMOVABLE from the example code.
      223d075 dev-manual: Removed the detailed section on how to set up and use Toaster
      3bb1c76 dev-manual: Added a small section to note Toaster as a development model.
      3237e33 dev-manual: Fixed a few broken links and added Toaster manual to list.
      f1a2683 yocto-project-qs: Fixed broken link to AB nightly builds.
      937c709 ref-manual: Updated the OE_TERMINAL variable description
      575d464 ref-manual: Updated the supported distros list.
      d083205 ref-manual: Backed out the bits for the context PNG images.
      69121f2 dev-manual, yocto-project-qs: Dropped Python 2.6 as a requirement
      a9d25bd toaster-manual: Made some updates for virtual environment section.
      3fafd2b toaster-manual: Added a new video that shows fido features.
      70ddcce ref-manual: Downplayed the BBLAYERS_NON_REMOVABLE variable.
      ae4951d dev-manual: Updates to the devtool section.
      c41b060 dev-manual: Updates to the receiptool section.
      a92a203 toaster-manual: Created links to Youtube for the GUI vids
      d0e413e toaster-manual: Added note telling user to initialize virtual env
      2b82240 documentation: Updates to try to fix CentOS docs build errors
      a4bd9cd dev-manual: Added footnote crediting Trevor Woerner for devtool addition.
      e1ff065 dev-manual: Applied review edits to the devtool section.
      abf3039 mega-manual: Added two figures to the figures directory.
      45e9e79 mega-manual: Updated the chapter structure for the toaster manual.
      1f63333 Makefile: Added figures to the mega-manual TARFILE list
      a089bed Makefile: Added additional PNG files to toaster TARFILE list.
      85a0b9b toaster-manual: Draft of Manual.
      9e4adec distro_alias.inc: update/sort alias information.
      fe9c5b1 bitbake: bin/image-writer: Add ext4 as a deployable image type
      3cb8772 bitbake: cooker: Ensure bbappend files are processed in a determistic order
      764fbea image_types: Add missing ext4 support
      ce2573b bitbake: Revert "toaster: machine not searchable in all builds/projects"
      e5a441c bitbake: toastergui: add ext4 option for IMAGE_FSTYPES
      ddee53e bitbake: toasterui: rename 'targets' to 'recipes'
      c6ea812 bitbake: toastergui: prevent error on empty build list
      0d0d02a insane: Add baremetal mappings to the QA arch test
      240a797 siteinfo: Add x86_64-elf support
      6fd976f README.hardware: clarify NFS requirements for edgerouter
      5bb5313 toaster: updating toasterconf.json for fido release
      051ce59 populate_sdk_ext: Log the "Preparing build system" step
      4073194 dpkg-native: Avoid 'file changed' errors from tar
      3c284cf wpa-supplicant: Make SystemD D-Bus config conditional
      a879c89 u-boot.inc: fix rename image error
      dd52ac5 libart-lgpl: add art_config.h for armeb/aarch64be/aarch64be_32
      240dade combo-layer: fix file_exclude for empty commits
      3775c6e combo-layer: fix file_exclude for dest_dir = .
      5508950 combo-layer: clean up dest_dir checking
      47dedbc glibc-testing: Specify location of c++ header files
      88340ad oe-git-proxy: Redirect error messages to STDERR
      aa1438b autotools: Avoid find race for S = "${WORKDIR}"
      c0e32b4 gcc: Tweak arm multilib endian patch for baremetal
      6978d8a kernel-yocto: merge duplicate kernel_configme task definitions
      a9025e8 linux-yocto: add kern-tools-native to kernel_metadata depends
      feb84ef toaster: update toasterconf.json for fido release
      6671089 toaster.bbclass: do not add symbolic links to artifacts
      3837f29 cpio: fix CVE-2015-1197
      c35aba3 patch: fix CVE-2015-1196
      5c76ceb poky: Add 1.8 to sanity tested distro list
      f08c349 poky.conf: Flip DISTRO_VERSION for post 1.8 release
      e029d27 bitbake: Update to version 1.27.0 post 1.26 release
      5756684 bitbake: Update to version 1.26.0
      87c4e58 bitbake: toasterui: enable sanity checker
      eeef93a bitbake: toaster: most-build-targets bug fixes
      1a4c8a8 bitbake: toaster: PACKAGE_CLASSES variable does not show current value when editing
      3190ab6 bitbake: toasterui: small changes to empty states
      38c3f2e bitbake: toasterui: hide right column if empty
      63510bf bitbake: toasterui: Improve messaging for empty layer details
      7c3bdeb bitbake: toasterui: hide release when only one exists
      fd4085f bitbake: toasterui: update links to Toaster manual
      792716a bitbake: toastergui: changes to release change notifications
      2b59512 bitbake: toaster: alert fixes for project release change
      6a934f4 bitbake: toaster: build date range selections
      e840b7a bitbake: toaster: build date range selections static sources
      abcd979 bitbake: toaster: machine not searchable in all builds/projects
      7cb05bf bitbake: toastergui: changes to the all projects table
      fb7160e bitbake: toaster: Project page fix targets url and tooltip placement
      e1a5d81 bitbake: toaster: layer-relative paths for config files
      fa59513 bitbake: toastergui: give button nice rounded corners
      1385f28 bitbake: uievent: catch and log exceptions in receiving events
      4e18659 bitbake: bin/bitbake: Create bitbake_main API
      f2ca8bc python-pygobject: Disable parallel make install in native case
      a77f368 lttng-modules: Update along 2.6 stable branch
      3a64656 uninative-tarball: fix dependency on patchelf
      6e1ba48 skeleton: clarify linux-yocto-custom workflow
      dbfafd8 linux-yocto/3.19: fixes for Intel core warnings
      c0f931a linux-yocto/3.14: integrate korg stable and meta data changes
      9dbc258 linux-yocto/3.19: configuration updates and stable import
      4dbe239 kernel-yocto: allow in-tree defconfigs
      df6d275 openssl: 1.0.2 -> 1.0.2a
      62fdc7b gst-player: Add error messages for missing plugins
      14098e3 package_deb: DpkgIndexer use apt-ftparchive that needs a valid config
      d269075 image.bbclass: Empty /var/volatile if it is a mount point
      96104b8 image: Ensure manifests end with a newline
      c70dc37 libunwind: use xz, because it fails to detect liblzma provided by lzma
      f94450a ca-certificates: clean up before do_compile()
      f43d13c pigz: fix alternatives handling, use symlinks, provide zcat
      4ca684a kernel-module-split.bbclass: Avoid bogus recommends for modules ending with -dev
      f878ee5 valgrind: enable build for MIPS
      43d84d8 connman: only depend on xuser-account if ROOTLESS_X is set
      9782db0 libav: fix floating dependency on libasound
      b31a0e3 python: fix cached config value for /dev/ptmx
      7cb5ea0 qemu: Add patch to fix qemux86-64 EDSCA key problems
      4439387 Revert "systemd: Fix the problem of an empty journal on boot"
      68bc421 kernel-module-split.bbclass: fix autoloading from postinst script
      65a8408 python: Fix PGEN linking errors
      2a473ac update-alternatives.bbclass: alternatives should be removed in prerm
      8b8d843 dpkg: Don't move update-alternatives to sbindir
      ce9226f rootfs.py: Also uninstall update-alternatives and shadow for read-only-rootfs
      349f3ab package.bbclass: Add SYSTEMD_SERVICE to list of package specific variables
      7ecfaaa webkit-gtk: disable JIT for armv5/armv6
      3699321 yocto-bsp: Update templates to 3.19 kernel
      4bd886f systemd: fix firmware path to match linux-firmware
      b528712 meta-yocto/distro: Updated SANITY_TESTED_DISTROS.
      fdf383f poky.conf: Fix 'distro is not validated' warning for OpenSUSE
      814252e systemd: restore userspace firmware loading support
      bbc1396 tzdata: update to 2015b
      21f4188 tzcode: update to 2015b
      3acdd43 lib/oe/lsb.py: Prioritize parsing of /etc/os-release
      cbce06a tar: set acpaths to avoid "Argument list too long" error
      98487cc watchdog: Provide and install initscript
      a1cb3b0 mtd-utils: minor recipe formatting cleanup
      543d1bd postinst_intercept script: drop pipe
      86aec93 rootfs.py: add log checking ability for deb and ipk
      f4d90ec rootfs.py: two changes regarding log checking
      5dc1f3d oelint.bbclass: remove duplicated code
      7366894 oelint.bbclass: adjust task order
      b457868 neard: fix the install path in init scripts
      4f1ce61 nss: move /usr/bin/smime to nss-smime
      dfa8034 directfb: define DEPENDS and EXTRA_OECONF via directfb.inc only
      5e9d2d6 python-pexpect: Adds this module to buildtools, since it is needed by some of the automated runtime test code.
      44c8637 python-pexpect: Creates a recipe for the pexpect python module
      d70c981 license.bbclass: skip license checking if the package contains no file
      19ad6b6 python-distribute: Adds netclient, email and shell runtime dependencies necessary to
      72ead27 sanity.bbclass: vmdk and live can't be built together
      38aff0d os-release: add LIC_FILES_CHKSUM
      f987e92 tzdata: fix HOMEPAGE
      75c16c0 groff: fix HOMEPAGE
      2ade4b2 gawk: fix HOMEPAGE
      c1e4e27 libav: add PACKAGECONFIG for VA-API
      84e5007 e2fsprogs: Package resize2fs
      94f5ce0 xserver-nodm-init: Change to vt1 when stop
      3e9476e sysvinit-inittab: Fix no tty in runlevel 1.
      3aad5e0 util-linux-native: Fixed conflicts with shadow-native and ncurses-native
      b0b8f47 oeqa/runtime: Added a new auto rpm test
      a8c98c3 oe-selftest: use spaces to indent python code, not tabs
      4783ead dev-manual: Applied review edits to section on hostname changing
      12c7efe bitbake: toaster: insure IMAGE_INSTALL_append values have a space prefix
      d2b2046 bitbake: toaster: display machine and project values in input fields
      1f1230c bitbake: toaster: tasks trigger the select related tables before ordering
      3c5e291 bitbake: toaster: Add cancel build to latest build section
      2f684f1 bitbake: toaster: Incorrect breadcrumb behaviour in the project page
      8ff98c6 bitbake: toaster: leave cancel enabled for release change
      5252c45 bitbake: toastergui: recipe and layer identification
      9752757 bitbake: toasterui: fix error message parameter
      0dc4a62 bitbake: toaster: do not throw exception on misconfigured data
      934a974 bitbake: toastergui: builds and projects outcome filter
      5d021f6 bitbake: toastergui: fix machines page search
      ede212b bitbake: toaster: display bitbake output after process start
      5b22f15 bitbake: toaster: targets page performance improvement
      a273d8f bitbake: toasterui: improve info in the toaster_ui.log
      c5e9654 scripts/combo-layer: Handle update with no repo/revision specified
      db4f142 glibc: avoid configure stall by feeding prompt
      92739ed gcc-cross-canadian: Enable stripping and packaging of binaries
      31801c6 ltp: find all .debug directories
      1a29b3b lsb: fix installed-vs-shipped when build with multilib
      d6be13a gst-plugins-good: fix nondeterministic udev dependency
      76930a5 pulseaudio: remove obsolete resampler patching
      d342810 puzzles: Fix build in x32 ABI
      4add6e3 systemtap: Fix build in x32 ABI
      3732fde mdadm: Fix build in x32 ABI
      8e19349 systemd: set the location of binaries used by service files
      0f25dd5 base.bbclass: clean up warning message for 'S'
      f14ef4d valgrind: enable building on 4.x kernel
      740770c udev: remove 'modprobe' local rule
      31f15d6 perf: add bash to RDEPENDS
      76730a8 linux-yocto/3.19: integrate korg -stable update
      ad6313d kernel-yocto: split meta data generation from patching phase
      c328e2f kern-tools: fix iterative configuration runs
      c5cfcb7 gstreamer1.0: Shorten __FILE__ in gst_debug_log output on all platforms.
      8457e13 dbus-test: make do_install run to trigger the effect of cleandirs flag
      6ecc468 tcmode-default: Define one gdb version
      80c8372 pulseaudio: add system.pa to CONFFILES
      cc7652f pulseaudio: move client.conf to libpulse
      2ab66b8 package_manager: Create variable for install_dir_name
      05471f8 lib/oeqa/selftest/lic-checksum: Add INHIBIT_DEFAULT_DEPS
      8b8baf5 lib/oeqa/selftest/lic-checksum: Rename test_foo
      a7701ba trace-cmd: remove unnecessary 'protocol=git' from SRC_URI
      1219b63 mmc-utils: remove unnecessary 'protocol=git' from SRC_URI
      6bd34e6 systemd: remove unnecessary 'protocol=git' from SRC_URI
      52e9d2c u-boot-mkimage: remove unnecessary 'protocol=git' from SRC_URI
      b647a06 u-boot-fw-utils: remove unnecessary 'protocol=git' from SRC_URI
      6f6e866 oe-selftest: add missing dependency to test_recipetool_create_git
      0a45ccb recipetool: fix duplicate licenses being picked up
      4a8fec9 oe-selftest: add a test for devtool modify on recipes fetching local files
      a976d63 oe-selftest: add a test for devtool deploy-target
      a0b774e oe-selftest: support getting unexported variable values
      3c4c63d gitignore: exclude meta-selftest, drop meta-hob
      8123b4a devtool: deploy-target: add dry-run option
      a504771 classes/externalsrc: fix for recipes that fetch local files
      3d7777f devtool: deploy-target: add an option to disable quiet mode
      3f370f8 devtool: deploy-target: detect and error if D is empty
      ad57dab devtool: deploy-target: allow disabling host key checking
      cb4b078 devtool: modify/extract: prevent usage with incompatible recipes
      221705f devtool: modify: get correct initial revision from previously extracted source tree
      9adae67 devtool: reset: add ability to reset entire workspace
      e3cfb80 devtool: name command line parsers appropriately
      4424440 devtool: deploy-target: fix deploying to previously deployed machine
      be6289f combo-layer-hook-default.sh: handle patches without Signed-off-by
      b4e78cf combo-layer-hook-default.sh: beware of embedded patches
      ad0147a combo-layer-hook-default.sh: avoid duplicating prefix
      e0d3cab combo-layer: partial import for '--history init'
      14eac2a combo-layer: combine trees via replacement objects
      dd985a2 combo-layer: init with full history
      b4326bf combo-layer: update() also instance property
      96b9845 combo-layer: exclude files
      627e524 combo-layer: runcmd() with separate output
      58c5bb2 combo-layer: make Signed-off-by optional
      b1408ba combo-layer: let user choose where properties get updated
      fd2823d runqemu-internal: Add cpio support for qemux86 so that we can boot poky-tiny images
      b8107c5 scripts/runqemu: Allow FSTYPE to be changed from the environment
      577f9f3 gst-player: Fix Pause/Play in GTK+ player
      f4857dc xf86-input-synaptics: drop already applied patch
      8b125fe opkg: drop already applied patch
      2c11ccf packagegroup zeroconf: nss-mdns is libc dependant
      cffacfb glibc/glibc-collateral.inc: Add LIC_FILES_CHKSUM to avoid warnings in manifest creation
      b85ee03 unzip: Add ALTERNATIVE configuration
      1e34e71 meta/lib/oe/package.py: fix files ownership in packages
      b7a9a06 oeqa/runtime: Fixed a problem in logparser where it failed to whitelist some common errors.
      6ad040a Add archiver folder to SSTATE_DUPWHITELIST
      35fbb0f wic: Consider PSEUDO_* environment variables
      40d3d7a rpcbind: don't try to enable rpcbind.socket twice
      d0d404f systemctl: Don't try to remove directory which doesn't exist
      7197dab gst-player: Depend on -libav if commercial license is enabled
      c65e364 waffle: drop unneeded setting of EXTRA_OECMAKE
      7f536ba oe-selftest: improve bitbake-layers tests
      61e14ad oe-init-build-env-memres: Fix source check
      0308f31 bitbake: knotty.py: fix indent
      12b6cf0 poky-tiny: ext2 isn't enabled in the kernel so don't mention/build it
      083d4a3 dev-manual: Added new section on changing default image hostname
      1345195 documentation: Updated Manual revision tables with "April 2015"
      186104e dev-manual: Backed out the half-done Eclipse Luna changes.
      f7dbbd1 dev-manual: Removed inc PR step from Quilt workflow
      40f3ca0 poky-ent: update OpenSUSE essentials
      df0672b bitbake: toaster: Fix the orderkey to match the column
      5c4b7e0 bitbake: toaster: projectconf fix typo of package name
      c2a1e04 bitbake: toastergui: replace ETA with percentage
      fb84086 bitbake: toastergui: fix mrb Run again buttons
      25d2131 bitbake: toaster: localhost build increase timeout
      887c1cb bitbake: toasterui: relative recipe paths
      e4ff3ea bitbake: toastergui: improve toaster suggestion
      c472208 bitbake: toastergui: dirinfo needs path separation
      193989c bitbake: toastergui: tables display optimizations
      2b629e6 bitbake: toastergui: project app build command fix
      feb95bb bitbake: toastergui: update search fields
      cca5170 bitbake: toasterui: identify proper layer in build mode
      42d1b65 bitbake: toastergui: improve performance in the all targets page
      50c5ca5 bitbake: toastergui: improve data suggestion
      e5590bc bitbake: toastergui: fix project page layer branch names
      cffc208 bitbake: toastergui: suggestion in alphabetical order
      c8714ec bitbake: toastergui: project page - consistent error display
      daaafb4 systemd: fix /var/log/journal ownership
      da8a15a systemd: Fix journal "Failed to set file attributes:" warning
      85532e0 curl: remove samba from PACKAGECONFIG[smb] DEPENDS
      4811b04 e2fsprogs: CVE-2015-0247
      59e01b0 linux-yocto-rt: removed duplicated line
      f743cce mailx: disable parallel build
      73dca1e util-linux: split libraries dynamically
      b14dd6a util-linux: fix CVE-2014-9114
      e5f9a67 sysprof: fix arm big-endian build.
      3e8eb2d logrotate: Identify CONFFILES
      1cdf386 nfs-utils: Identify CONFFILES
      f6c9b4f nfs-utils: Install nfsmount.conf
      4851a67 msmtp: add link file /usr/lib/sendmail
      03ba0b7 lsb: update init-functions and remove sendmail
      e67611b Revert "blktrace: fix and enable parallel build"
      9afc9ea mtd-utils: disable parallel build
      40e15f0 lttng: Add tracing group when building lttng-tools
      3cbc509 kernel-devsrc: fix file ownership
      c5fd577 util-linux: move getopt u-a link to base_bindir
      c212977 liberation-fonts: inherit allarch as fonts are arch-independent
      28c986c resolvconf: fix SRC_URI
      6270510 net-tools: fix SRC_URI
      18c6acd apt: fix SRC_URI
      de2aad0 libevent: fix SRC_URI
      b35689b xinetd: fix HOMEPAGE and SRC_URI
      05a1691 libunwind: backport patch to link against libgcc_s intead of libgcc
      38382e0 rootfs.py: fix logic error so that warnings are checked
      c03c82a pixbufcache.bbclass: add harfbuzz-native to PIXBUFCACHE_SYSROOT_DEP
      788fd5a kernelsrc.bbclass: fix KERNEL_VERSION
      9157c1b chrpath.bbclass: handle RUNPATH as well as RPATH
      05a69ed license.bbclass: set dirs for do_populate_lic_setscene
      8a9ac1d devshell: allow the starting directory to be overridden
      66a4d8b buildstats.bbclass: typecast argument to os.minor/os.major to long
      9d0feb3 fontcache.bbclass: prepend to PACKAGEFUNCS instead of appending
      d03e167 postinst-intercepts/update_font_cache: fix ownership of fontconfig cache
      a30c6a5 nativesdk.bbclass: set PKGDATA_DIR explicitly
      9a712be test-dependencies.sh: strip only .bb suffix
      1d43c3c oe-setup-builddir: output message cleanup
      18c1c51 bitbake.conf: use http:// for GNU_MIRROR instead of ftp://
      cd5e168 lib/oeqa/runtime/systemd: Add a basic runtime test for the journal
      313ad2a bitbake: bitbake-layers: use stdout instead of stderr for logging
      855fc21 bitbake: knotty: Do not log show_versions output
      0b5ab4d bitbake: knotty: Catch exceptions on broken pipes
      7f30749 oeqa/parselogs: Skip hda opcode errors
      0aff275 layer.conf: bump version as error-report interface changed
      c60786c poky.conf: Update for post 1.7 release versioning
      f67d496 kernel-dev: Fixed missed shortcut
      78cecf7 kernel-dev: Updates to the "Using Kernel Metadata in a Recipe" section.
      947cc83 kernel-dev: Correct reference to "files" directory, should be ${PN}", and update kernel version.
      7727a16 ref-manual: Updated the KMACHINE variable description.
      2a5344e yocto-project-qs: Added note to Debian package requirements section.
      dae9b5f xserver-xorg: don't close already-closed connections
      38cdb72 systemtap: Upgrade to 2.7
      e75c95c systemd: Fix the problem of an empty journal on boot
      d7fe8b4 mailx: fix SRC_URI
      1662423 systemd: Fix runtime failures in systemd-tmpfiles-setup.service.
      56f010f glibc: 'yes' within the path sets wrong variables
      9e95469 opkg: Fix error when recompiled
      d5fb9aa gdb: add whitespace to _append
      44d763e systemd: correct permission mode of /var/volatile/tmp
      664c1df systemd: Create packageconfig for ldconfig support
      bd0ed7c image_types: Fix MIN_BTRFS_SIZE to be 1024 blocks to match ROOTFS_SIZE
      d6a2a54 systemd: fix systemd-tmpfiles ACL issues
      f5e4349 openssl: Upgrade to 1.0.2
      7c504b4 bash 3.2.48: disable parallel build
      370e730 create-pull-request: fix git GIT_VERSION
      72ee285 pkg-config: strip system library paths reliably
      8732930 rpm: don't put LDFLAGS into the .pc file
      ddc8222 oeqa/selftest: Added a testcase to verify INCOMPATIBLE_LICENSE option.
      f0f6b23 lib/oeqa/selftest/lic-checksum: Verify failure when checksum changes.
      a39ce56 base.bbclass: Add LIC_FILES_CHKSUM files to checksum files.
      3f8ce1e sed: Cope with ${bindir} and ${base_bindir} being the same
      9d078a1 libtool: put libltdl.la in the right package.
      6e539bf glibc_2.21.bb: Fix condition to skip parsing the recipe for non-glibc libc
      bd193a0 libgpg-error: Add -P option to CPPFLAGS
      1aa32a1 wic: rawcopy: support skipping
      5e2dd63 wic: add fsimage plugin
      0393438 wic: fix fstab generation
      5cfac6b systemd: avoid parsing error when 'networkd' is enabled in PACKAGECONFIG
      5818c0d gcc-source: fix bug to avoid building error.
      ca3a3c0 meta/lib/oe/utils.py: properly implement both_contain()
      d5a2858 report-error: Update information on the submission process
      a8b1ded scripts/send-error-report: Rework script to support new features
      ba78a36 recipes: add x11 to required DISTRO_FEATURES
      0467d53 bitbake: cooker/server: Fix up 100% CPU usage at idle
      8ce2f2c maintainers.inc: Became maintainer of python2 and python3
      efc7f04 scripts/runqemu: clarify help text
      21e2c03 qt4: add patch for BMP denial-of-service vulnerability
      73be8c1 man: fix bugs of makewhatis script
      36e47a9 bitbake: fetch2: Revalidate checksums, YOCTO #5571
      3c641e7 bitbake: toaster: cached outcome download button
      f5edfce bitbake: toaster: projectapp.js - clear up jslint warnings
      0fa38bb bitbake: toaster: libtoaster Fix a few warnings picked up by jshint
      41ebd51 bitbake: toaterui: shorten the unavailable artifact message
      5a03a23 bitbake: toasterui: give some space to the download log button
      74bb0fb bitbake: toasterui: apply correct class to latest builds targets
      d2c9f70 bitbake: toasterui: fix the h1 in the project builds page
      16c03f8 bitbake: toasterui: don't open layer details in a new tab
      dcbfc74 bitbake: toaster: Enforce unique layer names
      d8ae3ac bitbake: toaster: commit id format on layers page
      4004aeb bitbake: toastergui: bring back base URLs for pages that need them
      ece39b4 bitbake: toaster: reconcile non-manage-mode landing classes
      4f36647 bitbake: toaster: hide special code for core vars not present, disable add button
      48c48a4 bitbake: toaster: layer rev tooltip only if necessary
      ec8e07f bitbake: toaster: add sort, search, paging to recipe package page
      e248a50 bitbake: toaster: models.py do not use transactions
      7d9dd12 bitbake: xmlrpc server: delete function on errors
      b611de9 bitbake: cooker: make sure state is properly used to accept clients
      8d87f70 bitbake: xmlrpcserver: do not connect client on error
      69d13dc bitbake: toaster: delete test data
      a9cd657 bitbake: cooker: read file watches on server idle
      c504276 dev-manual, ref-manual: Replaced &dash;&dash; with "--"
      a889cc0 yocto-project-qs: Added a cross-link to the wiki page for YP releases.
      551edbd kernel-dev: Update name of build directory
      a79cdb5 bsp-guide, kernel-dev, ref-manual: KERNEL_FEATURES should refer to .scc files.
      f0b44ff kernel-dev: Applied some user-input formatting for some variables.
      dc56adb kernel-dev: Substituted "emenlow" example for "fri2"
      0401f07 kernel-dev: Added quotes around a section cross-reference.
      14316cf kernel-dev: Fixed variable formatting.
      42f5b11 dev-manual: Updates to the "Working Within Eclipse" section.
      1beb6fc poky.ent: Added a new variable ECLIPSE_LUNA_URL
      62e4d45 ref-manual: Updated the MACHINE variable description.
      4a5f137 kernel-dev: Swapped out fri2 BSP for emenlow BSP in example.
      82ad008 kernel-dev: Updated "Modifying Source Code" section.
      86f4cf8 yocto-project-qs: Updates to add more explanations and navigation
      8951db6 poky.ent: Changed the code name from "tbd" to "fido".
      0a20913 dev-manual: Updates to Eclipse section
      e7e5330 kernel-dev: Scrubbed out the 3.4 kernel references.
      043e02c kernel-dev: Minor typo fixed and added LTSI link
      a8f2196 kernel-dev, ref-manual: Edits to KBRANCH.
      8ced82e kernel-dev, ref-manual: Scrubbed out the KBRANCH_DEFAULT variable.
      fef68d3 ref-manual: Updated the KBRANCH variable description
      b49a5cc kernel-dev: Clarify a couple minor things in kernel manual, ch 2.
      bef8558 README: expand the Where To Send Patches section
      5c1c8af build-appliance-image: Update to master head revision
      d01cd53 systemd: fix tmpfiles error on images without PAM
      8d4e621 gstreamer1.0-plugins-bad: disable Yadif on X32
      ecd052e glibc: Fix check for -Os.
      03a3577 gst-player: port to GTK+ 2
      3fb3030 kern-tools: improve patch application performance
      49d7aae linux-yocto/3.14: OcteonIII support
      e02016e kernel-yocto: inhibit BSP description warnings for custom linux-yocto kernels
      dd1d4e5 linux-yocto: fix qemux86-64 config warning
      bf1a68e taglib: Fix cmake floating dependency on boost
      bf59b22 security_flags: remove PIE flags from flex and gstreamer1.0-plugins-bad
      4a26326 build-appliance-image: Update to master head revision
      d273197 gst-player: only depend on -ugly plugins if commercial licenses enabled
      89bf0bf build-appliance-image: Update to master head revision
      9bd1da2 systemd: add PACKAGECONFIG for xkbcommon and iptables
      aef3a58 systemd: use PACKAGECONFIG for PAM enable/disable
      c0bd9e6 systemd: add missing util-linux build-dependency
      a3fe99d owl-video: remove
      646dfe0 packagegroups: use gst-player instead of owl-video
      a240f08 sato: fix typo in packagegroup
      5025479 build-appliance-image: Update to master head revision
      8571027 ref-manual: Added variable description for FILES_SOLIBSDEV
      4bdaa5c kernel-dev: Small fixes.
      1a74c79 kernel-dev: Updated FILESEXTRAPATHS example in 2.2.3.
      9c4574e python: Fix ctypes/libffi configure
      51908e5 package_rpm.bbclass: support packaging of symlinks to directories
      de638414 libpcap: add pkg-config support
      7ce7756 systemd: Upgrade 218 -> 219
      3af8d90 libgpg-error: Upgrade 1.17 -> 1.18
      aecc63d bitbake: toaster: config var layout fixes
      8c476c2 bitbake: toaster: all projects data and sorts
      6768a30 bitbake: toastergui: add csrf tokens for AJAX calls
      ee1af30 bitbake: toasterui: do not use transactions if the database autocommits
      87c6a54 bitbake: toaster: order layers with same priority
      f116c32 bitbake: toasterui: fix sstate task identification
      2d1d6a8 bitbake: toastergui: stop covered task graph traversal early
      63e5d47 bitbake: toaster: fix typo in models.py
      e2b5d23 gaku: remove (replaced by gst-player)
      b05a5a7 sato: use gtk-play (from gst-player) instead of Gaku
      f8b5481 gst-player: add
      6d7cf8e lib/oe/terminal: fix konsole terminal support for KDE 4.x
      f160730 lib/oe/terminal: fix regressions
      efd78e3 bitbake: bitbake-layers: fix wildcard support in remove-layer
      40d80f9 build-appliance-image: Update to master head revision
      b77596a ref-manual: Updates to scrub out 3.10 kernel.
      f94b629 dev-manual: Adjusted text for deprecated 3.10 and 3.17 kernels.
      a438aa3 bsp-guide: Removed 3.10 and 3.17 kernel references.
      a0a1f17 ref-manual: Repositioned PNG files for context image.
      0a8c08e ref-style.css: Added a new style to support glossary hanging indent
      8aa9a23 bitbake: toasterui: fix ETA calculation
      f120b78 bitbake: toastergui: performance improvements in task details page
      cb23e30 bitbake: toasterui: disable autocommit for build logging
      6de6739 bitbake: toaster: update requirement for Django 1.6
      03c1e47 bitbake: toasterui: improving the latest builds consistency
      1ea940f bitbake: toaster: Add machine selection notification
      1e0e700 bitbake: toasterui: style the Toaster version information
      4742ae9 bitbake: toaster: layerdetails Fix pagination controls
      00e3545 bitbake: toaster: layerdetails Add link to machines file
      e28097f bitbake: toaster: layerdetails summary/descriptions to be searchable
      bd5087d bitbake: toastergui: fix spacing and input field sizes
      43afafe terminal.py: No --disable-factory for gnome-terminal >= 3.10
      9e9d6df systemd: Upgrade 216 -> 218
      28618e4 util-linux: disable systemd
      0481973 python-native: Fixes PGEN linking errors Changes Makefile rules to avoid parallel make races when trying to build Parser/PGEN
      d6a2cf3 glibc: Help compile with -Os
      4d83a90 gst-plugins-package.inc: Avoid dependency on ${PN} from ${PN}-<plugin>
      d861cc4 recipes: Delete superfluous assignments, S = ${WORKDIR}/${BP}
      f7c45a4 busybox:udhcpc: Remove the routes from the right interface
      48fa868 busybox:udhcpc: Start with a metric of 10 for routes
      0e04c93 base-files: clean up and clarify hostname logic
      5456737 populate_sdk_ext: add extensible SDK
      46ee86c scripts/oe-buildenv-internal: add means of skipping SDK check during setup
      8e8e924 uninative-tarball: Actually use bzip2 for compression.
      01c9f3b toolchain-shar-template.sh: Make relocation optional.
      fe678e7 toolchain-scripts: Add parameters to toolchain_create_sdk_env_script.
      1118c12 copy_buildsystem.py: Add methods to copy shared state.
      d5d4b70 copy_buildsystem.py: Add a way to copy buildsystem to a directory.
      91a9b3f sstatesig: Add ability to filter list of tasks for locked-sigs.inc
      67c1d2e gen-lockedsig-cache: Allow cross-filesystem copies.
      19e06e6 poky.conf: resolve mismatch between poky bblayers version and OE-Core
      1bb0022 classes/sanity: avoid bblayers version issue when switching between poky and other DISTRO values
      a509e27 Revert "bind: fix and enable parallel build"
      04faba5 Revert "logrotate: 3.8.8 -> 3.8.9"
      687c797 Revert "openssl: fix and enable parallel build"
      360dbb5 python-native: Reverts usage of distutils.sysconfig On older versions of Python, sysconfig read the Makefile and Python.h, generated at build time now it uses _sysconfigdata which contains information about the HOST, erroneous in our case, this causes an error when bulding something using distutils since it obtains compiler information and such.
      cb02ecb Python: Upgrade from 2.7.3 to 2.7.9:
      122ee11 devtool: fix broken clones of git recipes
      e7744de devtool: support source extraction for recipes that use a shared workdir
      62a41b4 devtool: modify: handle recipes that use a shared workdir
      e2ce29f devtool: prevent extract/modify use with image recipes
      efedd43 devtool: update-recipe: add handling for git recipes
      6015deb lib/oe/recipeutils: minor improvements to patch_recipe()
      e5bf4ed devtool: build: run do_populate_sysroot instead of do_install
      845efa4 devtool: reset: run bitbake -c clean on recipe
      8e7437b devtool: add/modify: add option to build in same directory
      4a2e42d classes/kernel-yocto: extend SRCTREECOVEREDTASKS
      550d455 classes/externalsrc: show a warning on compiling
      d4af8f0 classes/externalsrc: add workaround for recipes that use SRCPV in PV
      db7f7b5 classes/externalsrc: fix source being wiped out on clean with kernel
      f205cca lib/oe/patch: fix PATCHTOOL = "git" with source in a subdirectory
      5eb9ffe recipetool: fix regression caused by previous commit
      3c2f5fd pulseaudio: upgrade to 6.0
      1726063 meta-yocto-bsps: remove 3.10 bbappend
      f3e7955 meta-yocto: update qemu default kernel version to 3.19
      dfa2848 bitbake: bitbake-layers: add ability to fetch layers and their dependencies from layer index
      90ffdc0 bitbake: bitbake-layers: fix logging
      4a32837 bitbake: bitbake-layers: refactor to use argparse instead of cmd
      68f4dca runqemu: Specify rootfstype to qemu to avoid QA warnings
      7dcf6c9 machine/qemu: Switch from ext3 to ext4
      8506429 layer.conf: set a variable to map to the OE Layer Index name
      48d0b3f bitbake.conf: Add two variables for layer index
      f1daefb lib/oeqa/selftest/bblayers: use dashed subcommands
      d4f11d6 glibc: Dont offer to be parsed for non-glibc TCLIBC selection
      739b177 tclibc-musl: Use musl for providing virtual/libintl instead of gettext
      982b5aa lttng-tools: add PACKAGECONFIG for kmod
      1f6e644 build-compare: update Rename-rpm-check.sh-to-pkg-diff.sh.patch
      e011e92 lib/oe/package_manager: Performance tweak in regex usage
      efa7c29 e2fsprogs: Add a patch to speedup mkfs
      c417736 arch-armv7a.inc, tune-arm920t.inc: Fix PACKAGE_EXTRA_ARCHS
      fe66853 feature-arm-thumb.inc: respect ARM_INSTRUCTION_SET when adding thumb suffix
      4b69d00 kexec-tools: fix build failure on aarch64_be architecture
      b4a936a wic: Fix kernel dir location
      629b91b xorg-font-common: fix sysroot injection for encoding maps
      ab18ec7 font-util: remove MAPFILES_PATH override
      f220b96 font-util: stage encoding maps into sysroot
      bc309f0 opkg: fix systemd unit installation
      76c8fad Revert "kernel-arch.bbclass: add arm64 support to U-Boot architecture map"
      0a69248 logrotate: 3.8.8 -> 3.8.9
      3124798 python-gitdb: 0.6.1 -> 0.6.4
      3f99702 python-git: 0.3.3 -> 0.3.6
      8611188 git: 2.2.1 -> 2.3.0
      d078cae cups: 2.0.1 -> 2.0.2
      aba8f4a quilt: 0.63 -> 0.64
      e0a55a9 kernelshark: Update to version 2.5.3
      6dc2030 trace-cmd: Update to version 2.5.3
      b3e92f4 oeqa/parselogs: Add exception for new mips error message
      726c6c1 linux-yocto: warn when a generated BSP description is used
      7e6147b linux-yocto: introduce 3.19 versioned recipes
      c75d6c8 linux-yocto: remove 3.10 and 3.17 recipes
      dfa83e6 linux-yocto: make kernel configuration audit user visible
      63dd5d0 linux-libc-headers: update to 3.19
      5db6a27 bitbake: toaster: importlayer Remove description input field
      d27893d bitbake: toasterui: remove layer directory in managed mode
      50f11b9 bitbake: toasterui: style the Toaster version information
      91e900f bitbake: toaster: layerdetails Don't show None type in description/summary
      64fc177 bitbake: toaster: landing page when no build module
      c856a4e bitbake: toaster: get proper version string
      e133fbf bitbake: toasterui: UI query performance improvements
      9c358bd bitbake: toasterui: fix time estimation in project page
      6dbd214 bitbake: toaster: properly detect starting in rolling log file
      c368d83 bitbake: toaster: bitbake cooker log saving and downloading
      a574f29 glibc: Update to glibc 2.21 release tag
      a488fd5 glibc: Upgrade 2.20 -> 2.21
      dda70ca lzo: Upgrade to 2.09 and add ptest
      3201818 bind: Fix parallel make issue
      285966f btrfs-tools: fix for parallel build
      da1259e busybox: update to 1.23.1 release
      0a53957 openssl: disable SSLv3 by default
      0aa5ea1 packaging: allow globs in CONFFILES
      c4cc479 qt-mobility: Add patch to fix disabling bluez compile issues
      26be755 oeqa/ptest: Fixed complementary package install detection and added ptest-runner exit code check
      2f8e5a8 license.bbclass: fix unexpected operator for LICENSE values with space
      c58a3ae valgrind: add glibc-2.21 to glibc.patch
      9973ce1 useradd.bbclass: avoid do_rootfs error for debian package backend
      3d7c798 update-rc.d: use '-f' option in updatercd_postrm
      aa48c4f package_manager.py: use 'purge' instead of 'remove' in case of deb
      876015d scripts: delete dummy help2man script
      2fdc772 coreutils: import prebuilt manpages from Gentoo
      a481686 coreutils: don't generate useless dummy stub manpages
      2ca0339 utils.bbclass: fix create_cmdline_wrapper
      51bdf3b ref-manual: Review edits to the AUTOREV variable.
      f03c837 ref-manual: Updates to AUTOREV and SRCREV variable descriptions
      586992d toaster-manual: 2nd draft for review.
      3dad9aee adt-manual, ref-manual: Detail on using an external toolchain.
      6d17aa0 ref-manual: Added 'debug-tweaks' fragmentation.
      f63a3b6 ref-manual: Updates to some variables per review comments.
      da3a489 ref-manual, mega-manual: Adjustments to variable context images
      26a3df4 ref-manual: Updated the ASSUME_SHLIB variable.
      5727058 ref-manual: Added new variable description for BUILD_VENDOR.
      3c3e856 ref-manual: Added variable description for BUILD_PREFIX.
      d089b7c ref-manual: Added new description for SDK_VENDOR.
      b0ed0bc ref-manual: Edits to the SDK_SYS variable.
      9525322 ref-manual: Added new variable description for SDK_SYS.
      d8acb87 ref-manual: Added new description for SDK_OS.
      35612bf ref-manual: Created new SDK_PREFIX glossary entry.
      0410f36 ref-manual: Updates to TARGET_PREFIX and STAGING_DIR_HOST variables.
      32f6b13 ref-manual: Updated the SOURCE_MIRROR_FETCH variable description.
      022f5af ref-manual: Updated the Date variable description.
      a7f992e ref-manual: Updated the BUILD_OS variable description.
      a89f895 ref-manual: Updated the BUILD_ARCH variable description.
      0ba32a6 ref-manual: Updated the ASSUME_SHLIBS variable.
      46614da dev-manual: Edit to wording in "Avoid Duplicating Include Files"
      8e8d9615 ref-manual: Updated the following variables based on review comments:
      21fcd57 ref-manual: Updates to SDKTARGETSYSROOT and PKG_CONFIG_PATH variables.
      f3410bf dev-manual: Updates to "Avoiding Duplicating Include Files" section.
      ef959e6 ref-manual: Added "leakage" FAQ entry.
      a0999ab toaster-manual: Updated tar contents to not include the PDF file.
      481c178 mega-manual: Edits to fix titling
      0c4e31c mega-manual: Fixed reference to style sheet.
      1b719fa toaster-manual: Cleaned up the intro chapter
      6d512bd mega-manual: Updated sed file to include the toaster manual.
      dd62d57 mega-manual: Added toaster-title.png and code to include toaster-manual
      ab2007d Makefile: Removed default PDF creation of Toaster Manual.
      9d033d8 toaster-manual: Added two chapter files.
      e2f004f toaster-manual: Changed from "current" to "1.76.1" XSL templates
      7fe19fc toaster-manual: Edits to the intro chapter
      464c1d9 toaster-manual: Added two chapters to the manual's book file.
      0e3cb25 toaster-manual: WIP - Some placeholder introductory text.
      cd31b93 documentation: Support files to build Toaster Manual.
      4302376 toaster-manual: Initial file structure for new Toaster User Manual.
      75206cc ref-manual: WIP - test for YOCTO #5600
      d8e2874 mega-manual: New PNG file for mega-manual title page.
      f1bb814 ref-manual: Fixed icecc example code
      b83bed6 dev-manual: Fixed reference to TEST_SERIALCONTROL link
      3c7ad6e dev-manual: Fixed tc attribute description
      5d19f2b dev-manual: First draft of recipetool section.
      b2a6806 dev-manual: Edits to Quilt and finding temporary source code sections
      be7e182 documentation: Reverted back to the 1.76.1 XSL stylesheet
      0a54446 mega-manual, Makefile, poky.ent: Added front matter to mega-manual
      4a1ea28 documentation: First draft devtools.
      b876909 adt-manual, ref-manual: Review edits for xcross-toolchain additions.
      93052c9 adt-manual: Remaining mods to clarify xtoolchain env use
      05feb96 adt-manual: Added file name for reference to the config file.
      ce8ead3 adt-manual, ref-manual: Added missing variables and cross-links
      9c27a91 adt-manual: Added a list of variables defined for ADT setup
      4d12f8d adt-manual: Expanded note with a user configuration reference.
      77a6283 adt-manual: Added missing period.
      9dff02b adt-manual: Added some reasoning behind sourcing the xtoolchain env script
      cc06786 adt-manual: Reword for how user-space tools are provided.
      db030b1 dev-manual: Updated the OpenEmbedded build system term.
      b0639bc adt-manual: Added cross-reference to OE build system term
      7ca1a51 dev-manual: Added OpenEmbedded build system term, dumped build system
      568224b adt-manual: Fixed hyphenation issue.
      ee80485 dev-manual: Removed #!/bin/sh -e from the base script form
      f50e412 dev-manual: Updated the QEMUARCH option in the runqemu command.
      3ac2890 ref-manual: Removed the DISTRO_PN_ALIAS variable.
      e0dbcbf ref-manual: Edits to SOURCE_MIRROR_FETCH variable and typo fix
      44ddc35 ref-manual, dev-manual: Removed information about package name alias.
      db874ed ref-manual, dev-manual, adt-manual, yocto-project-qs: scrub eglibc
      9a47967 ref-manual, mega-manual: Updated buildhistory example figure
      84647d5 ref-manual: scrubbed eglibc
      84ee65a ref-manual: Edits to the TCLIBCAPPEND variable.
      328b3bd ref-manual: Added 21 new variable to glossary.
      70a2007 ref-manual: New variables added to the variable glossary
      eafdfbf tools: Added new file update-documentation-conf
      10b2504 ref-manual: Updated the [doc] string to include the & character.
      c9b7007 ref-manual: Added warnings about using package_tar
      4ab132a dev-manual, ref-manual, yocto-project-qs: Updates to parallelism variables
      0a367c5 ref-manual: Updated text for speeding up builds.
      d1bd81e dev-manual: Updated examples in "Splitting an Application into Multiple Packages"
      281c472 dev-manual: Edits to add more detail to where patch files are
      6a6687d dev-manual: Updated text to indicate patch files can end differently
      3cd8d86 dev-manual: Removed unwanted characters from text.
      f8245d9 dev-manual: Updated section on how checksums are dealt with
      4492b37 dev-manual: Replaced lttng-control and lttng-viewer with lttng-tools.
      2d54b1d ref-manual: Added CentOS 7.x to list of supported distros.
      bc4858f dev-manual, ref-manual: Edits to dev manager section and USE_DEVFS var.
      0e0a19a ref-manual: Added a cross-reference from the USE_DEVFS variable
      da47cb7 dev-manual: New section on choosing a device manager added.
      a23e76d dev-manual: repaired cross-line link for a <ulink></ulink> pair.
      b273c25 ref-manual: Added USE_DEVFS variable description
      8bb0ffb ref-manual: Re-ordered the UPDATERCPN variable.
      f972db3 dev-manual: Updates to the "Locate a Base Recipe" section.
      c037dd7 dev-manual: Updates to the "Using .bbappend Files" section.
      1e0797a documentation: Removed redundant ID tags that were throwing warnings
      48559ff ref-manual: Review edits to several glossary variables.
      63750d8 dev-manual: Updates to using IMAGE_FEATURES and EXTRA_IMAGE_FEATURES
      a0e8418 bsp-guide: Added a clarifying not about meta- in BSP layer names.
      73588fa dev-manual: Updated sysroot location for Eclipse examples.
      261fd1b bsp-guide: Replaced the Crown Bay example with the eMenlow.
      2bf21c2 bsp-guide: Updated the output examples for bsp tools.
      7d480c3 ref-manual: 13 new variables added to the glossary.
      b83c526 Makefile: Modified to make 'pdf' target not part of 'all'
      e318032 ref-manual: Updated the supported distro list.
      e1f4ba8 poky.ent: Corrected two variables with typos
      d250d38 documentation: Changed back to the "current" XSL style sheet.
      66ad91b dev-manual: Rewrite of the section on customizing images with packagegroups
      c8691a2 dev-manual, mega-manual: Updated kernel-overview-2-generic.png file.
      0cec924 dev-manual: Applied wording to warn reader that wikis have dated info.
      cd37517 dev-manual: Add ref to bitbake-layers "add-layer" and "remove-layer"
      b7020b0 dev-manual: Added missing ending quotation to code snippet.
      88f431c bitbake: toasterui: empty state for pages
      208f40d bitbake: toaster: Set the machines page default pagesize to 100
      baa38a1 bitbake: toaster: Remove filtering from layers,machines and targets
      c5ba5ec bitbake: toaster: Remove Layer source from machines, layers and targets
      82d2c50 bitbake: toaster: New build button allow arbitrary build targets
      9819728 bitbake: toaster: Additional fixes for the project variable page
      eba4e0f bitbake: toaster: layerdetails use new vcs reference api
      3775265 bitbake: toaster: fix git checkout command
      a07cf2e bitbake: toaster: properly detect failed server start
      d8d0db1 bitbake: toaster: Use on input event for validation rather than keyup
      fdb5639 lib/oe/package_manager: support exclusion from complementary glob process by regex
      3d2d158 test-dependencies.sh: strip only .bb suffix
      3f8c532 qt-mobility: select distro preference for bluez provider
      9571ccb iputils: install clockdiff same as ubuntu and fedora
      508509d populate_sdk: Handle OLDEST_KERNEL
      d8d5fee default-providers: Set the preferred provider for bluez based on version
      8633e18 connman: depend on distro provider of bluez
      7800588 conf/distro/include/default-providers: updated bluez-hcidump providers
      44b08f2 gstreamer1.0-plugins-bad: select distro preference for bluez provider
      4e2642e ofono: select distro preference for bluez provider
      8596c29 libpcap: select distro preference for bluez provider
      47dea14 neard: select distro preference for bluez provider
      0a4db94 pulseaudio: select distro preference for bluez provider
      0c9d0e9 packagegroup-base: select distro preference for bluez provider
      1139cc4 bluetooth.bbclass: simplify recipe inference of bluetooth provider
      69c5e09 libtool: 2.4.5 -> 2.4.6
      ad82508 neon: update 0.30.0 -> 0.30.1
      6ae933b bitbake: tests/fetch.py: latest_versionstring add set of PN
      1c1d9e3 bitbake: fetch2: wget remove scape of - in regexes don't needed
      5a88664 bitbake: fetch2: wget _modelate_version improvments
      22cebb8 bitbake: fetch2: wget latest_versionstring improvments in get version by dir
      62e171b bitbake: fetch2: wget add _check_latest_version_by_dir
      309d92e bitbake: fetch2: wget latest_versionstring _check_latest_version improvments
      bed1b3f bitbake: fetch2: wget latest_versionstring improve _parse_path
      c4da9b9 bitbake: cooker: rework LAYERDEPENDS versioning so that it is actually useful
      758dc92 bitbake: tests: add tests for OE pre-release version formatting
      93c3f39 bitbake: utils: ensure explode_dep_versions2 raises an exception on invalid/missing operator
      b427750 bitbake: depexp.py: Fix segfault if DISPLAY is not set
      a2bfd4b syslinux: support ext2/3/4 device
      06ff3c4 e2fsprogs: Extend to add nativesdk for syslinux
      a55d537 gcc: Upgrade 4.9.1 -> 4.9.2
      18b3cfd gst-plugins-base: Fix mulitlib packaging
      d88555b openssl: upgrade to 1.0.1k
      4c00256 oeqa/ptest: Removed buildhistory as requirement for ptest
      c74ee53 libassuan: add native build
      cd34df3 gpgme: fix configuration by setting proper parameters instead of patching
      6cac3ad oeqa/smart: Added some new test cases
      c0a7941 build-compare: Add the build-compare_git.bb recipe.
      c0a1f43 coreutils 6.9: fix unknown-configure-option
      ce79eca libnewt-python: remove make var LIBNEWTSH
      dc9c8bc icu: remove obsolete aclocal.m4 workaround (fixed upstream since v52.1)
      abb6cde libaio: Backport generic arch detection patch
      60ae5c2 meta: enable parallel build for several recipes
      eee50b2 vala.bbclass: enable PARALLEL_MAKE
      eacb5c5 pcmciautils: fix and enable parallel build
      8d30c2a ghostscript: fix and enable parallel build
      2d9763a blktrace: fix and enable parallel build
      7502fa5 openssl: fix and enable parallel build
      60b33e5 pth: fix and enable parallel build
      5f5d0d8 mtools: fix and enable parallel build
      208c9d3 at: fix and enable parallel build
      5c87de1 tcp-wrappers: fix and enable parallel build
      b003df0 bind: fix and enable parallel build
      3dff11c openssl: Add mapping for microblaze architecture
      f562905 btrfs-tools: remove nodocs.patch
      f404ab2 neard: do not ship version.h
      146f28a gcc-sanitizers: check gcc-build-internal before link
      88ad298 rt-tests: fix gzip command
      b3dab28 libtool: don't execute automake and autoconf on every invocation
      00472a7 Revert "libtool: avoid running automake/autoconf --version"
      ef07260 bluez5: upgrade to 5.28
      51b6021 ofono: upgrade to 1.16
      7d1e1fc python-pycurl: 7.19.5 -> 7.19.5.1
      7b72a84 python-scons: 2.3.2 -> 2.3.4
      ca88dd8 lttng-tools: 2.5.3 -> 2.6.0
      6d247eb libpciaccess 0.13.2 -> 0.13.3
      6f47148 lttng-ust: 2.5.2 -> 2.6.0
      8b54cb7 subversion: 1.8.10 -> 1.8.11
      1aa6b04 kexec-tools: 2.0.8 -> 2.0.9
      2e608ec package_regex.inc: Cleanup and organize
      73f7ced upstream_tracking.inc: Remove entries that now isn\'t needed
      b7153be image: add new items to IMAGE_FEATURES[validitems] list
      5476ce3 gstreamer-plugins: don't ship files in ${PN}
      f749594 gst-plugins-good: ship equaliser presets in right package
      8df03f4 gstreamer1.0-plugins-good: ship equaliser presets in right package
      bfb4819 gstreamer1.0-plugins-base: move data to the right subpackage
      34221ef gst-plugins-*, gstreamer1.0-plugins-*: fix main package binary components
      1920ef3 oe-pkgdata-util: add some QA tests
      cfc12df oe-pkgdata-util: add list-pkg-files subcommand
      8d13d18 oe-pkgdata-util: add list-pkgs subcommand
      4b33006 oe-pkgdata-util: allow reverse package name lookups
      0f77efe oe-pkgdata-util: fix read-value to handle data with colons in the value
      1fb1caf oe-pkgdata-util: make find-path show a proper error if no package found
      9f03969 oe-pkgdata-util: improve command-line usage
      675aa5f git: add basic tab completion support
      9aafb02 git: expand recipe to take advantage of pre-gen'd manpages
      af7fc22 lib/oe/lsb.py: Fix up for dash
      842a332 image_types: Error out if BTRFS image is too small
      e34a65f cryptodev-module: Fix build on kernel v3.19
      ae977c5 xserver-xorg: Improvments in systemd-logind disable
      84520a9 xserver-xorg: Update to 1.16.3
      1cdaf20 base-files/profile: change EDITOR to not be busybox specific
      34a4413 u-boot: update to version 2015.01
      1993237 procps: disable fancy new top output mode
      9e93803 connman: upgrade to 1.28
      c22ba2d harfbuzz: upgrade to 0.9.38
      8102bd0 wic: add GPT support
      fa818fb wic: properly label filesystems
      5c05635 wic: fix empty btrfs partitions
      4dce5c4 wic: remove useless calls to __write_fstab
      cf3e21e wic: allow to configure overhead factor per partition
      d84742c wic: allow to configure extra space per partition
      605627b wic: add rawcopy source plugin
      0b156da wic: allow creation of partitions not in table
      f923f0f toasterconf: update Toaster configuration file
      53f3f61 mesa: update 10.4.3 -> 10.4.4
      efd0e86 mesa: update --with-llvm-shared-libs configure option
      548ab15 qemu: Update PACKAGECONFIG[xen] and add xen to defaults
      62eb5e6 kern-tools: fix patch application error (preempt-rt)
      edde3e5 runqemu: Add option for BIOS binary filename
      98da500 btrfs-tools: update to 3.18.2
      a298d8c qmake_base.bbclass: fix hardcoded paths in a generated qt.conf
      23bf6bf gst-fluendo-mpegdemux: update to 0.10.85
      4870290 rootfs.py: ignore "NOTE:" when catching warnings
      2c2b003 dhcp-client: Ignore partial checksums
      a849839 u-boot.inc: unbreak
      ae32fed gcc-target: Don't install target gcc libdir files
      cefc403 autotools/siteinfo: Avoid races over siteinfo files
      231d4a9 bitbake: bitbake-user-manual: Removed errant writer note line.
      9f562f8 bitbake: bitbake-user-manual: Added some links to some new variables.
      d87805b bitbake: bitbake-user-manual: Added five new repo variables and links.
      961e692 bitbake: Makefile: Updated the script to not create PDF version by default
      1a740bb bitbake: toastergui: links outside Toaster should open in a new window
      c8a8288 bitbake: toaster: All machines Fix filter counts
      ea7d246 bitbake: toaster: All machines show results count if filtering or searching
      2a3ca55 bitbake: toaster: All machines reset order_by if removing that column
      203ac29 bitbake: toaster: all Machines exclude de-prioritised layer source items
      a7ab4d0 bitbake: toaster: All Machines fix reset search link
      9e8798f bitbake: toaster: models Allow the machine's layer name to be searched
      d6868d5 bitbake: toaster: All machines Add filtering based on layer in project
      50719af bitbake: toaster: All machines Add layer name order by functions
      02b7704 bitbake: toaster: layerdetails Don't remove alert from dom on dismissal
      a1347a1 bitbake: toaster: All machines Update layer notifications
      479338c bitbake: toaster: All machines add a column to link back to machine conf
      87074af bitbake: toaster: machines Make sure we don't overwrite the pagesize
      8c25c34 bitbake: toaster: Add add/select functionality to machines page
      6969a3d bitbake: toaster: machines Fix undefined variables
      b2a903e bitbake: toastergui: add download task log icon to recipe details page
      6877263 bitbake: toastergui: add the word 'compatible' to 'all' pages
      42a7d91 bitbake: toastergui: set column heading to 'Revision'
      d81e514 bitbake: toaster: display Toaster mode and version in debug mode
      da8110a bitbake: toaster: improve logging facilities for toaster
      0c89846 bitbake: toaster: enhancements for the startup sequence
      202d808 bitbake: toastergui: improvements in layer selection logic
      b741c9a bitbake: toaster: enable server-side caches and debug-panel
      d72f198 bitbake: toastergui: fix loadconf error message
      ed5c448 bitbake: toaster: correct typo in toaster script
      514b7cf bitbake: toasterui: use text() instead of html()
      16a9667 bitbake: toastergui: remove time link for failed build requests
      cc5f804 libtool: Fix option parsing performance regression
      870323c linux-yocto/3.14: fix qemumips build error
      0357437 kern-tools: import patch performance improvements
      9348049 linux-yocto-dev: update to v3.19+
      4078802 lttng: update to 2.6.0-stable
      46b1b96 linux-yocto: basic octeon III support
      ef3fa60 linux-yocto/3.17: update to v3.17.8
      d0fe36e linux-yocto/3.10: update to v3.10.65
      5848c92 linux-yocto/3.14: update to 3.14.29
      a7c428c kernel-dev: install all modules by default
      dade54f libdrm: upgrade to 2.4.59
      62cd5e7 flac: upgrade to 1.3.1
      3145abf neard: upgrade to 0.15
      4530a8f m4-native 1.4.9: remove it
      586eab4 bison 2.3: disable native
      90ca8d5 coreutils 6.9: disable native
      9171652 elfutils 0.148: use BPN in SRC_URI
      b5577e0 subversion 1.6.15: fix unknown-configure-option
      8eadaec rxvt-unicode: fix for 9.20 and 9.21
      594959e tar 1.17: fix unknown-configure-option
      f4b1459 grep 2.5.1a: fix unknown-configure-option
      1f9b782 gzip 1.3.12: a few fixes
      8f2bda7 patch 2.5.9: fix unknown-configure-option
      b92a619 m4 1.4.9: fix unknown-configure-option
      82bc3fb findutils 4.2.31: fix SRC_URI
      d31ec82 groff 1.18.1.4: fix HOMEPAGE and SRC_URI
      60b932d xf86-video-intel 2.21.15: remove it
      4557e95 matchbox-desktop: remove 0.9.1 and 2.0 version
      f9db549 matchbox-wm 1.2: remove it
      a960a14 which 2.18: fix SRC_URI
      1b45a51 busybox: Include 'mesg' utility
      a3dfb70 recipetool: improve command-line help
      9433537 devtool: improve command-line help
      7d73324 scripts/oe-selftest: add command line option to list test classes
      336d28c scripts/oe-selftest: fix startup backtrace
      eba9f8a wic: bootimg-partition: Stop removing whole workdir
      080e3e4 wic: print partition alignment when available
      602d90d wic: use kB for the partitions size
      7c3b9a9 terminal.py: add tmux new window option
      b7d91d3 openssh: Fix non-deterministic build behaviour
      0de948f linux-yocto-tiny_3.17: Update to actually use 3.17 git repo
      f6ec8df Revert "bitbake.conf: don't remove WARN_QA and ERROR_QA from hashes"
      24d9d5a insane.bbclass: Added QA test for expanded ${D}
      1c5be77 files/toolchain-shar-template.sh: fix replace target_sdk_dir twice in environment setup file
      16a0178 mesa: Upgrade to 10.4.3
      09fba50 wic: bail out on kickstart parse errors
      24ffda5 glibc: Re-enable upstream __USE_KERNEL_XATTR_DEFS patch
      1f29265 image.bbclass: don't let do_rootfs depend on BUILDNAME
      d42963a core-image: split debug-tweaks into individual features
      dbfed41 create-pull-request: Fix git request-pull
      5a4e20a ca-certificates: Upgrade to 20141019 (git based)
      308a7ea lsbinitscripts: Upgrade to 9.61
      10f95ff nspr: Upgrade to 4.10.8
      5ca2518 glew: Upgrade to 1.12
      30a5c9e classes/license: tweak license format messages
      617e2e9 binconfig-disabled.bbclass: fix echo command
      775d467 gcc-configure-common.inc: remove ac_cv_path_SED
      588342f valgrind: depends on boost when ptest
      5fcb217 apr-util: Allow use in SDK
      6b19a93 wic: fix extended/logical partition layout
      eca277b u-boot.inc : add compile multiple u-boot feature
      1e4ee4b uboot-config.bbclass: Allow multiple U-Boot config for machine
      02a1e01 yocto-bsp: Add branch to SRC_URI for custom kernels
      bf6f35b yocto-bsp: Add missing conf dir to arm template
      1f53ede libtool: avoid running automake/autoconf --version
      d8f0011 opkg-keyrings: New recipe
      9d3e44d opkg: Backport improvements to opkg-key
      c8c75ed poky-feed-config-opkg: Remove
      e4d165d opkg: Merge in opkg-collateral
      3d18626 opkg: Merge opkg.inc into recipe and tidy up
      d07c9ad opkg-collateral: Simplify source files
      d1373d4 opkg-arch-config: Renamed from opkg-config-base
      cb6501a apr: Allow use in SDK
      8ec0347 insane: add unknown-configure-option to default WARN_QA
      9c9560f bitbake.conf: don't remove WARN_QA and ERROR_QA from hashes
      ddb8d3f wayland: remove explicit class-native DEPENDS
      8ac69a9 native: remove PN from DEPENDS automatically
      7330a88 systemd: Backports fixes to 216
      960dd0a lsbinitscripts: fix the path for mountpoint
      da35877 lib/oe/terminal: add support for Terminology terminal emulator
      95bf2ab piglit: add x11 to required DISTRO_FEATURES
      4cc8614 xmlto-native: fixes slow creation of yocto docs
      ee9acb1 xorg-driver: add x11 to required DISTRO_FEATURES
      4385b3c package_manager.py: fix rootfs failure with multilib enabled
      e4dc8fe openssh: configuration updates
      93842f0 pigz: Upgrade to 2.3.3
      57647c9 terminal.py: fixes launching multiple windows of gnome-terminal
      f14e96a runqemu-internal: get rid of annoying but harmless error message
      491d1db image.bbclass: make kernel depmod data optional
      616696a busybox: cve-2014-9645
      88a966a gnutls: update to 3.3.12
      29d961a mingetty: fix SRC_URI
      2bb31f1 pcmciautils: fix SRC_URI and HOMEPAGE
      92cf495 latencytop: fix SRC_URI and HOMEPAGE
      a4ae55d pax: fix SRC_URI and HOMEPAGE
      7775537 man: fix SRC_URI
      a375173 cwautomacros: fix SRC_URI and HOMEPAGE
      b0a28c0 dosfstools: fix SRC_URI
      eb0c8d5 base-passwd: fix SRC_URI
      8c2c459 cdrtools-native: fix HOMEPAGE and SRC_URI
      03038f3 perf: add LIBNUMA_DEFINES
      312e8a1 screen: add PACKAGECONFIG for libutempter
      5379ed8 dpkg: add perl to RDEPENDS
      ca232b5 lib/oe/image.py: add error checking for missing IMAGE_CMD
      26e5b0f classes/image: ensure uninstalled packages do not appear in manifests
      69c588b classes/image: skip recipe on invalid IMAGE_FEATURES item
      124f041 lib/oe/rootfs.py: rename _uninstall_uneeded to fix spelling error
      4421239 classes/image: drop unused default of MACHINE_POSTPROCESS_COMMAND
      3f739a8 recipetool: replace version in S value
      bcfca54 libtool: Fix tools path issues
      bd84192 report-error: Catch un-readable log data
      013f7e2 poky.conf: use logic to edit WARN_QA and ERROR_QA
      3ebb522 poky.conf: remove poky-feed-config-opkg from images
      825c0a9 bitbake: data_smart: split expanded removal values when handling _remove
      b00e781 bitbake: tests/data: add test for incorrect remove behaviour
      22c38e2 build-appliance-image: Update to master head revision
      e240435 libtool: 2.4.4 -> 2.4.5
      1036630 python: Disables SSLv3
      4213ccc sed-native: drop
      47a5525 btrfs: create an empty file to build the fs in
      823d2f9 tzdata: update to 2015a including leap second
      d231cc4 tzcode: update to 2015a leap second changes too
      6145832 build-appliance-image: update to head afe85485fe185b663a1285b5c27de3160bf06cf7
      b4d01ec toasterconf.json update
      c462ce6 maintainers.inc: Update some items for Randy Witt.
      2237c9f bitbake: toaster: proper setup for build configuration
      afe8548 bitbake: toaster: new layer checkout logic
      c58c948 bitbake: toaster: update texts for the startup sequence
      635130d bitbake: data_smart: Don't use mutable objects as default args
      087424d bitbake: parse/ast: Fix issue if path contains '&'
      4f71827 bitbake: toastergui: update project build listing
      fefef50 bitbake: toasterui: do not filter images by extension
      32b396b bitbake: toastergui: alignment fix
      bc63d6b bitbake: toastergui: remove recipe id links to the layer index
      a9c0865 bitbake: toastergui: consistent capitals in button
      05f5435 bitbake: toastergui: hide table controls when when less than 10 entries
      8a2ec99 bitbake: toastergui: set column width in layer details page
      d4b9b0f bitbake: toastergui: add 'show all' link to no results page
      c748c7e bitbake: toastergui: give the add dependencies form some breathing space
      088c19d bitbake: toastergui: consistent add / remove layer notifications
      571d551 bitbake: toastergui: remove redundant style declaration
      c049775 bitbake: toastergui: Generic message for the layer details empty states
      24979f5 bitbake: toaster: apply common styles to right hand column of detail pages
      a11a34c bitbake: toaster: make layouts consistent
      e2cffc0 scripts/send-error-report: Set exit code if error occurs
      3f15d8a kernel: Fix depmod for multilib
      36bd248 image: Add missing depends on virtual/kernel for depmod data
      08c64b5 security_flags: disable PIE on expect
      7bc6794 logrotate: fix missing acl and libselinux dependencies
      474661b dpkg: fix host contamination
      3592507 combo-layer: support updating up to arbitrary commit
      62d94a4 combo-layer: minor refactor
      f51e79b libunwind: Fix test case link failure on PowerPC with Altivec
      8754c8a udev: remove obsolete dependency on acl
      693d455 udev: fix missing dependency on glib-2.0-native
      d963f3b bitbake.conf: add PKGDATA_DIR to BB_HASHBASE_WHITELIST
      609898a linux-dummy: provide empty shared_workdir method
      86c77ac elfutils_0.148.bb: CVE-2014-9447 fix
      6e02676 recipes-qt: add x11 to required DISTRO_FEATURES
      6618cff libpng: Upgrade to 1.6.16
      c55165e gmp: Change the SRC_URI to reflect upstream changed location
      dc11c0e icu: Upgrade to v54
      ca1cd18 usbutils: Fix typo in md5sum
      b7d334d xserver-xorg: Add the patch to fix subwindow in Xi emulated events
      14ef8b9 udev-cache: avoid using '-L' for stat
      2b7d311 util-linux: move readprofile to match busybox
      0962b29 libsm: remove dependency on e2fsprogs
      2e8b1b4 systemd: remove util-linux from DEPENDS
      0f8c091 util-linux: upgrade to 2.25.2
      09aa2b1 libav: drop older 0.8.* and use libav-9 by default
      872b656 libpostproc: import from meta-oe
      f78bf87 gst-ffmpeg: add dependency on libpostproc
      57351e9 udev: don't keep ptest testdata laying around
      0d5ac1a udev: fix ptest rule syntax check
      29de3d2 ltp: update to 20150119 release
      b688d55 orc : Update to 0.4.23.
      af69192 kernel-yocto.bbclass: Bug Fix inside do_kernel_checkout()
      3bf5b6d arch-mips.inc: Change definition of TRANSLATED_TARGET_ARCH
      e558e54 feature-arm-thumb.inc: Remove extra space on thumb override
      9e44be4 dmidecode: add powerpc64 to compatible host
      6a41dd1 gcc-sanitizers: fix licensing
      b2b62c3 binconfig-disabled: install config scripts in sysroot
      5e6e95d binconfig-disabled: try harder to prevent usage of config scripts
      0383bb8 lighttpd: Use PACKAGECONFIG to enable openssl
      c453597 eglibc-use-option-groups.patch: Various fixups
      2af94b0 python-smartpm: Fix attemptonly builds when file conflicts occur
      5656567 u-boot-fw-utils: Fix the cross build
      f687f99 libidn_0.6.14: fix the QA Issue
      6a63df7 glibc: CVE-2014-9402 endless loop in getaddr_r
      5db14d5 nss: update package to 3.17.3 and build fix
      dacbc74 boost: Avoid to use local host configuration
      43dc6b5 image_types.bbclass: manage 'cpio_append' directory
      e598bd5 image_types.bbclass: fixed 'init' creation for cpio images
      579aa72 kmod: new PACKAGECONFIG debug and logging to help reduce binary size.
      db8e08c base-passwd: Don't replace $ variables in passwd and group files
      99ee41b build-appliance-image: Upgrade for 1.8 Master
      fd37993 mkfontscale: Upgrade to 1.1.2
      2baa624 libxml-parser-perl: upgrade to 2.44
      8bef633 gcc: ensure target gcc headers can be included
      a3dbfc8 bind: fix typo chown->chmod
      c4c885b distcc: fix initscript can not stop distcc daemon correctly
      959759b gcc/libgcc-common.inc: Add missing 'fakeroot' to two tasks
      867758c shadow: securetty: Add Xilinx Zynq SoC
      2323efc pseudo_1.6.x.bb/pseudo_git.bb: Pseudo 1.6.4
      07f2eca tiny-init: set proper S value
      745cebd bitbake: siggen: Ensure taskdata default functions exist in base class
      2b899a4 net-tools: Fix rerunning of do_patch task
      11ef55a kernel/image/depmodwrapper: Fixups for depmod
      46dba26 gcc-runtime: Remove libgfortran data from receipe
      a9102e5 package.bbclass: Let PR server update PKGV, not PV
      8bab098 lib/oe/package: Ensure strip breaks hardlinks
      7f58a85 python-2.7-manifest: Add package for contextlib module
      3948336 dhcp: not override site.h
      bee37d4 dhcp: upgrade to 4.3.1
      02ee240 rpcbind: add PACKAGECONFIG for systemd
      38978ee rpcbind: upgrade to 0.2.2
      3676378 man-pages: upgrade to 3.76
      f733dad gnupg: upgrade to 2.1.1
      e758eb5 xmlto: upgrade to 0.0.25
      0421c67 elfutils: upgrade to 1.161
      5832ed3 packagegroup-self-hosted: package all of Python
      9839638 fix '[[: not found' error message using dash
      c5fb558 packagegroup-core-sdk: add gcc-sanitizers to core SDK
      166015c gcc-sanitizers: Enable GCC sanitizers
      5b985fd oeqa/utils/decorators: Try and improve ugly _ErrorHandler tracebacks
      52a837e perf: fix for rebuilding
      f63f4b5 libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11
      58d91fa xorg-app: add x11 to required DISTRO_FEATURES and cleanup dependencies
      1b7b58a recipetool: add python dependency scanning support
      e490d79 recipetool: add python buildsystem support
      26f7732 perl: Backport fix for bug #123591
      817606a grub-efi: bump the PR
      e220207 neard: fix B != S
      7cd7230 neard: fix parallel issue
      940c417 guile: fix installed-vs-shipped error
      b31e6e7 Revert "guile: fixed installed-vs-shipped error"
      cf72ede base.bbclass: detect when S has been set incorrectly
      4eb3db9 meta: set proper S value
      00fbca6 xorg-minimal-fonts: set and handle S in a proper way
      06a2dd7 lsof: handle S in a proper way
      ed3ddd4 makedevs: set and handle S in a proper way
      32fb1de gnutls: fix sed command
      b2f8367 python3: fix for cross compiling
      3873efd curl: Add PACKAGECONFIG for samba
      8f9506b at-spi2-core: pass correct path to dbus-daemon
      c929bd3 texi2html: update po_document/Makefile.in.in for new gettext
      77125fe texinfo: update po_document/Makefile.in.in for new gettext
      b3dd5ec gettext: upgrade to 0.19.4
      edd91b4 opkg: fix libtoolize error
      d4e1862 libtool: upgraded to 2.4.4
      d977873 automake: upgrade to 1.15
      0d93a58 mklibs-native: upgrade to 0.1.40
      4a0386e autogen-native: upgrade to 5.18.4
      cc0ee9b grub: remove autogen-native dependency for tarball recipes
      6f19667 lib/oe/sdk.py: Add SDKIMAGE_INSTALL_COMPLEMENTARY capabilities to DpkgSdk
      9538ee9 bitbake: cooker: Use expanded_data for ASSUME_PROVIDED
      4eb3ffe bitbake: cooker: Rename event_data -> expanded_data
      793f2f2 bitbake: server/process: Fix select call
      d95e988 bitbake: toastergui: enable re-ordering when columns are hidden
      02c49c2 bitbake: toastergui: all projects column show/hide
      ca8c634 bitbake: toastergui: fix the second 'view all targets' link
      2dba917 bitbake: toastergui: minor fixes
      08e5a49 bitbake: toastegui: project page build selected targets
      c546815 bitbake: toastergui: fix all targets page search
      4571c82 bitbake: toastergui: fix all-targets redirect
      8e3be3f bitbake: toaster: newproject default release selection fix
      bdbc37f bitbake: toastergui: "Run again" button in build pages
      99bbf30 bitbake: toastergui: fix duplicate IDs all builds page
      c7af070 bitbake: toasterui: save event backlog to build
      4dc8edb bitbake: toastergui: save cookie for orderby/page size settings
      07bfa68 poky.conf: change case of Poky for DISTRO<->SANITY mismatch
      d675932 upstream_tracking.inc: update entries for bash
      8da8a0e bitbake: prserv/serv: Improve exit handling
      6abcc61 bitbake: toaster: project configuration variables page
      d1dbf4c bitbake: toaster: project builds page
      9a51fb3 bitbake: fetcher: use os.path.splitext() instead of string.split()
      f0d5edc bitbake: bin/bitbake: only check that /dev/shm is writable on Linux
      a67b855 bitbake: bb/fetch2/wget.py: latest_versionstring escape packagename when built regex
      c6f933e bitbake: cooker.py: trap the ENOSPC error and translate it
      e63723f bitbake: cooker: Further optimise pyinotify
      db45dde bitbake: command/cooker/knotty: Fix memres handling of command environment changes
      3e4d84a arch-mips.inc: Add the MIPS ABIEXTENSION to toolchain name
      3290dc9 maintainers: Clean up a couple items
      08d3f44 bitbake: lib/fetch2: Tweak get_srcrev() function description
      35c9fa0 maintainers: Update for non-maintained recipes
      d9d5b8b depmodwrapper-cross: Update to use STAGING_KERNEL_BUILDDIR
      1dfb903 lib/oe/rootfs.py: Fix reference to abiversion file location
      7298317 xserver-xorg: Always disable systemd-logind.
      42b7055 maintainers.inc: update it
      08970d4 glibc: Fix up minimal build with libc-libm
      2d58e62 msmtp: fix configure options
      fde9288 kexec-tools: separate B and S
      0a861d2 presentproto: separate B and S
      a7f4a3a rpm: separate B and S
      fb043c4 icon-naming-utils: separate B and S
      e6fd674 libfm: separate B and S
      972178d libfm-extra: separate B and S
      03ab499 connman: fix B != S
      55a4586 python: fix B != S
      84a76b2 alsa-utils: fix B != S
      15ce397 libcroco: separate B and S
      0736edb gnome-desktop-testing: separate B and S
      3a0c5de qemu: fix B != S
      9d4cad3 apr-util: fix B != S
      646230a expect: separate B and S
      0c498a7 oprofile: separate B and S
      3d0bf25 pinentry: separate B and S
      de6e1fa bash: separate B and S
      42947da gnutls: separate B and S
      0e67d3c libgcrypt: separate B and S
      ec65748 flac: separate B and S
      e340a37 cracklib: separate B and S
      bd52abb cmake: fix B != S
      f7b94f6 bc: separate B and S
      d625245 ghostscript: fix B != S
      3b1324b nspr: fix B != S
      92597b5 libnl: separate B and S
      2e1bdff rxvt-unicode: Add Upgraded version 9.21
      586c5bd dtc: Upgrade to 1.4.1 (git based)
      36be2d6 msmtp: Upgrade to 1.6.1
      4bbe189 autotools.bbclass: print make clean
      41e6eae quilt: set CLEANBROKEN
      8617fde mkelfimage: set CLEANBROKEN
      4acf17f slang: set CLEANBROKEN
      8910c5e libxml-parser-perl: fix LICENSE to be more accurate
      fee4f23 libxml-simple-perl: fix LICENSE to be more accurate
      b404dd3 perl: fix LICENSE to be more accurate
      56e8fc5 pigz: add Apache-2.0 to LICENSE
      ca6cb22 portmap: remove obsolete lines
      8d8e035 man: remove fakeroot from do_install()
      2acea20 cups: remove fakeroot from do_install()
      93c9b3c libical: use BPN in SRC_URI
      f3eb277 gnu-efi: upgrade to 3.0.1
      63925b5 bluez5: upgrade to 5.27
      bbd5fe6 libaio: Upgrade to 0.3.110
      85326e2 security_flags: disable pie support for libaio, blktrace and ltp
      399c0fa usbutils: Add version 008
      1f63bd2 systemd: add missing RDEPENDS
      e518d3e python-gitdb: upgrade to 0.6.1
      3996f7a python-git: upgrade to 0.3.3
      b39ebfd socat: forcibly disable use of libbsd
      5e52a6c BAD_RECOMMENDATIONS also works for RPM packaging.
      363100f curl: upgrade to 7.40
      013de19 package.bbclass: Fix support for private libs
      311d9d1 sysklogd: upgrade to 1.5.1
      ce9cb7a coreutils: upgrade to 8.23
      ce5cc41 sysstat: upgrade to stable version 11.0.2
      5b7371b qt4-embedded: support c++0x stand for directfb
      ac35e3c directfb: upgrade to 1.7.6
      7b8c6b8 lz4: update to r127
      ac867c3 grub 2.0: several fixes
      175d162 pax-utils: RDEPENDS on python
      23864d6 parted: parted-ptest RDEPENDS on python
      ca133bc oprofile: disable documentation
      c2c4579 icecc.bbclass: properly handle disabling of icecc
      db2255d cross-canadian/meta-environment: Allow modification of TARGET_OS to be optional
      0e35e33 openssh: deliver ssh-copy-id
      2eaeba1 kernel-yocto: remove GUILT_BASE from terminal exports
      34f3d55 kernel.bbclass: Update cleandirs to remove new kernel staging dirs
      fddf343 kernel-devsrc: Depend on virtual/kernel:do_compile
      14fa134 perf: Disable perf-libunwind
      4e13036 perf: Add libdw unwind support to perf-libunwind feature
      46cdaf1 kernel: move source and build output to work-shared
      92725ad kernel.bbclass: When linux/version.h exists, copy it
      1a0343a module.bbclass: Add KERNEL_SRC in EXTRA_OEMAKE
      397f27c guile: fixed installed-vs-shipped error
      4e20211 bitbake: toasterui: fix variable data error
      2d78912 bitbake: toastergui: all builds page lists failed build requests
      ce78487 bitbake: toaster: layerdetails Remove compatibility setting
      025533d bitbake: toaster: Add layer details page feature
      2a6f739 bitbake: ConfHandler: Clean up bogus imports
      5c9e2b2 bitbake: ConfHandler: Rename oldfn to parentfn to be clearer
      967f13f bitbake: cooker: Improve pyinotify performance
      1083747 libxml2: Backport fix for CVE introduced entity issues
      2b92504 poky.conf: add support for running mips64 qemu machine
      eb7480f bitbake: cooker: Fix pyinotify handling of ENOENT issues
      6c3c3e1 bitbake: cooker/cache/parse: Implement pyinofity based reconfigure
      83f8a40 bitbake: bitbake: Add pyinotify to lib/
      3cd31b1 bitbake: bb/fetch2/ssh.py: Fix urldata.localpath use os.path.normpath
      83a30df bitbake: fetch/git: Improve ls-remote handling for latest_revision
      c45589a poky.conf: mark all CentOS 6/7 versions as compatible
      8763704 bitbake: toaster: implementation of project page
      66e1b52 bitbake: toaster: branch name priority resolution
      3e73af4 bitbake: toaster: do not launch web browser on noweb option
      3c37669 bitbake: toaster: write pre-read conf file for build variables
      ed9fa17 bitbake: toaster: Improve client side error handling
      2e26745 bitbake: ast: Add error when trying to use dash in sh function names
      97d44bf bitbake: cache/fetch2/siggen: Ensure we track include history for file checksums
      26cd67e bitbake: wget: Add localpaths method which gives localpath with history
      130958c bitbake: bitbake-worker: Use setsid() rather than setpgid()
      1393e22 bitbake: cooker: Shut down the parser in error state
      cbb4f57 bind: Update libxml2 check to make it deterministic.
      33f8236 git: upgrade to 2.2.1
      9a998a4 file: upgrade to 5.22
      19399d5 oeqa/parselogs: Added a check in case the folder location does not contain any log files
      9fee93d pcmanfm: update to 1.2.3
      bb21377 menu-cache: update to 1.0.0
      6450281 libfm: update to 1.2.3
      41fa9bd base.bbclass: Avoid explicit ${MAKE} in do_configure
      2aa210c rm_work: Fix RM_WORK_EXCLUDE for image/sdk recipes
      292f32b glib-2.0: add HOMEPAGE
      c366bcb cogl: fix .pc file packaging
      02f010b cmake-native: disable check for acl.h
      9cfe52d libgpg-error: Update to 1.17
      1a3afca liburcu: Upgrade to 0.8.6
      108b481 libksba: Upgrade to 1.3.2
      be42ad1 libassuan: Upgrade to 2.2.0
      0943983 libffi: Upgrade to 3.2.1
      6ca44e2 lsbinitscripts: Upgrade to 9.60
      86b24bc json-c: Upgrade to 0.12
      5e2bf79 openssl: fix hard paths in native openssl
      c4fc564 syslinux: Update to 6.0.3
      31059be gnupg: Upgrade to 2.1.0
      144630e cogl: enable egl-x11 when build with x11
      188db83 cups: check avahi before use it
      d1b523e qt4: Fix QT4 applications spamming "QWSLock::down(): Invalid argument"
      fca3bc5 dropbear: upgrade to 2014.66
      3fb5191 openssh: upgrade to 6.7p1
      060e354 libevdev: upgrade to 1.3
      3accae1 rgb: upgrade to 1.0.6.
      b457fe5 xkbcomp: upgrade to 1.3.0
      c8cf56b xinit: upgrade to 1.3.4
      1db3472 xf86-video-modesetting: upgrade to 0.9.0
      8db61a9 xf86-input-synaptics: upgrade to 1.8.1
      57f2f85 xf86-input-evdev: upgrade to 2.9.1
      593ad57 xf86-video-intel: upgrade to 2.99.917
      86d1a86 freetype: upgrade to 2.5.4.
      b186008 xkeyboard-config: upgrade to 2.13.
      cd00f2a libpng12: upgrade to 1.2.52
      67786c4 librsvg: upgrade to 2.40.6
      450a4aa hicolor-icon-theme: upgrade to 0.14
      e4aa242 json-glib: upgrade to 1.0.2
      fad05a7 gst-fluendo-mp3: upgrade to 0.10.31
      4935fe6 insane.bbclass: fix desktop
      cc73622 kernel.bbclass: fix do_unpack function when S ends with slash
      0e92cbc pulseaudio: use stricter PACKAGES_DYNAMIC
      97ca1c3 poky.conf: add file-rdeps to WARN_QA
      2674ddb dev-manual: Some minor fixes to some text.
      cf17b6c dev-manual: Minor hyphenation fix.
      060d30d bsp-guide: Added more detail for customizing a BSP recipe
      54f98c0 bsp-guide: Cleaned up some examples affected by VESA-support
      eae11ba bsp-guide: Updates to the "yocto-bsp" section.
      bc42151 bsp-guide: Some minor fixes to the BSP Guide
      e38e7e7 bsp-guide: Some corrections to the Crown Bay code examples.
      63e4452 Makefile: Clean ups to the Makefile.
      67f9fa9 poky.ent: Updated the high-end copyright date to "2015".
      46f120c documentation: Updated all XSL style sheet imports to use 1.76.1 version
      bfe7d30 gstreamer1.0-omx: use mulitple SCMs to fetch submodules
      b3d517a image.bbclass: Remove 'set_image_autologin' function
      ea06c15 telepathy: remove (moved to meta-oe)
      d25f398 lttng-ust: Update to 2.5.2 version
      1fc866e lttng-tools: Update to 2.5.3 version
      b371b6b lttng-modules: Update to revision to 16d7431c3
      93f902f libinput: update to 0.7.0
      4ae6e8f mmc-utils: update to latest git version
      8c9fb9d oeqa/selftest: fix test_incremental_image_generation for changes in log output
      9c16a96 gstreamer1.0-rtsp-server: upgrade to 1.4.5
      dabb7f6 gstreamer1.0-libav: upgrade to 1.4.5
      7bdb55f gstreamer1.0-plugins-ugly: upgrade to 1.4.5
      fbf32be gstreamer1.0-plugins-good: upgrade to 1.4.5
      f5e4d7b gstreamer1.0-plugins-bad: upgrade to 1.4.5
      88b6366 gstreamer1.0-plugins-base: upgrade to 1.4.5
      8c42ad4 gstreamer1.0: upgrade to 1.4.5
      4477069 oeqa/parselogs: Add harmless failure warning introduced by new qemu version on qemuppc
      39dea06 qemu: upgrade to 2.2.0
      5c8ef2b gstreamer1.0-plugins-base: Taglist will not be sent to downstream if all the frame corrupted
      0b97142 gstreamer1.0-plugins-good: Decrease the rank as havn't this kind of decoder for asteriskh263
      ff46a34 xcb-util-keysyms: upgrade to 0.4.0
      f5cb9a7 xcb-util-image: upgrade to 0.4.0
      5da3d30 xcb-util: upgrade to 0.4.0
      b74c1ad xtrans: upgrade to 1.3.5
      f551ab1 libxext: upgrade to 1.3.3
      9e64b6d gtk+: upgrade to 2.24.25
      db8bf52 pango: upgrade to 1.36.8
      e81b8ab harfbuzz: upgrade to 0.9.37
      538b6b6 cairo: upgrade to 1.12.8
      515d71a at-spi2-atk: upgrade to 2.14.1.
      cfc6154 at-spi2-core: upgrade to 2.14.1
      344ce08 atk: upgrade to 2.14.0
      d26dcd8 glib-2.0: Upgrade to 2.42.1
      fa9777b sqlite3: Upgrade to 3.8.7.4
      1e8147a mc: Upgrade to 4.8.13
      0d58be6 lsof: Upgrade to 4.88
      6e13bfb acpid: Upgrade to 2.0.23
      4db2bdf xrandr: Upgrade to 1.4.3
      e400e03 pciutils: change default value of PACKAGECONFIG
      6ceceb1 bind: fix for CVE-2014-8500
      4889478 diffutils & diffstat: fix up EXTRA_OECONF
      8bd9b20 wpa-supplicant: avoid host contamination of drivers by libnl3
      8de27f8 clutter: enable EGL backend by default
      82a5df1 clutter-1.0: add ptest
      66ede54 clutter-1.0: upgrade to v1.20.0
      96f9761 local.conf.sample: Add qemuarm64
      8b8d46f bitbake: utils: make edit_metadata_file() handle VARIABLE +=
      b264f56 bitbake: bitbake-layers: fix error handling in add-layer / remove-layer
      6dde745 binutils: several security fixes
      508c95d m4: Disable searching for libsigsegv
      4b2a1d8 diffutils: Disable searching for libsigsegv
      16d74f8 grep: upgrade to 2.21
      088d4bb xz: upgrade to latest stable release 5.2.0
      8bc9af4 pciutils: add PACKAGECONFIG for 'hwdb'
      39e21d1 pciutils: upgrade to 3.3.0
      5f62b2c sudo: upgrade to latest state version 1.8.11p2
      e3aa717 tar: upgrade to 2.18
      09c1c79 kmod: upgrade to 19
      c73a6ca boost : Add the atomic and chrono libraries to the build.
      e3a623b runqemu-internal: increase memory for qemuarm64
      575ba9a elfutils: Update PREFERRED_VERSION after upgrade
      93ba8e0 oeqa/selftest: fix test_force_task so it doesn't taint the entire build
      5268d8a oeqa/selftest: populate pkgdata/shlibs in test_recipetool_create_git
      9c93079 oeqa/selftest: improve failure messages for devtool tests
      41f3dd1 oeqa/selftest: skip test_incremental_image_generation if not using rpm
      8bb5dcc oeqa/selftest: fix test_event_handler for changes in bitbake output
      7d9b5fb oeqa/utils: fix testcase decorator to allow calling tests individually
      d4d73b0 oeqa/utils: replace some tabs with spaces
      e75139c bitbake: fetch2/wget: Fix horrible temp file handling
      1d4908d bitbake: tests/data: Add a key deletion test
      4d06fb7 bitbake: tests/fetch: Add versionstring tests to network tests list, fix print()
      5445339 bitbake: data_smart: Ensure d.keys() doesn't list deleted variables
      172ea4f dpkg: Upgrade to 1.17.21
      f6cf293 pythonnative: set PYTHON_EXECUTABLE so that cmake can find it
      052c67c wic: account for mmcblk device partition naming
      51374d5 lsb: remove sendmail from sysroot
      422c317 bind: fix conf.patch to add db.255 configuration file
      b4499ec image.bbclass: avoid boot error on read-only systemd image
      bcc548c license.bbclass: hardlink requires write permission
      ccd2f54 opkg-collateral: Use new lists_dir syntax
      d33bfe4 ppp: upgrade 2.4.7
      4641f72 pax-utils: upgrade to 0.9.2
      7296df4 apr-util: upgrade to 1.5.4
      bd4052b libxml2: upgrade to 2.9.2
      3ef9f83 license: Validate if LICENSE is well defined.
      101c3bf license_class: fix license.manifest shows LICENSE field differently to recipe
      c924c07 logrotate: upgrade to 3.8.8
      01c7d08 lib/oe/image.py: Handle compressed IMAGE_TYPEDEP values
      7856fb3 image_types.bbclass: Rework code to map types for 'ext3'
      fc74b5d image_types.bbclass: Respect IMAGE_TYPEDEP dependencies
      ac17cd3 poky.conf: Add qemuarm64 support
      8c90663 bitbake: bb/fetch2/wget.py: latest_versionstring fix multithread and remove deprecated code
      6b33e1a bitbake: ui/ncurses: Update ncurses ui to accept configParams
      d31b7bd bitbake: cooker: add ability to ignore unmatched regexes in BBFILE_PATTERN
      db3f589 bitbake: bitbake-layers: add commands for adding and removing layers
      b1e5a67 bitbake: utils: add basic metadata manipulation functions
      7b70d5e bitbake: siggen: ensure nostamp tasks force dependent tasks to re-execute
      c91b10c init-ifupdown: Add missing script for qemuarm64
      a273462 libpng 1.6.13: fix build for aarch64
      f1d83b8 make: upgrade to 4.1
      5756e07 git: upgrade to 2.2.0
      9b49cfd rsync: upgrade to 3.1.1
      9b6247b wget: add PACKAGECONFIG for util-linux
      f3c615e wget: upgrade to 1.16.1
      7d8fe6d file: upgrade to 5.21
      e185893 runqemu-internal: Fix qemu networking for qemuarm64
      eef1d41 linux-yocto: Fixup linux-yocto for aarch64
      eba9c1b aarch-arm64: Update tune files
      a1d75c2 glibc-package: aarch64 enable symlink for ABI compliance
      3923f7e gcc: Disable aarch64 multilib options
      5fd4e25 packagegroup-core-tools-profile: remove sysprof for aarch64
      8bf791c kexec-tools: add aarch64 support
      f78f9d7 runqemu: add qemuarm64 support.
      b6663eb libunwind: add aarch64 support
      4c2048f guile: allow compilation for aarch64
      ba1db06 lttng: recognize aarch64
      1ce4f04 sysprof: disable build for aarch64
      fbfabde qt4: add aarch64 support
      5b3107a libatomics-ops: add aarch64 target iniitial support
      c4c7d86 glibc-locale.inc: add aarch64 to BINARY_LOCALE_ARCHES
      275504e libc-package.bbclass: add aarch64 target to locale_arch_options
      2637385 siteinfo: account for 32 and 64 bit arm
      8781b49 Add machine qemuarm64
      28ba4d3 linux-yocto: depend on libgcc for aarch64
      2ca1870 python-2.7-manifest.inc: add stdlib argparse module
      9a9a226 python-argparse: remove external argparse module
      4a17e7c opkg-utils: Update SRCREV
      f25fdec byacc: Upgrade to 20141128
      d0e3099 cups: Upgrade to 2.0.1
      5734086 less: Upgrade to 471
      8d46255 devtool: add QA tests
      0d686cc scripts/devtool: Support deploy/undeploy function
      cd5ca4a scripts/devtool: add development helper tool
      b7d53f2 scripts: add scriptutils module
      5638ca2 scripts/recipetool: Add a recipe auto-creation script
      f176b0c classes/externalsrc: set do_compile as nostamp
      d7aec8c oeqa/utils: make get_bb_var() more reliable
      15de188 kernel-devsrc: Ensure we have a dependency on the actual source
      b99419f README.hardware: update beaglebone entry to match KERNEL_IMAGETYPE
      1f5eaa3 beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
      5d72743 meta-yocto/conf/distro/include: Update package_regex'es and upstream info.
      b671847 sanity: TMPDIR ABI change for kernel process
      db73bcc lib/oe: add recipeutils module
      12bb32e lib/oe/patch: add support for extracting patches from git tree
      50e771d lib/oe/patch.py: abort "git am" if it fails
      37db9e6 lib/oe/patch: use --keep-cr with git am
      400933b lib/oe/patch: auto-commit when falling back from git am
      e03c047 lib/oe/patch: fall back to patch if git apply fails
      de8730c classes/package: move read_shlib_providers() to a common unit
      3e6e4e0 meta-environment: don't mark tasks as nostamp
      54d5e74 core-image-sato-sdk: Use kernel-devsrc to ensure kernel module builds work
      6ae253c boot-directdisk: Use kernel from DEPLOY_DIR_IMAGE, not sysroot
      c5236d7 bootimg: Use deploy artefacts, not STAGING_KERNEL_DIR
      1dd37a2 kernel: Fix non linux-yocto builds
      6eb95d6 kernel-devsrc: Ensure we don't race against do_make_scripts from module-base.bbclass
      da2764e kernel-devsrc: Handle ppc crtsaves.o explictly for now
      76b7e81 kernel-devsrc: Inherit module-base
      22246c6 kernelsrc.bbclass: Ensure fetch/unpack/patch tasks don't run
      bc97e85 linux-libc-headers: Upgrade 3.17 -> 3.17.7
      be50d1d linux-libc-headers: update to 3.17
      c219f6b socat: fix compile erorr against 3.17+ kernel headers
      fc152d9 linux-yocto/3.14: update to 3.14.26, integrate ltsi and -rt updates
      88fb739 linux-yocto/3.10: update to v3.10.62
      d02bb17 linux-yocto/3.17: update to v3.17.6
      7a16c50 lttng-modules: fix mm_compaction_isolate_template build
      662f39e linux-yocto/3.14: update to v3.14.24
      bb98127 linux-yocto/3.10: update to v3.10.59
      f0fe7dc linux-yocto/3.17: update to v3.17.2
      33437d6 linux-yocto/3.17: update to v3.17.1
      63695c6 kernel: Clean ${S} before unpack
      d0857f4 sanity: TMPDIR ABI change for kernel process
      6a5a2df kernel-yocto: make sure git tags get dereferenced properly in do_patch()
      5b71b69 kernel-yocto: fix non-git builds
      2214cb2 lttng/perf: depend on virtual/kernel:do_install
      b829eaa images: introduce core-image-kernel-dev
      a1c24ec kerneldev: create kernel-devsrc packaging
      d1aced4 kernel: fix out of tree module builds
      86893e4 kernel: Rearrange for 1.8
      1ff64a7 image: Avoid race over directory creation
      e2f68c0 dbus-test: Fix SRC_URI checksum to match dbus
      900f27a report-error: Handle the case no logfile exists
      88528a1 ref-manual: Update to the BOOT_IMAGE_FILES variable in the glossary
      99bd2c4 ref-manual: Updates to some tuning variables in the glossary:
      4f0fa92 Revert "yocto-project-qs, mega-manual: Conformed to YP book set"
      d23e189 Revert "yocto-project-qs: Removed redundant code to display title image."
      5c7acf0 yocto-project-qs: Removed redundant code to display title image.
      c576556 yocto-project-qs, mega-manual: Conformed to YP book set
      6ee3207 yocto-project-qs: Updated DocBook type declaration
      2059a66 security_flags: Fix typo for cups
      973c565 busybox-mdev: Support automatic mounting of block devices
      6695f76 busybox-mdev: Add hotplug kernel module support to mdev.conf
      f9392a5 busybox/find-touchscreen.sh: Simplify script and recognize USB devices
      f50c622 busybox-mdev: Install missing find-touchscreen.sh
      3ee4015 powertop: Fix build for !uclibc
      88af919 common-licenses: add SMAIL_GPL
      cff6c48 wic: add globbing support in IMAGE_BOOT_FILES entries
      90487df wic: IMAGE_BOOT_FILES format checks in bootimg-partition source
      94e1442 mesa: add PACKAGECONFIG support for gallium XA state tracker
      7d495e5 vala: Add Upstream-Status to patch
      3c55f44 oprofile: add missing Upstream-Status
      77e1c5f which: add missing Upstream-Status
      02e11ce udev-cache: refactor conditionals and error handling
      408baa9 udev-cache: Update cache asynchronously
      88c184a udev-cache: invalidate on rules.d changes
      7c522ce udev-cache: always warn on console if invalidated
      8b0be80 udev-cache: Clean up message when cache is invalidated
      0002d46 udev-cache: refactor sysconf generation
      c6e8f07 udev-cache: don't generate sysconf twice
      7f8634c udev-cache: replace readfiles() with cmp
      24a159e udev-cache: stop race between sysconf and cache generation
      a957ff1 buildtools-tarball: restore missing git tools
      d5e0cc7 systemd-systemctl: add handling of template unit files
      0932d84 libproxy: let INCOMPATIBLE_LICENSE supports wildcard
      b3c625a default-versions.inc: let INCOMPATIBLE_LICENSE supports wildcard
      5f78cf9 base/license.bbclass: expand wildcards in INCOMPATIBLE_LICENSE
      fc51832 gcc runtime: specify license on a per package basis
      31e86e6 toaster.bbclass: trigger event for other image files
      1f41cb6 systemd: backport patch to fix reading journal backwards
      ef552b9 font-util: Fix incorrect PKG_CONFIG_PATH
      244cb9b package.bbclass: do variable fixups even when FILES was set
      48b3540 kernel.bbclass: Remove bashism
      3195210 image_types.bbclass: Populate cpio /init as symlink
      25a3ab1 shadow: disable nscd feature when glibc is not built with spawn posix functions
      1b330a4 gnutls: upgrade to 3.3.11
      3fb5467 packagegroup-core-tools-profile: allow lttng-modules for ARM
      2cd226e glibc: CVE 2014-7817 and 2012-3406 fixes
      d913c67 openssh: move setting LD to allow for correct override
      48a0394 qemu: disable vte if gtk is also disabled
      73388a1 gstreamer1.0-* fix configure for out of tree build on git recipes
      f9ea938 connman: use PACKAGECONFIG to control systemd option
      2c8be73 ofono: use PACKAGECONFIG for systemd and bluetooth
      b9ed702 gst-plugins-bad: add PACKAGECONFIG for the RTMP plugin
      8a4e32d gst-plugins: remove spurious whitespace
      0a791e9 bitbake: data: escape '$' in shell variable assignment
      bb83fcc bitbake: toaster: importlayer Tidy up the page initialisation
      641c50d bitbake: toaster: Change the full stop to a colon
      6f3f059 bitbake: toaster: Formatting changes to error messages
      c89fd79 bitbake: toaster: projectapp Add links to the imported layers notify
      8d96256 bitbake: toaster: importlayer Avoid namespace clash with layer name
      dadc11a bitbake: toaster: Importlayer add notify exactly which layers changed
      bd6b879 bitbake: toaster: tweaking the import layers form
      1605cd3 bitbake: toaster: Add import layer feature.
      13141af bitbake: toasterui: refactor project layer finding logic
      7d5cd68 bitbake: toaster: libtoaster Add editProject and getLayerDepsForProject
      d5fc4f7 bitbake: toaster: libtoaster Add a error handler to GET in makeTypehead
      c058c37 bitbake: toaster: Initialise the 'change' icon tooltips
      3910763 bitbake: toaster: base Only show change project icon when > one project
      4061fcd bitbake: add POST endpoint for uploading eventlog files
      aa9816a bitbake: toastergui: implement UI changes to allow file download
      85a17f8 bitbake: add option to write offline event log file
      d086fa3 bitbake: toasterui: add extra debug and development infos
      f99f2cd bitbake: add build artifacts table and other improvements
      c467bbd toasterconf: naming and description changes
      fb76005 yocto-bsp: Get rid of 'strange' filenames in x86_64 templates
      82e8b73 yocto-layer: Get rid of 'strange' filenames in templates
      4b4eca1 yocto-bsp: Get rid of 'strange' filenames in powerpc templates
      debb440 yocto-bsp: Get rid of 'strange' filenames in mips64 templates
      4b82dab yocto-bsp: Get rid of 'strange' filenames in arm templates
      6a10332 yocto-bsp: Get rid of 'strange' filenames in mips templates
      37a6aff yocto-bsp: Get rid of 'strange' filenames in x86 templates
      cac5446 yocto-bsp: Get rid of 'strange' filenames
      ed99aee yocto-bsp: Add a processing pass to get rid of 'strange' filenames
      8657c2f serf: readded md5sum
      456ea67 gsettings-desktop-schemas: remove
      87c310c npth: npth needs pthread in some cases
      7ae7964 babeltrace: Update to 1.2.4
      40304fc procps: Upgrade to 3.3.10
      6bcd295 python-pycurl: build docstrings to fix rebuilds
      b570d90 valgrind: update to 3.10.1
      c72bada apr: avoid absolute paths for grep
      bcc18fe midori: update to 0.5.8
      b9001b6 cpio: fix bug CVE-2014-9112 for cpio-2.11
      8018f61 cpio: fix bug CVE-2014-9112 for cpio-2.8
      adb8c0d libxcb, xcbproto: upgrade to version 1.11
      ae7bfb2 autoconf: disable checking for emacs
      93f3754 bluez5: support experimental through PACKAGECONFIG
      360064a bluez5: add a package for tools left in the build area
      756cb16 bluez-hcidump: select provider as bluez4 or bluez5
      74d4a5c python3-core: Fix minimal python3 install
      2b945a9 python: add python-codecs runtime dependency for python-json
      3499544 python: fix ssl import error
      7f7d3b7 gstreamer1.0-libav: specify proper cross-prefix
      acfb298 xorg-xserver: Upgrade to 1.16.2.
      993989f mesa: Upgrade to 10.3.4.
      fe4aa1a dtc: don't use autotools as this doesn't use autotools
      5168672 distro/poky: Add Debian 8 (Jessie) as sanity tested
      ec6377b bitbake: bitbake-user-manual-metadata.xml: Updated do_package_write example
      d5a808d bitbake: bitbake-user-manual-metadata.xml: Added [eventmask] flag information.
      1aae447 bitbake: runqueue: Fix 100% cpu use after keyboard interrupt
      eb2ea6f bitbake: data: Handle BASH_FUNC shellshock implication
      9c02ad9 bitbake: event: fix resetting class handlers object
      c1ef10a bitbake: event: add a means of filtering events internally
      eb0a6fc bitbake: fetch2: add means of disabling SRC_URI checksums
      cde2848 bitbake: utils: add exec_flat_python_func()
      8ff0840 bitbake: bitbake-user-manual: Updated copyright to 2015.
      3a17209 dev-manual: Added link to ptest wiki page into Ptest section.
      8165210 bsp-guide: Fixed ambiguous sentence.
      400cb14 ref-manual: Created form for context images for variables
      56d0995 ref-manual: Added XSERVER variable description to the glossary.
      6a57cb1 dev-manual: Added more info to mulit-machine builds section.
      117c9b4 dev-manual: Edits to the multi-machine builds section.
      81fb49b ref-manual: Added info strings for variables in glossary.
      5f4050f dev-manual: First draft of "multi-builds" section.
      146d4bb ref-manual: WIP - Edits for the speed section.
      62a67c8 ref-manual: WIP - New section on speeding up builds.
      b813bde qemu/libc-package: Fix qemu option handling
      da53141 libnewt: set CLEANBROKEN
      764e08b libdrm: Upgrade to 2.4.58.
      7930902 bzip2: use subdir SRC_URI param instead of adding tasks
      9a79319 tcmode-default.inc: use GCCVERSION for gcc-source
      0ca237d default-distrovars: add gcc-source recipe to the GPLv3 whitelist
      450651b gcc: stub do_fetch instead of removing it
      3d1199c cwautomacros: stub do_configure to avoid cleaning
      814ad79 gnome-doc-utils: set CLEANBROKEN
      a1abb63 autotools.bbclass: respect CLEANBROKEN
      55db877 base.bbclass: fix CLEANBROKEN logic
      bdadf2f coreutils-native: don't install groups
      997fb34 gzip: fix MakeMaker issues with using wrong SHELL/GREP
      984e17d lzo: add debian patch for alignment issue
      3cbe382 util-linux: add switch_root to alternatives list
      5e21592 Revert "busybox : fix do_compile failed on qemumips when DEBUG_BUILD (ICE)"
      853e76f8 openssh: fix using the original config files in srcdir
      615fb3b package_manager.py: fix arguments to string format
      9fc63c5 eglibc: modified option-groups.h generation
      0935937 mesa-demos: Move util to the front of the SUBDIRS variable.
      ab4ed9c glew: Additional fix for generation of glew.pc.
      95fcc67 image.bbclass: whitespace
      d3b221d image.bbclass: remove comment that readonly only works for sysvinit
      07f7764 qt4: disable webkit for mips64 n32 temporarily
      8403b75 Revert "qt4*.bbclass: disable build qt on mips64 with 64 bits userspace"
      05f206d bootchart2: fix to find collector correctly in case of multilib
      845fc6f systemd: add PACKAGECONFIG for 'manpages'
      8729809 libxslt: create wrapper to avoid host system referencing
      8ad1d1d kernel-yocto.bbclass: fix shell syntax error
      7d59e19 gnutls: disable tpm
      93bf97b powertop: update version number from 2.6.1 to 2.7
      4de97f7 gstreamer1.0-plugins-bad.inc: Disable cocoa on configure
      60d504b cmake: supply CMAKE_AR in toolchain file
      54d0203 valgrind: Upgrade to 3.10.0
      ab70595 weston: fix plugin location in FILES
      dec0b0f dbus: don't use PTEST_ENABLED as recipe doesn't inherit ptest
      6b58ddb python: remove spurious nativesdk dependency
      4835629 python: ensure all of Python is installed in nativesdk
      bf0ec70 yocto-bsp: Add mips64 support
      0cc9a12 yocto-bsp: Update templates to 3.17 kernel
      4fa0f0c meta-yocto/distro: Updated SANITY_TESTED_DISTROS.
      a862bf0 upstream_tracking.inc: update entries for dbus
      9315a2b bitbake: bitbake: Update to 1.25.0 as development version after release
      b92ec90 bitbake: data: rename defaultval to _defaultval
      1332298 gdb: disable Guile
      fcd72aa attr: use EXTRA_AUTORECONF to disable autoheader
      8a21eee bash: use EXTRA_AUTORECONF to disable autoheader
      1ecad61 toolchain-script: Add support for ccache builds with the SDK
      1a46946 libpam: avoid overwritting editable files during package updating
      b4f4d0f initscripts: avoid overwritting editable files during package updating
      535afd4 base-files: avoid overwritting editable files during package updating
      5007319 package_manager.py: check the result of create_index
      5030c7f compress_doc.bbclass: support update-alternatives
      887ffa0 compress_doc.bbclass: improve manual file detection
      97d5b99 metadata_scm: Fix crash due to uncaught python exception
      496a793 serf: fix 'ccache' builds
      ec47811 package.bbclass: Create empty key/value if not there for shlib_provider
      35e0a3e resolvconf: add fixes for busybox and make it work
      bc9adc1 pseudo: remove older version and patches
      85c4761 boost: Upgrade to 1.57
      2f7c9fa npth: Upgrade to 1.1
      2a7b875 babeltrace: Upgrade to 1.2.3
      bcff2a7 curl: Ugrade to 7.38
      49329f4 connman-gnome: fix dbus interface name
      1654f38 dbus-glib: Upgrade to 0.102
      89a8e1c dbus-test: Upgrade to 1.8.10
      6e0f74a dbus: Upgrade to 1.8.10
      ec6aeea libnewt/libnewt-python: upgrade to 0.52.18
      4b938a6 cracklib: upgrade to 2.9.2
      f821566 gcc: Rework shared work
      893f9b2 bitbake.conf: remove internal flags from BB_SIGNATURE_EXCLUDE_FLAGS
      77eebcc scripts: don't skip defaultval
      e89a5d0 uboot-config.bbclass: don't skip defaultval
      cd90414 base.bbclass: don't skip defaultval
      daeb4a4 sanity.conf: Update to require bitbake 1.25.0 as minimum version
      b863141 package_regex.inc: Update REGEX'es in order to find upstream versions correctly
      2fc06a1 bitbake: cooker: Allow featureset in error state
      b585c4b bitbake: fetch/wget: latest_versionstring clean improvments minor
      0ce833d bitbake: tests/fetch: Update wget latest_versionstring cups case
      158aee7 bitbake: fetch/wget: latest_versionstring remove newuri set because is previous set
      75b82b0 bitbake: fetch/wget: latest_versionstring add support for search in RAW html lines
      aa35076 bitbake: fetch/wget: latest_versionstring remove unnecessary usage for name in version comparision
      4b29329 bitbake: fetch/wget: latest_versionstring improvments in searching
      af47f14 bitbake: fetch/wget: latest_versionstring add package_custom_regex_comp
      cd40af6 bitbake: fetch/wget: Improve REGEX_URI handling
      a7bdd0e bitbake: fetch/wget: _init_regexes rename variables to be more consistent and move dirver_regex into it
      35b7089 bitbake: fetch/wget: latest_versionstring create _init_regex method for have one place when regex'es are defined
      6cecdd1 bitbake: toaster: remove the word 'project' from layers and machine
      fee87cd bitbake: toaster: release name consistency
      af51fb0 bitbake: toasterui: Compatibility patch for daisy and dizzy
      dc1be9c bitbake: toaster: fix padding of build notifications
      c31f309 bitbake: toaster: make 'latest builds' section consistent across pages
      be2475b bitbake: toaster: fix errors and warnings display
      126bca4 bitbake: toastergui: new project page
      5790337 bitbake: toaster: fix loadconf path calculation
      d9644d4 bitbake: toasterui: fix layer identification for managed builds
      af1f9fd bitbake: toaster: display Toaster exceptions and other fixes
      707a960 bitbake: toastergui: do not show project info in interactive mode
      4c82dfb bitbake: toastergui: update layer search criteria
      152e2d9 bitbake: toaster: base Only show New Build button when there are > 0 projects
      49ac18d bitbake: toaster: use http proxies to fetch data
      2192445 distrodata_class: checkpkg make usage of latest_versionstring methods in bitbake fetcher
      fd9fc49 gcc-4.8: Drop unused patch
      ef7ea38 qemu: Add missing wacom HID descriptor
      c5ebca2 toaster.bbclass: use the openembedded-core name
      e2cf2d1 toaster: naming and description changes
      99262b6 toasterconf: fix localpath values
      0bc03af maintainers.inc: update maintainers
      ab63640 gdk-pixbuf: use ptest-gnome
      f363c20 useradd.bbclass: set PSEUDO_PASSWD consistent with root directory
      b0b468d bitbake.conf: pseudo fall back to last-resort passwd files
      e96ac60 pseudo: provide fallback passwd and group files
      4ad0821 pseudo: default --without-passwd-fallback
      d1434d9 image.bbclass: search both rootfs and native staging for passwd files
      835f5c8 pseudo: support multiple search directories in PSEUDO_PASSWD
      d2b8576 pseudo: support --without-passwd-fallback configuration option
      16e8b40 oeqa/runtime: Added some new filters for the log parser Including custom filters for edgerouter, minnow and jasperforest.
      3857f24 procps: install symlink under /etc/sysctl.d in case of systemd
      2e13f27 elfutils: upgrade to 0.160
      fa234ef bind: clean host path in isc-config.sh
      fc5ad52 e2fsprogs: clean host path in compile_et, mk_cmds
      692950e bash: clean host path in bashbug
      3fc5cfe gst-ffmpeg: fixes for CVE-2014-8548 and CVE-2014-8541
      a2b7b6d opkg-utils: Update SRCREV
      417ce46 opkg: Update patch status
      0ee83d7 opkg: Upgrade to v0.2.4
      11d9f02 libpam: Stop a QA WARNING when building multlib version
      ce8c56f python3: several fixes for cross compiling
      4a7446e cronie: Added default crontab
      b4ba8d6 gnome-desktop: removed gnome-desktop recipe
      44a8677 gnome-common: Upgrade to 3.14.0
      4d9172d cronie: Upgrade to 1.4.12
      1379659 nfs-utils: Upgrade to 1.3.1
      16edf5c iproute2: upgrade to 3.17.0
      2169801 libpcap: upgrade to 1.6.2
      273572d netbase: upgrade to 5.3
      89108b4 serf: 1.3.6 -> 1.3.8
      322ba17 perl: fix PERL5LIB settings
      67261e2 dtc: old SRC_URI died, changing to new working one
      49547a6 toaster: add toaster layer configuration files
      ae7c1e5 toaster: add toaster layer configuration files for meta-yocto
      39bace0 bitbake: toaster: do not show target if target name is empty
      f3ffeba bitbake: toaster: fix dependencies dialog layout
      57b8ccc bitbake: toaster: add no results state to all layers page
      2066b9b bitbake: toaster: Tiny refinements to the new build button dialog
      3530316 bitbake: toaster: project page remove additional tooltip for Change pencil
      f26c3cd bitbake: toaster: Add New Build Button feature
      5b8a62d bitbake: toaster: libtoaster: Add getProjectInfo utility function
      fa9206e bitbake: toaster: Create libtoaster.js with some utility functions
      0b6859c bitbake: toastergui: layer name correlation
      5b0616a bitbake: toaster: skip virtualenv when searching for django apps
      2f3e40c bitbake: toaster: fix file name collision
      c09e561 bitbake: bitbake-worker: exit normally when SIGHUP
      7d559fc gtk+: drop part of patch adding useless file
      69e388b xmodmap: drop already applied patch
      0ed1983 cmake: drop already applied patches
      4d67727 openssh: drop already applied patch
      bc41835 cups: remove unrecognised option
      3092f33 spdx.bbclass: improved error handling and code cleanup
      0f5d0e9 postinst-intercept: rename recipe for nativesdk only
      9ca0777 toolchain-shar-template.sh: fix the text files in the top dir
      71df8a4 shadow-securetty: add ttyAM[0-3] serial ports
      01e9ca3 bind: use PACKAGE_BEFORE_PN instead of PACKAGES_prepend
      c360dcb gcc-4.9: fix the compile failure of 'defaults.h' not found
      3e813f4 ethtool: Upgrade to 3.16
      aa2c154 parted: upgrade to 3.2
      8aa5f17 byacc: Upgrade to 20141006
      bd45e51 tcl: Upgrade to 8.6.3
      7ce2293 lsb: update RDEPENDS for broken-out util-linux-getopt
      887c75a default-providers.inc: define VIRTUAL-RUNTIME_getopt
      92afbae util-linux: break out util-linux-getopt
      318730b rpm: fix the rpm addsign function
      07a31ed python: Fix CVE-2014-7185
      587b28b ghostscript: upgrade to 9.15
      58bee16 systemd-serialgetty: Disable the carrier detect requirement for serial consoles
      3a3e5ab sysvinit-inittab: Disable the carrier detect requirement for serial consoles
      7bc2e2a toolchain-scripts.bbclass: Export KCFLAGS to ensure sysroot is provided
      9544db4 xkeyboard-config: Inherit gettext
      419a37e bluez5: fix QA error from configure option
      fd338cf linux-firmware: upgrade to git rev 0e5f637
      cdbcadf bluez5: upgrade to 5.25
      9f2732b sbc: upgrade to 1.3
      d681466 wpa-supplicant: upgrade to 2.3
      3c7cf5d bitbake: bb.codeparser.py: Remove reference for oe.utils.contains
      d895e96 bitbake: depexp: use stateForceShutdown instead of stateStop
      edaeb89 bitbake: cooker.py: fix loginfo op being set to an invalid value
      c5d19aa bitbake: toastergui: fix XSS injection points in projects page
      326d5b1 bitbake: toaster: importing angular service
      76f1800 bitbake: toastergui: Silly UI fixes
      3a338a2 bitbake: toaster: Replace bootstrap js with the correct version
      7b65fa9 bitbake: toastergui: changes for the Project page, round 3 of reviews
      abf7551 bitbake: toaster: separate the load configuration file command
      6f0496e bitbake: toaster: Update filter count labels when Add/Remove layers
      6cfd8aa bitbake: toaster: Fix the table data so that it matches the column order
      42afeb4 bitbake: toastergui: Various fixes for projects, layers and targets page
      46f1fbe bitbake: adding angular-animate plugin
      78e3a78 bitbake: toaster: update Release model to pinpoint to specific Branch
      990fb9e bitbake: toaster: SQL query logging
      3e9fc8d bitbake: toasterui: performance improvements
      0ca70ce bitbake: toaster script: webport option and other improvements
      baa1082 docbook-xsl-stylesheets: fix do_configure typo
      15d7937 tzdata: update to 2014j
      42444d3 tzcode: update to 2014j
      5638e1f strace: add libunwind dependency
      bb213d8 meta-environment: Fix config-site with a multilib config
      8c240ad vala: upgrade to 0.26.1
      92dd727 opkg-utils: Update SRCREV
      2decbd0 nss: Upgrade to 3.17.2
      7abfdd2 documentation.conf: add missing tasks / variables
      2cdcd4b classextend: Do not extend for that already have multilib prefix
      c5f8996 systemd: add PACKAGECONFIG for 'audit'
      12fe05c apr-native: Set CONFIG_SHELL to /bin/bash
      5c69e44 gptfdisk: add 0.8.10+git version
      35c2ff7 qemu: remove task sanitize_sources
      5c23ec6 u-boot: update to version 2014.07
      2abfdcf systemd: avoid using system-auth
      e9b729d libtool: remove build host paths from installed libtool
      507947a beecrypt: add option --with-dev-dsp
      c0dafd3 scripts: use '/usr/bin/env' in shebangs with python
      3e06883 bitbake: progressbar: use '/usr/bin/env' in shebangs with python
      6bb241a bitbake: fetch/wget: Add latest_versionstring method
      7587877 bitbake: fetch/git: Add latest_versionstring method
      95c7b39 maintainers: Update per replies on OE-Core
      3c741a8 oprofile: 0.9.9 -> 1.0.0
      77d62cc python-pygtk: Clean up incorrect "fix"
      fb4d7ec populate_sdk_base: improve POSIXLY_CORRECT compat
      a899e13 tcl: Upgrade to 8.6.2
      24ad278 strace: Upgrade to 4.9
      bfe16db byacc: Upgrade to 20140715
      a485eb8 libpcre: Upgrade to 8.36
      4d9771a lz4: update to version r123
      59283bd pinentry: update 0.9
      da6a4f6 ncurses, busybox, cml1.bbclass: Fix menuconfig display corruption
      8f9ed24 nfs-utils: change owner/group of directories in do_install
      5fe3954 perl: set the perl libraries search path
      b3ea9b6 apt: Add missing running depency debianutils
      9e3c886 debianutils: Add recipe from meta-oe
      1d19791 package_manager: DpkgPM fix populate_sdk
      ed3e253 image-buildinfo.bbclass: new class, writes build information to image
      c582375 watchdog: Upgrade to 5.14
      f5ecb75 man-pages: Upgrade to 3.75
      739100c lsbinitscripts: Upgrade to 9.56.1
      b166d5c less: Upgrade to 470
      8523fd5 hdparm: Upgrade to 9.45
      2ce92ad help2man: Upgrade to 1.46.4
      0aca644 cups: Upgrade to 2.0.0
      b230663 at: Upgrade to 3.1.16
      2fa79a9 resolvconf: Upgrade to 1.76
      1ec6ea1 libxkbcommon: Upgrade to 0.5.0
      afd7e24 systemtap: Upgrade to 2.6 Git Version
      58c76d1 libksba: Ugrade to 1.3.1
      813718c libgcrypt: Ugrade to 1.6.2
      ddc5abe liburcu: Ugrade to 0.8.5
      5ff390f npth: Upgrade to 1.0
      54cedb1 btrfs: Update to 3.17 version
      78f6f53 libcap: Upgrade to 2.24
      0ee5eb2 gcc: Fix intermittent failures during configure
      b78e3e3 gdb: 7.7.1 -> 7.8.1
      593f14b package/prserv: Merge two similar functions into one
      d01b8d5 base: Make PRINC warning an error
      cb4b12c perl: Enable rebuilds to account for configuration changes
      e6cbda6 base: Improve makefile clean handling, introduce CLEANBROKEN variable
      2020ba7 ltp: update to 20140828 release
      45bb9e3 profile-manual: Updates to the LTTng Documentation section.
      0d3e685 ref-manual: Fixed typo in the PACKAGE_EXTRA_ARCHS variable.
      9104c1c dev-manual: Fixed broken link to the allarch class.
      2f17b2c bitbake: data_smart.py: fix variable splitting at _remove mechanism
      01a61c8 bitbake: siggen: Fix shared work checksum mismatch/rebuild issues
      2db07ca bitbake: siggen: Add computed hash code to verify hash computation to dumpsig
      636dcb8 bitbake: siggen: Ensure we output if the ordering of runtaskdeps changes
      695d254 readline: Patch for readline multikey dispatch issue
      7bd03ac bitbake: toastergui: fix invalid build url usage
      fc75011 bitbake: toasterui: improvements in data reading
      7105d44 bitbake: prserv: Use WAL mode
      5dca71b bitbake: bitbake: Make printed 'runqueue' be consistently capitalized
      25e3e57 bitbake: bs4: Add beautifulsoup 4.3.2 to assist the fetcher
      bc6330c bitbake: fetch2/git: Allow other namespaces than refs/heads to be searched.
      5fa2ce0 image_types.bbclass: whitespace and reorder
      ad6fd2c weston: update to version 1.6.0, add libinput PACKAGECONFIG
      ab3086f wayland: update version to 1.6.0
      24dc5f4 libinput: add 0.6.0 version
      8569e10 nss: Upgrade to 3.17
      c1809c4 findutils: Upgrade to 4.5.14
      1888739 vala: Update to 0.24.0
      0d9a071 texinfo: integrate texinfo 4.8
      c60fa73 insane.bbclass: add condition for build-deps
      49d22ac gst-plugin-bluetooth: remove systemd service file
      ddac00a qemu: upgrade to 2.1.2
      c3d0cd9 psplash: update to latest git version
      b7ae852 gcc: backport two patches to fix ICE in dwarf2out_var_location
      40b3888 connman: upgrade to 1.26
      a4db2d9 wget: upgrade to 1.16
      07e8ae7 acl: add acl dependency to acl-ptest
      6e055bb toaster.bbclass: read elapsed time from the stats file
      6839a39 perl: Fix bug when installs SDK in custom directory
      b0bbdf2 packagegroup-self-hosted: add git-perltools
      e20a85d subversion: 1.8.9 -> 1.8.10
      d19152d kexec-tools: 2.0.7 -> 2.0.8
      e972fcf mdadm: 3.3.1 -> 3.3.2
      f54fc65 python-pycurl: 7.19.3.1 -> 7.19.5
      d38da0f libunistring: 0.9.3 -> 0.9.4
      c4c7b0f nasm: 2.11.05 -> 2.11.06
      0add8ab buildtools-tarball: package all of Python
      7cde98f curl: Security Advisory - curl - CVE-2014-3620
      9bfd0de poky-tiny.conf: remove inherit of blacklist
      2380ebe bitbake: prserv/serv: Ensure sync happens in the correct thread
      51f6cb0 mega-manual.sed: Updated to support the 1.8 release.
      1484e62 documentation: Updated the manual revision history tables.
      c2d6feb poky-ent: Updated variables to support the 1.8 release.
      27754b2 docbook-xsl-stylesheets: add perl to RDEPENDS
      f948dbf rootfs.py: tweak inner warn message catching
      944fb2f python-smartpm: report warn rather than error during install with --attempt
      fe244b2 man-pages/shadow: resolve man pages confliction
      1c8040ef shadow: enable support for subordinate IDs
      18f6c12 iproute2: backport a patch to make adding vxlan link success
      8e14697 python-pygtk: Restore pkg-config file
      69dd116 pciutils: Fix multilib header conflict - pci/config.h
      72964fc python-2.7.3:remove BOM insertion code
      d6fd303 image_types.bbclass: Make ubi depend on ubifs
      8c051c8 license.bbclass: canonicalise the licenses named with 'X+'
      014654f curl: Security Advisory - curl - CVE-2014-3613
      9adfa08 kmod: fix debuginfo is missing in shared library
      028a394 systemd: don't add files and dependencies from units Conflicts
      365947e package_manager: Fix BAD_RECOMMENDATIONS for opkg
      9e07fbb bind: fix to use correct environment file in service file
      56fa8cd udev: fix uevent-helper disable
      7e8ca6f BusyBox: Fixing broadcast address is not fed and rightly initialized
      160b53b ldconfig-native: fix a endian-ness bug
      a60af9a xinetd: add systemd unit file
      0d339e2 gdb-cross: build with python support
      41ae205 systemd: don't move libgudev around, it breaks libgudev-1.0.la
      8619d93 multilib.bbclass/package_manager.py: fix <multilib>-meta-toolchain build failure
      99b0f38 opkg: fix remove pkg with --force-removal-of-dependent-packages failed
      b19d014 tzdata: update to 2014i
      a5abc53 tzcode: update to 2014i
      2eed76b mtd-utils: Fix alignment trap triggered by NEON instructions
      bfd2afa python3: do not replace ccache in the middle of a path
      a64e37a subversion: Security Advisory - subversion - CVE-2014-3528
      514a91d subversion: Security Advisory - subversion - CVE-2014-3522
      d962e45 mc: Update patch status
      facfeb0 multilib.bbclass: fix incorrect TARGET_VENDOR in multilib image
      150f0f5 classes/image: remove obsolete MULTILIB_VENDORS
      f19b4e9 bitbake: bitbake: clarify startup message
      24dab21 bitbake: toaster: update web vcs fields for layers
      298c3d5 bitbake: toastergui: provide download file capability
      2837b11 bitbake: toaster: change startup parameter passing to avoid race
      a066071 bitbake: toaster: improvements for admin pages
      97c0beb bitbake: toaster: use modified validators for git url fields
      a1f7a09 bitbake: toaster: changes to the landing page
      c7382db bitbake: toastergui: protect variable value reads
      477587b bitbake: toastergui: refactor objects get in views.py
      1b109c7 bitbake: toastergui: project edit capabilities in all layers page
      960580c bitbake: toaster: fix Project page in order to trigger builds
      1a463ab bitbake: toaster: fix layer source update code
      b27fc6f bitbake: toaster: we add static copies of AngularJS and related libraries
      f16f434 bitbake: toastergui: update breadcrumb in analysis pages
      4f1390c bitbake: toasterui: save build id in build request on first chance
      14e5b27 bitbake: toastergui: Show failed tasks in the build dashboard
      324b277 bitbake: toastergui: Tiny change to help text
      754f3e7 bitbake: toastergui: Remove extra <div> from build dashboard
      ceb1139 bitbake: toastergui: Remove sorting from "Size over total" column
      719f5e4 bitbake: toastergui: Fix blue highlight for failed tasks
      927943b bitbake: toastergui: Fix reverse dependencies tab for packages included
      7aaedc2 bitbake: toastergui: Add missing task descriptions
      93835e7 bitbake: toastergui: Amend show rows options
      daad086 bitbake: toastergui: Fix help text in packages 'Reverse runtime dependencies' tab
      83edc57 bitbake: toasterbld: update checksettings command
      d485279 maintainers.inc: Updated with some ownership for Aníbal Limón and Alejandro Hernandez.
      7fb6b0f elfutils: fix elf_cvt_gnuhash
      70ad050 which-2.18: Use foreign strictness to avoid automake errors
      e962f99 hicolor-icon-theme: Deal with "make clean" breakage
      b900a81 gnu-config: Deal with "make clean" breakage
      d5881b7 wpa_supplicant: Improve rebuild handling
      c1f4b1f cmake: Try and improve cleaning of builds when B==S
      6bd2d9d base.bbclass: Enable using 'make clean' for rebuilds
      444ae98 autotools: Use make clean for builds not supporting B != S
      fcf5608 wic: Update bootimg-partition to use bootimg_dir
      42d0334 wic: Remove special-case bootimg_dir
      3840061 Revert "wic: set bootimg_dir when using image-name artifacts"
      d1f8b8f wic: Update the help text to include -D (--debug)
      005d81d wic: Use overhead factor when creating partitions from rootfs directories
      334f83a wic: Don't allow mkfs to fail silently in partition command
      87dec81 bitbake: buildinfohelper: Make sure we use the orm defined value for loglevel
      c97194b image.py: Fix error in graph sorting
      ef32b9f multilib.conf: set MULTILIB_GLOBAL_VARIANTS conditionally
      55d66ed mklibs: Fix loader for mipsel
      b8740fd glibc: Delete ldconfig when USE_LDCONFIG is not set
      6476f0b rm_work: Speed up rootfs/populate_sdk removal
      678e879 gcc: poison default sysroot path
      4faca22 ref-manual: Updates to the migrating to YP 1.7 section.
      a0aeeff dev-manual: Updates to "Performing Automated Runtime Testing"
      0761eba ref-manual: Added some new test variables:
      9908d9e ref-manual: Updated list of supported distros.
      cf82c67 bitbake: prserv: don't wait until exit to sync
      2794f91 bitbake: utils.py: don't use len() for truth value testing.
      f5b9b38 bitbake: fetch2: add .lz compression support
      dacc4ce nativesdk-cmake: Adjust toolchain paths dynamically
      ce339dd poky-lsb: Set LTSI as base kernel for LSB
      0cfb89b poky.conf: add Debian 7.7 to SANITY_TESTED_DISTROS
      dd376e7 local.conf.sample.extended: update for RPM_PREFER_ELF_ARCH
      11dafe8 kernel-yocto: fix branch validation for AUTOREV, non machine_meta kernels
      2f93628 linux-yocto/3.17: v3.17 release and config
      cdfe99f linux-yocto/3.10: 8250/8250_dw: fix compile failure due to stable/Yocto conflict
      fc0a068 unifdef: remove fork, package upstream
      ac638b7 native.bbclass: use BUILD_* variables
      9f33c28 rpm: realpath is required before expanding _dbpath in chroot
      4c222d3 kernel.bbclass: Create modules directory even if there is no modules installed
      b05755c libxml2: fix CVE-2014-3660
      0de79a7 nfs-utils: fix start-statd
      38f02f1 cross-localedef-native: provide SRCREV_FORMAT
      1a04850 archiver: fix truncation of src_rev
      caebcda libaio: fix for mips64
      c908f5e systemd: fix libidn floating dependency
      c981ebb grub: add cmdpath to grub configuration file
      f348071 spdx.bbclass: improved stability, fixed SPDX compliance issues. Changes are reflected in licenses.conf.
      8882eaa default-versions.inc: match version of db and db-native while "AGPL-3.0" in ${INCOMPATIBLE_LICENSE}
      7a206eb libtool: Extend fix-final-rpath.patch
      12769d7 liburcu: revert ARM GCC blacklist commit
      5269dfa nfs-utils: fix a Gcc undefined behavior
      d7cb96f python-smartpm: Add checking for "rpm-ignoresize" option
      fd50427 systemd: Use ${ROOT_HOME} instead of /root
      ad065f9 ref-manual: Minor edits to variables.
      78c5c17 ref-manual: Cleaned up wording in glossary for "inheriting"
      38c853a ref-manual: Applied review edits for new classes and variables.
      01f2e75 ref-manual: Added new uninative class.
      1ea92a2 ref-manual: Added gummiboot class and four supporting variables.
      82638ca ref-manual: Added copyleft_filter class description.
      43b8f88 ref-manual: Added texinfo class and two new variables.
      369f8d6 ref-manual: Added buildstats-summary.bbclass section.
      41e7dd2 ref-manual: Added BINCONFIG variable and binconfig-disabled class.
      567d9af ref-manual: Added ptest-gnome.bbclass section.
      12fb49e ref-manual: Added compress_doc class and DOC_COMPRESS variable.
      924da20 build-appliance-image: Update to dizzy head revision
      f0a2a2f ref-manual: Updated the populate_sdk_* class
      a424beb profile-manual: Scrubbed and fixed user-input formatting.
      d6e89e7 kernel-dev: Scrubbed and fixed all user-supplied input formatting.
      5f61389 adt-manual: Scrubbed and fixed user-supplied input formatting.
      2eaf7e6 ref-manual: Scrubbed for variable (user) input.
      b96378e ref-manual: Updated the introductory section list manual overview.
      31d0bb2 ref-manual: Minor edits for review on new QA checks.
      e5255cc ref-manual: Added [build-deps] QA error message.
      d5d81af ref-manual: Added [file->rdeps] QA error message.
      41173c8 ref-manual: Added new build-deps QA check to insane.bbclass.
      3305c26 ref-manual: Added file-redeps QA check to the insane.bbclass.
      8998871 ref-manual: Added new do_package_qa task entry to tasks chapter.
      3c29495 ref-manual: Another change to the autotools class.
      360ad12 ref-manual: Updated the autotools class.
      e9ecf3f dev-manual, ref-manual: Updated 1.7 migration section with review comments
      8eb706a ref-manual, dev-manual: Applied migration review edits.
      323929d ref-manual, mega-manual: Updated build history figure
      d8e41e8 ref-manual: Added new migration section for the 1.7 release.
      a51b755 ref-manual: Updated the build history section for build-id.txt
      ba0483c dev-manual: Updated the list of linux-yocto kernels
      3d1820b ref-manual: Added cross-reference.
      4b03b71 ref-manual: Updated the module_autoload variable.
      c2e2eb7 ref-manual: Added new KERNEL_MODULE_AUTOLOAD variable.
      d6c0a7d ref-manual: Added new KERNEL_MODULE_PROBECONF variable
      55169b9 ref-manual: Updated module_conf variable
      75fda35 gst-ffmpeg: Security Advisory - ffmpeg - CVE-2013-0869
      3503fe8 gst-ffmpeg: Security Advisory - ffmpeg - CVE-2013-4358
      e17e815 mtools: fix broken /usr/bin/lz
      38968de gnupg_1.4.7: add package config libusb
      5278071 openssl: upgrade to 1.0.1j
      bacc657 readline: Security Advisory - readline - CVE-2014-2524
      7a9f5c9 gnupg: CVE-2013-4242
      754288c sstate.bbclass: Fix up white space lost in last commit.
      0d761fc sstate.bbclass: specify func dirs for sstate_hardcode_path
      8a475be file: add wrapper to nativesdk-file
      a9dc143 openssh: avoid screen sessions being killed on disconnect with systemd
      f95d3fc python: force off_t size to 8 to enable large file support
      9c218a3 wic/bootimg-pcbios.py: checking the existance of syslinux
      ccf5a4d build-appliance-image: Update to dizzy head revision
      ef3755b bitbake: fetcher: fix getVar call due to incorrect argument datatype
      0fb3552 gcc: backport patch for gcc bug 61144
      c0b0f69 package_deb: skip pre/postrm scripts on upgrade, write only one shebang
      6bc86e0 mesa_git.bb: Fix fetch and license errors.
      0172cde build-appliance-image: Update to dizzy head revision
      b2f1250 package_do_shlibs: Look for provider in the path thats in shlib_provider dictionary
      e495d9c build-appliance-image: Update to dizzy head revision
      f85455a build-appliance-image: Update to dizzy head revision
      448549b ncurses: enable-pc-files requires PKG_CONFIG_LIBDIR existed
      b934ba1 Revert "meta-yocto: make 3.17 the preferred qemu kernel version"
      3e991ee ref-manual, template: Permalinks for QA errors and warnings
      6f32f3c ref-manual: Fixed grammar use in "Image Features" list.
      07de72c glibc: remove bad patch snippet that eglibc forward ported
      f8d5bfb toolchains-scripts: Add support for target environment scripts
      ea8a7c5 sdk.py: fix write target sdk manifest failed based on ipk
      b718465 wpa-supplicant: fix for rebuild
      dd79603 git: fix do_install error
      afeb590 avahi-ui: fix for building systemd with multilib
      08a86f8 nss-myhostname: skip it when systemd
      90f3709 rpcbind: make service socket activated
      d3a5658 sstate.bbclass: split the too long line
      a200134 sstate.bbclass: the second bb.fatal not work
      d8b5b26 valgrind: Enforce 30 seconds limit for each test
      0aedb38 boost: fix build when ${PARALLEL_MAKE} contains '-l'
      0cac199 dosfstools: place files in /sbin, not in /usr/sbin
      b6b8029 python-pygobject: add libffi to DEPENDS
      18b42b8 neard: update service file
      3ce139b xserver-xorg: update patch to match upstream
      1d00f3e oe-git-proxy: use SOCKS4a instead of SOCKS4
      0843260 gnome-desktop-testing: Fix build on uclibc
      c9ec325 curl: add PACKAGECONFIG option to use libssh2
      cc2add2 xserver-xorg: report DRI3 and Present modules as present
      6334380 latencytop: Creates x11 PACKAGECONFIG.
      6ec3a0b libassuan: fix for rebuild
      ddf7d2b meta-toolchain-qt: Fix environment population
      ee0ab90 toolchain-scripts.bbclass: Allow sourcing of subscript for environment
      505a6b6 bitbake: fetcher: fix BB_STRICT_CHECKSUM datatype check
      09a51b9 package_ipk.bbclass: Fix SRC_URI whitespace handling
      fc37a44 bash: update and CVE-2014-6278 fix
      8ef4ded linuxdoc-tools-native: Makedoc.sh uses /tmp and fails w/ noexec mount
      533a852 package.bbclass: Reverse runtime symlinks should be tied to package generation
      5c0b727 LTP - realtime tests - fix bad robust mutex conditionals
      fbcab6e LTP - realtime tests - fix bad PI mutex conditionals
      94d2fea bash: Upgrade bash to latest patch level to fix CVEs
      be2cf13 pseudo*.bb: update to pseudo 1.6.2
      07ad00e cross-canadian: Disable the packagedata stamp-extra-info
      c8b9996 meta-environment: Deal with machines which change TARGET_OS
      64eca27 gcc-runtime: Add linux-gnuspe symlink to fix c++ headers
      3224472 kernel.bbclass: enable a link for external module building
      ff89dfb kernel: Added bc-native as DEPENDS
      63a0781 adt-installer: Fix to work with meta-environment changes
      6c3d119 documentation: Updated release date for manual rev tables.
      e90f4a1 ref-manual: Minor edits to "Image Features" section.
      0389b3b uninative-tarball: Update eglibc -> glibc
      54a755b oeqa/dmesg: Whitelist usbhid failures
      f246933 adt-installer: Set INHIBIT_DEFAULT_DEPS
      5367855 build-appliance-image: Update to dizzy head revision
      6a56492 meta-yocto: make 3.17 the preferred qemu kernel version
      4a3e3db yocto-bsps: update h/w reference boards to the latest 3.14 SRCREVs
      399192d oeqa/parselogs: Ignore qemu usbhid errors
      0eeba11 gtk+3: Add missing MLPREFIX
      5c16dcf meta-environment: Set libdir correctly to fix PKGCONFIG entries
      ef44f39 apt: apt-key binary was not being installed, including it in the installation
      319eb60 perf: fix undefined pr_* routines
      96c46db linux-yocto/3.17: update to v3.17-rc7
      f351b74 linux-yocto/3.14/3.17: allmodconfig/allyesconfig build fixes
      1e3a3cd linux-yocto/3.14: revert BFP feature, and fix intel-common -rt
      ce9f31a linux-yocto/3.14/3.17: menuconfig and cryptodev
      448c1fc kern-tools: fix overly greedy path relocations
      abf9372 build-appliance-image: Update to dizzy head revision
      6d843e6 ref-manual: Edits to the "Image Features" section layout
      380ec32 ref-manual: Fixed "debug-tweaks" typo.
      328cb8c ref-manual: Updated the "Image Features" section.
      4a90871 ref-manual: Updated list of Machine Features shipped with YP.
      70faf99 ref-manual: Updated the IMAGE_BOOT_FILES variable.
      0369712 ref-manual: Updated the bin_package class.
      1fd575f ref-manual: Updated the IMAGE_BOOT_FILES variable description.
      609c216 dev-manual: Updated the supported BSP bullet item.
      d4cf38d local.conf.sample.extended: Document RPM4 setup
      03813f4 perl: Improve sysroot regexp
      3956c7b gdb-cross-canadian: Add to sstate whitelist
      94503ca gtk-doc-stub: update to latest commit
      41b420e mx: remove version from patch directory
      58d9c4e rpm: add version 4.11.2
      6be3386 python-smartpm: Add patches for rpm4
      5ad57f4 rpm5: add python-rpm PROVIDES
      c1b5dc2 nss: nss.pc is not target specific
      576b8f4 tzdata: update to 2014h
      91c2fc9 tzcode-native: update to 2014h
      c34775f deb_packaging: Added support for multilib
      a08bf9a ltp: Add additional m4 path to autoconf.
      4572e4c sstate: Add rpm allarch to overwrite whitelist
      ab2fcd2 ltp: add PACKAGECONFIG for numactrl
      a032509 squashfs-tools_4.3: modify SPDX_S variable
      4211d1b icu.inc: modify SPDX_S variable
      6ec2470 db_6.0.30: modify SPDX_S variable
      dbf6891 db_5.3.28: modify SPDX_S variable
      0d3aac7 spdx.bbclass: Add SPDX-specific source tree variable.
      b186c4a oprofile: eliminate git recipe
      3b92eb9 rootfs.py: catch inner warn message
      ecf0897 alsa-utils: interrupt streaming via signal
      78b44ce kernel-yocto.bbclass: Fixup shell condition test syntax error
      c81072b lttng-modules: fix build issues with the v3.17 kernel
      6a30031 apt: fix for CVE-2014-0478
      202ae5a base.bbclass: add SRCREV to do_fetch() hash
      78a2c81 staging: Exclude MULTI_PROVIDER_WHISTLIST from do_populate_sysroot
      78b2f5a meta-environment: Two critical fixes to unbreak toolchains
      b2637ad babeltrace: Add missing bison/flex depensencies.
      805f244 tcmode-default: Define PREFERRED_VERSION for binutils-native
      c7c24cc boost: fix atomics for armv6
      39ca8b4 bitbake: toastergui fix size rendering in dirinfo page
      d6709b0 bash: Fix CVE-2014-7169
      cab81b3 nss.inc: Fix LICENSE
      215e7b9 bash: fix CVE-2014-6271
      cf9fbf5 curl: add a PACKAGECONFIG for librtmp
      49cbd6a licenses.conf: remove link to deleted License_Audit wiki page
      236f382 meta-toolchain-qt: fix up old reference to Nokia and typo
      ea8945b qt4: fix bug tracker URLs for patches
      d7d028e qt-mobility: fix source URL
      0d90e61 man/texinfo: conditionally add gzip/bzip2/xz to RDEPENDS
      597b0c0 texinfo: fix QA Error while doc compress enabled
      392026a git: add Git perl module to perltools package
      576cb35 oeqa/utils: Added filter to LogResults decorator to enforce custom log level.
      3ad2f85 sstate.bbclass: update the timestamps after install
      38b8126 gnupg: add pinentry into RRECOMMENDS
      e9d8cec pinentry: add recipes
      c15ed36 dhcp: use ${PN} for SYSTEMD_SERVICES
      3028c8e volatile-binds: use ${PN} for SYSTEMD_SERVICE
      dc73940 acpid: use ${PN} for SYSTEMD_SERVICE
      a7636ec packagegroup-core-standalone-sdk-target: Add libgcov-dev to on device SDK
      5761032 gnomebase: fix indentation
      6870dff syslog: Change unused variable declaration LOCAL=0 to LOG_LOCAL=1
      020f4cb qtdemo-init: Make qtdemo startup correctly
      8ff856a perf: fix issue about package splitting
      cf558b4 libpam / xtests: remove bash dependency
      5948287 gst-plugins-base: fix build failure for x86
      a876a2b coreutils: selinux/flask.h should respect to with_selinux
      f3e9be3 systemd: disable resolv.conf symlink unless resolved is enabled
      5cc5917 sstate: Change overlapping files warning to a fatal error
      e92e800 bitbake: prserv/serv: Improve error message when prserver cannot bind to supplied host address
      438a508 bitbake: hob: Fix sstate mirrors mangling
      8e4e03c bitbake: fetch: Extend testing of subdir unpack parameter and fix
      1f4e751 bitbake: fetch: SRC_URI parameter "subdir" does not work for local files
      249a0e9 bitbake: monitordisk: don't log when not monitoring a filesystem for inodes
      8ac8eca build-appliance-image: Update to dizzy head revision
      21df5ec poky.conf: Bump version for 1.7 dizzy release
      c84b0c0 bitbake: bin/bitbake: Update to version 1.24.0
      9a3781d sanity.conf: Update minimum bitbake version to 1.23.2 due to event changes
      88f76f8 ref-manual: document IMAGE_BOOT_FILES
      4995908 dev-manual: Added reference to the meta-selinux layer.
      33cff3e layer.conf: Mark opkg-utils as ABISAFE for update-alternatives usage
      4ebd2e49 update-rc.d/systemd: Remove OVERRIDES dependency
      0aed04a layer.conf: Add in useradd dependencies as ABISAFE dependencies
      78aeee1 man: fix not support xz/bz2 compression
      75d6b2b ltp: make setregid02 be able to pass
      c9dbd26 systemtap: disable libvirt
      8207c90 beaglebone.conf: add IMAGE_BOOT_FILES
      7291691 wic: add sdimage-bootpart kickstart file
      6b03fc2 wic: add new bootimg-partition plugin
      f24abaa documentation.conf: document IMAGE_BOOT_FILES
      7ce1dc1 wic: set bootimg_dir when using image-name artifacts
      48ff3fa wic: fix vfat partition sector count only if needed
      0b3f477 wic: use IMAGE_EXTRA_SPACE for vfat rootfs
      c94d8e9 wic: minor comment update
      2cbab45 uninative: Add uninative - a way of reusing native/cross over multiple distros
      a94574f bitbake: fetch2/perforce: Use replace (1 line) instead of find (3 lines)
      7ca8b65 bitbake: fetch2/perforce: Fix localfile name if labels are used
      ff5fba8 bitbake: knotty: Ensure commandline parameters are updated in memres server
      b98bd94 irda-utils: remove inherit autotools
      177af6e oe-init-build-env-memres: Fix automatic port usage
      b65e3e2 linux-yocto/3.14: update to v3.14.19
      ca4f364 linux-yocto/3.10: update to v3.10.55
      001db84 linux-yocto/3.17: bump to v3.17-rc6
      0243bcf linux-yocto/3.17: switch to dedicated 3.17 repository
      cef6884 linux-yocto/3.17: update to v3.17-rc5
      5b68bcf linux-yocto/3.14: update to v3.14.18 and -rt9
      7040b6f linux-yocto/3.10: update to v3.10.54 and -rt55
      afdbe31 bitbake: bitbake-worker: Fix bitbake -n
      bff185f dev-manual: Added a note to the EXTERNALSRC example about the class
      2acf47b dev-manual: Fixed typo in the make races section header.
      ab7f117 dev-manual: Added a second EXTERNALSRC example.
      79fd7f1 dev-manual: Updated another EXTERNALSRC example.
      018c498 dev-manual: Updated EXTERNALSRC example for user-input formatting.
      567c1ae ref-manual: Updated RRECOMMENDS variable description.
      385f20b poky.ent: Updated the "tbd" name to "dizzy" for 1.7.
      d269a45 ref-manual: Added new INHIBIT_PACKAGE_DEBUG_SPLIT variable to glossary.
      c7dffc7 yocto-project-qs: Minor edits from a read-thru
      b4c03a7 dev-manual: Added some formatting for user-supplied input.
      f819f3d dev-manual: General edits to "Common Tasks" chapter.
      c2e5449 dev-manual: Review edits for GDB without source
      d0dda27 ref-manual: Added GLIBC_GENERATE_LOCALES variable.
      9cc019b ref-manual: Added PACKAGE_DEBUG_SPLIT_STYLE variable.
      05fabfc oeqa/selftest: Added decorators to buildoptions.py
      5ceb02d kernel.bbclass: use one package split for all firmware filename extensions
      4f0cbf5 u-boot: cleanup indentation and consolidate .inc file
      955bf63 populate_sdk_base/meta-environment: Remove overlap from the two
      6523bc1 meta-environment: Fix TARGET_OS problem for ppc
      cc58218 gstreamer1.0-plugins-bad: disable libssh2
      13d1209 perl: remove unneeded patches in ptest directory
      adb3d77 python: obey LDFLAGS
      93f7d09 irda-utils: obey LDFLAGS
      eb55720 blktrace: obey LDFLAGS for btrecord
      6bd98e8 hostap-utils: obey LDFLAGS
      3c9bf23 setserial: obey LDFLAGS
      5ed0721 ossp-uuid: obey LDFLAGS
      e04fdb5 gdbm-1.8.3: obey LDFLAGS
      d9ddf29 zlib: obey LDFLAGS for tests
      6730378 ltp: Added zip-native as a DEPENDS
      533af2d flex: fix the deps for ptest builds
      3e6df77 cmake.bbclass : Add support for cmake projects that use .S files.
      280b6d0 sstatesig: fix overrides behaviour to remove SIGGEN_LOCKEDSIGS_i586
      7450ba4 sstate: set SIGGEN_LOCKEDSIGS_CHECK_LEVEL default to error
      f9723a3 sstatesig.py: Replace '_'s with '-'s in SSTATE_LOCKEDSIGS* names.
      abf0e7e sstatesig: Improve the support for locked down sstate cache usage
      a08d7dc sstatesig: Improve to handle locking of multiple machines
      c5cc499 sstatesig/sstate: Add support for locked down sstate cache usage
      7d80f8e bitbake: data_smart: Clarify what 'computed' means in the data store history context
      14ace86 gcc-configure/gcc-common: Move preconfigure definition to common include
      0db15bb libgcrypt: Fix ARM assembly when building __PIC__
      da36b0a build-appliance-image: remove hardwired path
      50f8fb7 rsync: remove trailing whitespace
      ed6b52c rsync: Add PACKAGECONFIG for acl/attr
      a6d390a systemd: fix to use ${libdir} for libraries
      a4cfa20 lttng-tools: add PACKAGECONFIG to support --enable-python-bindings and lttng-ust
      04a3360 i2c-tools: create i2c-tools-misc package for perl scripts
      14adc48 portmap: add systemd service file
      d11ec7f portmap: fix INITSCRIPT_PARAMS
      8e47b28 dropbear: add pam modules dependencies
      eb6bf53 at-spi2-core: fix DBIND_CHECK_ALIGNOF m4 macro
      23613ef grub-efi: Replace _BSD_SOURCE macro with _DEFAULT_SOURCE
      f8d38d5 gstreamer1.0-plugins-bad.inc: Add rtmp support in gstreamer.
      563ea5b sstate.bbclass: fix sstate_hardcode_path()
      40e1c38 license: Improve disk usage
      57edf59 sstate: Fix incorrect return value handling
      7029032 shadow: Make useradd work correctly with --root again
      fceef0c bitbake: data_smart: Fix remove operator and its interaction with data expansion
      429802f classes/populate_sdk_base: enable adding custom commands to SDK install script
      51e3921 bitbake: bin/bitbake: Update to version 1.23.2
      bb54fd0 bitbake: siggen/runqueue/bitbake-worker: Improve siggen data transfer interface
      9ebf982 xserver-xorg: remove aarch64.patch
      3b37586 build-appliance-image: upgraded VMware machine config
      bd1a3ab nspr: Upgrade to 4.10.7
      9f9476f packagegroup-self-hosted: move graphics packages to graphics group
      c2c8c02 packagegroup.bbclass: Use immediate expanded PACKAGE_ARCH value
      7c16a53 oeqa/runtime: Automatic test for ptest
      0a39472 oeqa/utils/logparser.py: results based log parser utility
      1f5186e oeqa: Added package installer to oetest to aid in future automatic install of packages
      7a497b8 linux-yocto-dev: bump to v3.17+
      56e93f5 linux-yocto/3.14: configuration updates and feature merges.
      e7d0486 linux-yocto/3.10: update valleyisland-io merge branch
      4a82041 linux-yocto: introduce v3.17
      6cb383c perf: fix v3.17 powerpc compilation issues
      73ef403 lttng-modules: fix compilation for 3.17-rcX
      e107239 linux-yocto/3.10: baytrail i/o updates
      5dc9a8f e2fsprogs: update acinclude.m4
      ec20c06 e2fsprogs: remove manual build of util/subst
      cea6ad7 e2fsprogs: enable verbose build
      0a74947 e2fsprogs: remove chmod
      f1ce75e pcihp: fix possible array out of bounds, CVE-2014-5388
      5e18549 bitbake.conf: use ??= for IMAGE_ROOTFS_SIZE
      3a77693 kernel.bbclass: handle .dsp firmware
      a41d97a classes/buildhistory: fix for sstate class change
      0d3c795 glibc: Incremental bump to 2.20 release branch
      a425639 gdb: allow compilation for __aarch64__
      5bef322 wic: Completely remove all urlgrabber references
      7576bd9 valgrind: backport enabling for glibc 2.20
      ecb4014 systemd: disable resolved and networkd
      f42d028 alsa-utils: hard-code alsa-utils in SRC_URI
      7efad8a qemu.bbclass: add -r ${OLDEST_KERNEL} parameter
      d8c8ea7 shadow: add Qualcomm and STMicroelectronics SoCs
      c46a548 glib-2.0: fix mount detection
      7736967 python-native: disable user site support
      fe0f441 gstreamer: Set DEPENDS dynamically for plugins-ugly and plugins-bad
      679b9fb bluez5: Allow method calls over dbus for bluetooth daemon
      beff451 alsa-utils: upgrade to 1.0.28
      54f58f1 systemd: Adding RRECOMMENDS for os-release
      b092e55 os-release: Adding a new recipe for operating system identification
      7df5910 pixman: upgrade to 0.32.6
      28500e5 gtk+3: update to 3.12.2
      4cdc9fd pango: update to 1.36.6
      79900b8 libpng: update to 1.6.13
      da5710d libpng: drop unnecessary automake requirement lowering patch
      3e4cd04 gtk+2: update to 2.24.24
      1f162cd libxkbcommon: Add missing dependency on xkeyboard-config
      5f26c02 sstate: Add extra intercept functions SSTATEPOSTCREATEFUNCS
      d06839e package_manager.py: use RPM_PREFER_ELF_ARCH
      124ad80 perf: add libunwind support
      9204cac libunwind: add recipes
      69e7936 lighttpd: install config file without execute permissions
      38a44d4 sudo: make sudoers a config file
      60bfdb0 insane.bbclass: add QA check: file-rdeps
      e7a78bd package_manager: RpmPkgsList: determine rpm version
      1894522 bitbake: tinfoil: add a means of enabling variable history tracking
      dfbb546 bitbake: toaster: fix some code spacing issues
      69e5cbd bitbake: toaster: use cookies for count and sorting in templates tables
      a6f1e31 bitbake: toaster: do not save objects in session
      32a2793 bitbake: toaster: enable SSH-based remote build support
      5bd2b3f bitbake: toaster: bitbake server listen on all interface
      a287a6d bitbake: toaster: rename bldviewer projecttags custom tagset
      a440062 distro/poky: Add Debian 7.5 and 7.6 version as validated
      57b214d alsa-lib: libasound should runtime depends on alsa-conf
      c7541a2 rpmresolve: ignore null requires
      628875e systemtap: Cross compilation fix
      af28cad systemtap: Fixed probe syscall.sendfile failure
      b02da02 useradd-staticids.bbclass: Fix for Bug 6633
      2f42ef8 package_rpm: Add optional improved directory handling
      7b722c5 systemd: enable forwarding messages to syslog daemon
      1ea5aad run-postinsts.service: remove redundant line
      23c9436 modutils-initscripts: mask modutils in case of systemd
      9105e9e psplash: mask psplash in case of systemd
      2caee0c v86d: mask fbsetup when necessary
      c57427b keymaps: mask keymap when necessary
      3b00803 initscripts: mask several init scripts
      f8f2ada packagegroup-core-boot: conditionally rdepend on VIRTUAL-RUNTIME_initscripts
      bebf263 keymaps: remove dependency on initscripts
      143e13a at: inherit update-rc.d to handle sysv init script
      44be08b at: remove dependency on initscripts
      ab4f1b2 rpcbind: avoid entering failed status after stopping daemon
      eaa87ab cups: add systemd support
      cd8255b cups: make cups daemon start correctly
      f9c6b40 acpid: upgrade to 2.0.22 and add systemd support
      9b5bc94 dhcp: add systemd service files
      198ed4b systemd: add support for executing scripts under /etc/rcS.d
      c39e263 v86d: set INHIBIT_UPDATERCD_BBCLASS if 'sysvinit' not in DISTRO_FEATURES
      7580259 systemd: add kbd-keymaps to RRECOMMENDS of systemd-vconsole-setup
      62fdd44 keymaps: fix for systemd
      e3088a7 alsa-state: fix pkg_postinst and set INHIBIT_UPDATERCD_BBCLASS
      ee05cc8 update-rc.d: fix logic in populate_packages_updatercd
      16de99b systemd: make runlevel work in non-runlevel targets
      2189b7e systemd: add PACKAGECONFIG for 'journal-upload'
      6301fde systemd: upgrade to 216
      b2a93ca qemu-native: only depends on libxext-native when x11
      187c831 piglit: add bash to RDEPENDS_piglit
      957753b scripts/contrib/build-perf-test: Update eglibc -> glibc
      2b83ffe xserver-nodm-init: Only start in runlevel 5
      e04230b rpcbind: Make user's home directory /
      b15a703 classes/compress_doc.bbclass: compress man/info pages
      9bf365c perf.bb: fix multilib build
      cdb7752 pango / ptest: clean CFLAGS for host binary
      60b8a57 scripts/create-recipe: minor fixes
      45907b6 package_manager: Add rpm v4 support
      c5dc664 package_rpm: Add builddir macro to define source directory
      2668104 package_rpm: Add custom extension support for spec generation.
      1a7ff8a lz4: update to version 122
      83ebcb1 bitbake: process: Ensure abnormal exits set an error level
      08ffc6b nettle: Add name to maintainers list
      a4e6bc7 upstream_tracking: add lz4 version and date info for package
      bb00d83 conf: Account for eglibc->glibc move
      3150bdc python-numpy: Fix build for mips64
      f61eac4 grub: Replace _BSD_SOURCE macro with _DEFAULT_SOURCE
      9164912 xf86-video-intel/xf86-video-omapfb: Fix build with glibc 2.20
      4d26851 xf86-input-synaptics/xf86-input-vmmouse: Fix build with glibc 2.20
      5e328bf bitbake.conf: Use 2.6.32 for oldest supported kernel
      09e3e78 recipes: Remove references to eglibc
      573b743 oeqa: sstatetests should now look for glibc-initial
      4e4e80e image-swab.bbclass: Account for eglibc -> glibc move
      e64efe7 conf: Account for eglibc->glibc move
      00f33ff distro: TCLIBC now defines glibc instead of eglibc
      54a3375 glibc: Migrate eglibc 2.19 -> glibc 2.20
      954e45b perl: add explicit configs for Time-HiRes
      8a0a27d ghostscript: Don't build-depend on libgcrypt for the local cups
      051f6a1 native.bbclass: deltask package_qa
      4900d76 yocto-bsps: update SRCREVs to linux-yocto latest
      834ab14 yocto-bsps: remove 3.4 bbappend
      76f05ee linux-yocto: ensure that recipe specific defaults take precedence
      92c1ece kernel-yocto: replace --is-ancestor with basic git porcelain commands
      61c15c0 linux-yocto/3.4: remove 3.4 name recipes
      05371f4 linux-yocto/3.14: update to v3.14.17
      aeef310 linux-yocto/3.14: vhost, vxland, openvswitch and block/bfq updates
      b7a16bb kern-tools: allow meta branch and meta data directory to differ
      9a3292e kernel-yocto: convert echo statements to bb* equivalents
      cf8a0ac kernel-yocto: remove KBRANCH_DEFAULT
      63f2e18 kernel-yocto: allow custom non-meta, SRCREV format builds
      ba7614b kernel-yocto: clean overly complex branch checkout
      2aa7522 kernel-yocto: use show-ref instead of branch -a
      4ee454d kernel-yocto: simplify branch SRCREV validation
      3b3fe04 kernel-yocto: remove KBRANCH_DEFAULT
      95bfc6a kernel-yocto: remove branch existence checking in do_validate_branches
      254bc3a kernel-yocto: remove SRC_URI kbranch validation
      8a5b1c7 kernel-yocto: remove containing branch check
      7097cdf kernel-yocto: move SRCREV validation to patching phase
      4e96983 kernel-yocto: use cat-file instead of git-show
      6b294a0 kernel-yocto: remove redundant SRCREV check
      50a8400 bitbake: knotty: ignore interrupted system calls
      372c9d1 bitbake: toastergui: added pages for project details
      acd4a17 bitbake: toaster: add project pages for machines, targets, layers
      fd0398f poky-tiny: Fix qemu build failure
      8b70d4b poky-tiny: Set native DISTRO_FEATURES
      f1b41b9 tzcode: update to 2014g
      d6bd8df tzdata: update to 2014g
      823ba6e libpam: remove MLPREFIX from PN
      08c8861 linux-libc-headers: update to 3.16
      c07aa7e libpam: Fix multilib packaging
      e145cd5 libpam: Fix runtime providers
      e2d64c1 libical: upgrade to 1.0.0
      243837b libpcap: upgrade to 1.6.1
      b31b04d iproute2: upgrade to 3.16.0
      7d8430f at: Upgrade to 3.1.15
      d086917 libassuan: Upgrade to 2.1.2
      83b4118 libxkbcommon: Upgrade to 0.4.3
      04827ad man-pages: Upgrade to 3.71
      864fdbb less: Upgrade to 466
      af35986 alsa-utils: upgrade to 1.0.28
      c74a6dd alsa-tools: upgrade to 1.0.28
      b72ce82 alsa-lib: upgrade to 1.0.28
      cc0a061 package_manager.py: enable smart non-interactive mode
      4568f38 libtirpc: upgrade to 0.2.5
      f01a156 gstreamer1.0-plugins-ugly: upgrade to 1.4.1
      0fb00d4 gstreamer1.0-rtsp-server: upgrade to 1.4.1
      797c793 gstreamer1.0-plugins-bad: upgrade to 1.4.1
      2173b1b gstreamer1.0-plugins-good: upgrade to 1.4.1
      8ce06de gstreamer1.0-plugins-base: upgrade to 1.4.1
      4c8658e gstreamer1.0-libav: upgrade to 1.4.1
      987fcaa gstreamer1.0: upgrade to 1.4.1
      37fbf2b systemd: add PACKAGECONFIG for 'elfutils'
      d8f60bb useradd: Add setscene dep on pseudo-native
      1ea36c8 qemu-native: depends on libxext-native when enable sdl
      9f36a3c package: Correct two typos in a comment
      3b47aa1 lib/oe/utils: Make multiprocess_exec() return anything
      91375af oeqa: xorg log test is being replaced by parselogs so remove
      e50ebcc testimage: Add parselogs to the default tests for sato images
      09296cd oeqa/pasrselogs: Improve the machine/string whitelist
      c730c94 oeqa/runtime: Automatic test for parsing the logs on a machine and search for certain error keywords.
      0031722 classes/cpan_build.bbclass: add EXTRA_CPAN_BUILD_FLAGS
      fa9bb30 buildtools-tarball: export GIT_SSL_CAINFO
      754a9c3 buildtools-tarball: include nativesdk-ca-certificates
      39f77bb lttng-tools: fix ptest execution failure
      fe2e53b bitbake: toaster: create Build methods for calculating progress and ETA
      69955c7 bitbake: buildinfohelper: BuildRequest project file update soft linked
      25a715a bitbake: toatergui: update pages to match project models
      ee250eb bitbake: toaster: update the bldcontrol to the new orm models
      95df542 bitbake: toaster: update checksettings command for auto-detection
      565f692 bitbake: toaster: add all layers page
      3a4356d bitbake: toaster: create project section navigation structure
      5453000 bitbake: toaster: enable admin interface on select models
      234226b bitbake: toaster: update orm models for layerindex compatibility
      10019a6 bitbake: toaster: fix application discovery in settings.py
      7eb3e45 bitbake: toasterui: refactor log saving and save out-of-build errors
      669c07d bitbake: build/data: Write out more complete python run files
      34226b8 bitbake: bitbake-worker: Extra profiling data dump
      ac66e15 bitbake: utils: Improve profile log processing
      c79b7f0 bitbake: fetch2/hg: Fix username/password handling
      d1a133a bitbake: runqueue: Fix setscene tasks not running
      859ad94 populate_sdk_base: Remap TOOLCHAIN_HOST_TASK variable
      a9c628d python3-distribute: fix interpreter
      bdf14c7 bootchart2: no bashism in bootchartd.in
      b2dab1f sed: add sed to RDEPENDS sed-ptest
      ac5aaf8 lsbtest: no bashism in LSB_Test.sh
      36f6caa run-ptest: fix bashism
      cdfc515 valgrind/oprofile/systemd: no bashism in run-ptest
      1087a18 meta: fix RDEPNEDS for the test related pkgs
      44f98bb ltp: fix RDEPENDS
      8ffa79e ethtool: upgrade to 3.15
      53fcc0a gstreamer1.0-plugins-bad: Add DEPENDS on jpeg
      49ade79 gstreamer1.0-plugins-bad: Fix GL/GLES configuration
      f0f50a9 gstreamer1.0-plugins-bad: Add DEPENDS on libpng
      b5c2294 gstreamer1.0-omx: Add DEPENDS on gstreamer1.0-plugins-bad
      1094091 gstreamer1.0-plugins-bad: add opencv haar cascade XML files to package
      9c0d4f5 cpan.bbclass: matches more lines
      89a2b84 perl-native: fixed bad interpreter error
      38dbebf packagegroup-core-directfb: Set PACKAGE_ARCH to MACHINE_ARCH
      778e892 ofono: upgrade to 1.15
      b2b4057 bluez5: upgrade to 5.22
      ddf2b0e harfbuzz: upgrade to 0.9.35
      94a6ecf connman: upgrade to 1.25
      a90346e patchelf: Add patchelf recipe
      347f9c6 sstate: Add extra intercept functions
      bbf1040 linux-dummy: bundle_initramfs should not be nostamp any more
      c167954 qemu: add PACKAGECONFIG for numa
      07ad83e libtiff: fix CVE-2013-1961
      40771f3 systemd: Support building on uclibc
      036644d uclibc: Support systemd builds
      90f6566 uclibc: Upgrade to tip of master
      6e7127d openssl: Re-add linux-uclibc tuple
      3adf1f5 IBM power7 v2: Add new tune file for PPC power7
      38c91f4 IBM power6 v2: Add new tune file for PPC power6
      3daa219 IBM Power5 v2: Add new tune file for PPC power5 cpu
      88a3c93 nss: CVE-2014-1544
      2e8b702 logrotate: add packageconfigs
      682933a logrotate: obey our flags
      61e3e41 oeqa/sdk/buildsudoku.py: add setUpModule method to run only when gtk+ in installed.
      e2b4dde oeqa/oetest.py: enable sdk tests to use hasFeature and hasPackage methods.
      e04172d classes/testimage.bbclass: add more fields to the sdk TestContext
      475e976 classes/populate_sdk_base.bbclass: add a manifest for target sdk
      30c22a3 qemux86-64: support X11 when QEMU is emulating a different GPU than vmware
      0e8d6de qemux86-64: xorg.conf: allow X.Org driver to be selected automatically.
      9e8666c qemux86: support X11 when QEMU is emulating a different GPU than vmware
      ae54f2b qemux86: xorg.conf: allow X.Org driver to be selected automatically.
      a9085bf xorg-drivers: xf86-video-cirrus: add a recipe for the Cirrus Logic X.Org driver
      a9b0804 archiver.bbclass: add revision to git tarfile name
      3a1b605 hicolor-icon-theme: Upgrade to 0.13
      754c983 xkeyboard-config: upgrade to 2.12
      b2981a0 xf86-input-mouse: upgrade to 1.9.1
      0a21d44 xf86-input-synaptics: upgrade to 1.8.0
      726c08e psmisc: Update patch status
      d09e6d8 native/nativesdk: Clear MACHINEOVERRIDES
      8491ca5 sanity: refactor mirrors checks to be more pythonic
      af6d668 sanity: fix support for regex schemes in mirrors check
      d68255d sanity: handle both \n and \\n in mirror vars
      52b788c autogen-native: inherit pkgconfig to fix a build failure
      c58b4e4 libxml2: Explicitly enable zlib support
      e601c8b buildhistory: Restore parsing time optimalization
      c919acf poky-floating-revisions: SRCREV never worksin PREFERRED_VERSION, remove bad example
      6d08e5b bitbake: lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
      91083de bitbake: depexp: don't use undefined variable 'logging'
      6962cd8 bitbake.conf: Drop unused MKTEMP* variables
      1a76648 package: Disable runtime mapping of RPROVIDES/RCONFLICTS/RREPLACES
      ff6ab05 package: Don't remap names in packagegroup recipes
      3694f05 debian: Set RPROVIDES to include the original packagename when renaming
      c490ba0 sstatesig: Only squash dependencies for allarch packagegroups
      9e213dd packagegroup: Move inherit packagegroup to after PACKAGE_ARCH
      9541ec7 allarch: Add warning about packagegroup
      4f3f34d packagegroup: Make allarch inherit conditional
      be8a7ab nettle: add nettle to tracking
      21f41f6 bitbake: cooker: tweak CookerCollectFiles::find_bbfiles
      cf385a55 guile: workaround ice ssa corruption while DEBUG_BUILD
      ffb4933 puzzles: fix do_compile failed when DEBUG_BUILD
      28e3f8c fixup
      f026b7a busybox : fix do_compile failed on qemumips when DEBUG_BUILD (ICE)
      de96305 opkg: Add runtime dep on gnupg if 'gpg' is in PACAKGECONFIG
      26b2233 gpgme: Add pkg-config file
      94c9b02 bind: refer ubuntu/redhat to add bind user/group
      7361876 ptest-runner: return 1 instead of zero if any test fails
      fd0aa6a udev-cache: parametrize sysconf file paths
      7c56a5e udev-cache: Don't ignore error messages from cache extract
      ab5c95f udev-cache: omit sockets and filesystems mounted under /dev
      79f5a3b udev-cache: strip timestamps on extract
      4f597a8 busybox: enable `tar -m`
      bcab1f8 udev-cache: choose a more descriptive cache filename
      8c423bf udev-cache: Compress the cache
      bd7fb7c udev-cache: Update cache tarball atomically
      8d59fca linux-yocto/3.14: feature merges and configuration updates
      29f428d linux-yocto/3.14: cgroups and hugetlb updates
      2cc9643 linux-yocto/3.14: fix common clock framework support in PCI glue layer
      4045d61 linux-yocto/3.14: KASLR and VDSO backports
      d4fbc54 linux-yocto/3.14: update to v3.14.13
      321cb59 linux-yocto/3.14: add ARM kprobes support
      2ffbc27 linux-yocto: intel-common: Enable Industrial IO
      0ae7b58 sanity.bbclass: check the format of MIRRORS
      eb34d66 sanity.bbclass/kernel.bbclass: minor fixes
      dfb5575 gmp: ppc64 build issue
      c891078 mc: Fix musl build failure
      65fa712 libc-common.bbclass: rename ALL the packages
      c448f2d expect: fix shared object file cannot be opened
      2bdd294 sudo: remove volatile configuration file
      5a3a7e0 bitbake: siggen: Fix a subtle bug in hash calculation for shared work tasks
      d33cc89 bitbake: process: Further improve robustness against server shutdown
      8683c24 bitbake: utils: Add workaround for multiprocessing bug
      ecf72a7 bitbake: command: Trigger updateCache to shut down any active parser threads
      c501492 bitbake: bitbake-worker: Improve sigterm handler
      a4f077b bitbake: knotty: Improve exception handling
      db50630 bitbake: process: Deal with infinite looping of the server
      b4ad9de bitbake.conf/debian.bbclass: Move AUTO_LIBNAME_PKGS definition to class file
      62e3071 packagegroup-core-tools-debug: Drop MACHINE_ARCH as PACKAGE_ARCH
      9412254 package.bbclass: Fixup for using common function
      be1b198 lib/oe/utils: Add utils function for multiprocess execution
      6ab380d bitbake.conf: Set PACKAGE_ARCH with ??=
      f478602 oeqa/utils/httpserver: Reset SIGTERM handler
      181bcbe archiver: delete the tail slash in directory name
      cae5cf2 grub_2.00: strip the sparc64 files from building
      a140514 mesa: fix Multilib QA Issue
      bf6ad82 udev: fix /var/volatile/tmp permissions
      a45cb30 grep: set CONFIG_SHELL to /bin/sh
      e06238b gzip: set CONFIG_SHELL to /bin/sh
      086936a xz: set CONFIG_SHELL to /bin/sh
      ed3b6ed qemumips.conf: Default to (and support) mips32r2
      f9e6b7e fix up eglibc-utils description to match what is actually included
      f9619af qemu: Explicitly disable libiscsi, its not in DEPENDS
      5dfec59 strace: fix ptest execution failure
      e46011c perl: fix the output format of all tests
      638ccc4 lttng-ust: add python-core to RDEPENDS_lttng-ust-bin
      185eed0 syslinux: add perl to RDEPENDS_syslinux-misc
      03d4906 aspell: add perl to RDEPENDS_aspell-utils
      fb5f2bb rpm: add perl to RDEPENDS_rpm-build
      faa4b0a gst-plugins-base: add perl to RDEPENDS_gst-plugins-base-apps
      ad95a7b dtc: add bash to RDEPENDS_dtc-misc
      2311f57 apr: add bash to RDEPENDS_apr-dev
      a9a0246 pm-utils: add bash to RDEPENDS_pm-utils
      63aa531 apt: add bash to RDEPENDS_apt
      919a8e2 xmlto: add bash to RDEPENDS_xmlto
      3c85381 kconfig-frontends: add bash to RDEPENDS_kconfig-frontends
      fdf51aa pax-utils: add bash to RDEPENDS_pax-utils
      f95e62b libtool: add bash to RDEPENDS_libtool
      7d3d6a3 bitbake.conf: add bash-native to ASSUME_PROVIDED
      cdb84ea openssl: add DEPENDS on openssl-native for rehash
      87c748c dhcp: do not use ifconfig/route in dhclient-script
      3531869 kernel: Prevent from installing so files into source dir
      7b0137c nss-myhostname: fix postinst/prerm scripts
      06d529c ethtool: Fix musl build failure
      e335d95 psmisc: Fix musl build failure
      0c6c0b6 procps: Fix musl build failure
      50fbf19 wic: do not realign aligned partitions
      5686b2d wic: do not steal sectors from the first partition
      cb860e1 e2fsprogs: Backport fixes for building with musl
      7607001 classes/autotools: avoid error if recipe is first in task dependency tree
      6a6f50b sqlite3: Upgrade to 2.8.6.0
      1fb5d64 gnupg: Upgrade to 2.0.26
      088123d libidn: Upgrade to 1.29
      1203e1e glew: Upgrade to 1.11.0
      b1d8f59 boost: Upgrade to 1.56.0
      b8dd7c8 libbsd: Upgrade to 0.7.0
      0056492 cups: Upgrade to 1.7.5
      3443667 bitbake: runqueue.py: Fix typoes/grammar in comments.
      02455eb bitbake: fetch2/local.py: fix first line indent of search path debug output
      f1dc26e bitbake: daemonize.py: Non-functional comment/aesthetic fixes.
      8a91a24 bitbake: runqueue.py: Correct several misspellings of "notifing".
      c3f7f4e bitbake: newbb.vim: remove PR
      e89001c qemu: fix Darwin cross-compilation
      be02588 classes/sstate: ensure do_package_qa_setscene doesn't pull in do_package_setscene
      3223a70 buildhistory: rename build-id to build-id.txt and add more info
      858846d librsvg: disable Bsymbolic if it is not supported on some hosts
      b7e4518 site/common-darwin: Really fix common-darwin typo
      abb7f5b oeqa/sdk/: add sdk tests for sudoku, iptables and cvs
      fec293b oeqa/utils/targetbuild.py: add support for sdk tests
      2999a7f oeqa/oetest.py: enable sdk testing
      c8de46c meta/classes/testimage.bbclass: add testsdk task and enable functionality for it.
      59b0f7f chrpath: Drop warning from darwn builds
      d42794c glib-2.0: Add missing nativesdk-gettext DEPENDS
      ea06e64 qemu.inc: Drop unneeded nativesdk-libsdl RDEPENDS
      241bdb0 qemu-targets.inc: Update to handle mingw/darwin
      77ebfe7 gst-ffmpeg: add PACKAGECONFIG for libav9 and patch from Gentoo
      1e001d0 piglit: add dependency on libxrender
      9e4be7f local.conf.sample: Append sdl to qemu-native* PACKAGECONFIG
      7ae2008 avahi: Since ${PN} is empty, set -dev RDEPENDS
      7095d8d crosssdk: Clear MACHINEOVERRIDES
      5f69b66 openssl: Repace if-else with case and add musl triplet
      00e054e syslinux: fix race issue
      ecb6abe avahi-ui: drop rmdir localstatedir in bb recipe
      093149d avahi: unset FILES_avahi to avoid packaging files there
      ccec199 lttng-tools: update to version 2.5.0
      3188e0b libxml2: port AM_PATH_XML2 to use pkg-config
      2f8a72e coreutils/libpam: Add BBCLASSEXTEND nativesdk
      f12ac61 wic: include partition label in fs image file name
      4ac5071 gcc-cross-initial: Put limits.h in gccdir/include
      1a1d641 lttng-ust/lttng-modules: Update LICENSE to reflect MIT
      182cd38 lttng-tools/lttng-ust: Drop old 2.3.1 versions
      1cbabcd lttng-ust: update to version 2.5.0
      eed2270 toolchain-shar-template.sh: Limit xargs command line
      298de65 bootchart2: fix installed-vs-shipped
      f9f8183 libpam: Allow use during build and in SDK
      52dbe71 attr: Allow use during build and SDK
      ba9cb13 cracklib: Allow use in SDK
      072657c wic: Add mkgummidisk kickstart file
      32a5799 wic: Add sourceparams to mkefidisk.wks
      6e328c9 wic: Add gummiboot support to bootimg-efi
      8d0185f wic: Parse and pass sourceparams to partition plugin methods
      e00e902 wic: Add sourceparam param to partition plugin methods
      ef700ea wic: Add utility function for parsing sourceparams
      3c90ee9 wic: Add '--sourceparams' partition option
      c4f51a0 image.bbclass: image_types.bbclass is a must
      25bf76a gmp: uprev it to 6.0.0
      c23b321 Support image type "squashfs-lzo"
      6ac0696 squashfs-tools: Add support for LZO and LZ4 compression
      f21f385 strace: apply ptrace.h conflict workaround
      295ce4a curl: --with-random is only applicable with openssl
      c076959 curl: let configure find gnutls via pkg-config
      89d3db7 curl: add zlib PACKAGECONFIG and remove hardcoded DEPENDS
      ae8d3bc python-pygtk: fix native python path
      9a30d34 consolekit: depend on glib-2.0-native
      276285b consolekit: allow explicit enable/disable of polkit
      0cd5af0 udev-extraconf: Unmount SD card after ejection
      eb7a847 opkg: Protect add-exclude.patch from malloc failure
      cb1ab74 multilib_global.bbclass: PREFERRED_PROVIDERS for multilibs
      c0a071e gcc: update compiler architecture to match gcc-runtime (armv6, armv7a)
      6573521 gcc: backport patch affecting Linux kernel builds
      75191fc gcc: Abstract long double configuration into python function
      14a2d1e sdk: change EXTRA_OECONF_FPU to EXTRA_OECONF_GCC_FLOAT
      79e235c gcc-target: make --enable-clocale consistent with gcc-runtime
      7a17a0d gcc: remove outdated configuration option
      46a812f gcc-4.9: Ensure c++ includes are in /usr/include/c++/${BINV}
      7b8b0af gcc: remove inappropriate patch
      6d78f39 gcc: recipe whitespace changes
      2783ee7 tcmode-default.inc: Add eglibc-scripts and eglibc-mtrace
      221c11b prelink_git: Update to current head of cross-prelink development
      8e46af2 autoconf: add rdep on perl-module-data-dumper
      ba4eb6d gcc-cross-initial: Use good old bfd linker by default
      b8a001d cmake: drop -fpermissive
      bf07dcd gstreamer1.0-rtsp-server: Upgrade to 1.4.0
      c1fe42c libgcrypt: Do not remove m4 files so aggressively
      c742a6a python-scons-native: Make it useable if old host install exists
      f1cdd6e glib-networking: Inherit gettext
      06db5d9 libsoup-2.4: Inherit gettext
      9f6d867 systemd: Inherit gettext
      8247293 qemu: add PACKAGECONF lzo
      d5b7327 qemu: enable aarch64 support
      0670cec python: Fix build on musl
      9c1ea58 gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev
      19e9510 gdb: Add a dependency on zlib
      a346777 cml1.bbclass: fix diffconfig diff command
      58bd515 libav: update 9.x version to 9.16
      ab8365b libav: update 0.8 version to 0.8.15
      3939d66 qemu: Overwrite KVM explicitly for darwin/mingw
      06d6608 qemu: Simplify DEPENDS
      42f0ffe qemu: Add PACKAGECONFIG for glx
      153773e qemu: Add alsa PACKAGECONFIG and cleanup native/nativesdk DEPENDS
      1c1ce08 qemu: Fixup target sdl configuration to use PACKAGECONFIG
      f4ff3d3 qemu: Move dtc(fdt) configuration to PACKAGECONFIG
      57bdeec site: Add common-darwin
      fa3df0e glib-2.0: Allow correct printf configuration on darwin/mingw
      71135b3 glib-2.0: Make the gtester-report installation conditional
      82b7504 populate_sdk_base: Move toolchain installation script to a separate file
      2501287 rootfs_*: Refactor common depends/lockfile task flags
      e6837f7 classes: Combine rootfs_<pkgtype> and populate_sdk_<pkgtype>
      6882d2d yocto-project-qs, ref-manual: Added 'socat' package to essentials.
      edd2532 ref-manual: Updated native.bbclass with grammar fix.
      010d19e dev-manual: Misc edits to the model chapter (Chapter 4).
      1ab0c8f dev-manual: Various small edits to Chapter 3.
      4cc5cb1 dev-manual, mega-manual: Updated the downloads picture.
      32b508e dev-manual: Misc edits to Chapter 2.
      d677a68 dev-manual: Added Toaster to the list of other resources.
      5370b58 dev-manual: Updated section on launching remote GDB.
      632faca bsp-guide: Applied the <replaceable> tag as needed.
      cb5c70d ref-manual: Fixed a couple links and made some minor corrections.
      8732dab ref-manual: Minor edits for clarity.
      2ef2b72 ref-manual: Updated "Images" chapter to remove listed dirs for recipes.
      46fb10d ref-manual: Ordered images alphabetically.
      15b0f8a ref-manual: Added "core-image-testmaster-initramfs" image
      d211d47 ref-manual: INITRD var: make it a list of filesystem images.
      80bd63b ref-manual: Updated the SRC_URI variable.
      932b956 dev-manual: Minor edits to the section to add binaries to an image.
      2058187 ref-manual: Edits to some FAQ entries.
      a20e75f dev-manual: Review edits to how to find checksum values.
      e2e0844 ref-manual: Review edits to new FAQ entries.
      0467e3a dev-manual: Minor edits via patch to "common tasks" chapter.
      93f0d03 dev-manual: Technical and text edits applied as patch.
      99a3c19 dev-manual: Edits to several examples and some typos.
      0346405 dev-manaul: Small edits to various examples.
      a155083 ref-manual: Updated a couple FAQ entries.
      0f24d9c SIGGEN_EXCLUDERECIPES_ABISAFE: add initscripts
      d7fea14 oe.package_manager: fix use of PACKAGE_EXCLUDE for dpkg
      4e3e0df python-dbus: use PACKAGECONFIG for doc generation
      fe5b333 oeqa/runtime: add new cpp test and file
      92785a1 lib/oeqa/selftest: Don't match log level in output
      d43b439 sstate-sysroot-cruft.sh: Improve to use it from CI
      f62150b qt4: Avoid duplicate flags in the g++-unix.conf
      a37c81c tslib: Delete unnecessary "SRC_URI_OVERRIDES_PACKAGE_ARCH = 0"
      f71208f trace-cmd: fix recompile error
      4ca81d6 openssl: upgrade to 1.0.1i
      2c175fc directfb: add PACKAGECONFIG for webp
      c1a2482 kernelshark: add dependency on libxml2
      f18ff5f gnupg: Added PACKAGECONFIG[curl]
      ae10362 curl: add ssl to PACKAGECONFIG
      a3d0a7b base.bbclass: Remove old-style definition of do_build() task.
      786c445 guile: add dependency on ncurses and readline
      9e8c8c3 midori: add dependency on libxscrnsaver
      d150886 libarchive: add PACKAGECONFIG for nettle
      984c6a4 mpeg2dec: add PACKAGECONFIG for x11 and fix dependencies
      1636d23 gst-fluendo*: add --disable-debug only to gst-fluendo-mp3
      a1fa222 test-dependencies, insane.bbclass: improve the message
      f96432d directfb: add PACKAGECONFIG for drmkms and tiff
      48989d3 Remove remnants of deleted "do_package_write" task.
      d942d22 wic: Bump the version to 2.0
      d8f9d05 wic: Rename /mic to /wic
      a43c1f9 wic: Update Disk description
      ff1aa23 wic: Rename MountError
      312479c wic: Rename PartitionedMount
      28453ae wic: Update/rename configure-related code
      d02c91f wic: Update/rename install-related code
      467bf7e wic: Update cleanup/unmount-related code
      4d1f5ee wic: Update/rename/delete mount-related code
      bd0dd44 wic: Remove Mount object
      d74e7d3 wic: Remove unused conf support
      554feee wic: Update 'Background and Motivation' help section
      02ebd15 wic: Remove unused command versioning support
      8678a6e wic: Clean up Creator
      f12336a wic: Clean up PartitionedMount
      1601821 wic: Clean up DirectImageCreator
      6c6c96a wic: Clean up BaseImageCreator
      df42125 wic: Remove unused plugin and error code
      946dbec wic: Remove gpt_parser
      5a8bcfb wic: Remove unused 3rdparty/commands
      c9b5ea0 wic: Remove 3rdparty/urlgrabber
      ba19b60 wic: Remove unused misc code
      f0499a0 wic: Remove unused fs_related code
      93a60f7 wic: Remove rpmmisc
      ac2d312 wic: Remove proxy support
      29fb556 wic: Remove grabber implementation
      d9096a6 wic: Remove fiemap support
      aac3223 wic: Remove bmap support
      a935109 wic: Remove mic package managers
      f1dbd46 wic: Remove rt_util
      c0aa6cb wic: Remove mic chroot
      d212000 wic: Remove mic bootstrap
      bd9b934 wic: Remove packaging, config commands
      36f4ede wic: Remove unused custom commands
      68e6adf wic: Make exec_cmd() error out instead of warn
      9636046 qemu: upgrade to 2.1
      3b769f0 trace-cmd: Update to version 2.3.2
      4380b1a perl-rdepends: add CPAN, CPAN::Meta requirements
      47efe35 kexec-tools: reinstate 'kexec-tools' package
      2917308 ubootchart: delete ubootchart recipe
      23ff42e core-image.bbclass: Correct comment about packagegroups.
      c8aba32 gstreamer1.0-plugins-good: fix the bug for gstrtpmp4gpay
      b88b5b7 bootchart2: create recipe for bootchart2
      a00dcf2 v86d: fix for systemd to load uvesafb module correctly
      34ffa4e alsa-state: install init script only when 'sysvinit' is in DISTRO_FEATURES
      f0c0040 syslinux: fix reinstall error
      8371105 u-boot-mkimage: fix recompile error
      dfc203c kernelshark: fix recompile error
      78e127d kexec-tools: fix recompile error
      866070c logrotate: fix recompile error
      020f816 libnewt: fix recompile error
      3f0bbf6 busybox: Add Upstream-Status to patch
      2d77fbf sysvinit: allow stack size configuration from rcS
      b32b819 wpa-supplicant: use PACKAGECONFIG for ssl selection
      b6cdfec lz4: update to 120
      0065258 boot-directdisk.bbclass: use local HDDDIR
      7c872ea remake: fix build error
      26c229c tzdata: update to 2014f
      39d800d tzcode: update to 2014f
      86afd7e ghostscript: Remove bogus gsfonts reference from DESCRIPTION
      6cad939 documentation.conf: Small tweak to INITRD variable
      bfa36a2 code cleanup for INITRD variable handing
      73c481d base-files: set dynamic COLUMNS via resize command
      a40db96 busybox: Make busybox connman aware
      268688a oelint.bbclass: Check for ${PN} or ${P} usage
      207e94d oelint.bbclass: add patch checking
      7c85585 oelint.bbclass: make oelint bbclass work
      c3dedbe curl: remove unused patch
      6fa2d82 perf: fix indentation
      522a808 perf: explicitly disable libunwind
      3b019ed Add doc entry for "ptest-pkgs" in IMAGE_FEATURES list
      6a77a1d scripts/send-error-report: fetch /Errors/ instead of /.
      2dab9e6 gstreamer1.0-omx: Remove unnecessary dependency on plugins-bad.
      74f0424 kexec-tools: Create separate package for vmcore-dmesg
      a350f26 slang 2.2.4: fix the iconv existence checking
      df3d7de cups: regen configure so cups-no-gcrypt.patch has an effect
      6767cc1 cairo: explicitly disable LTO support by backporting patch which removes it
      a0dcda8 tcp-wrappers: install /etc/hosts.allow and /etc/hosts.deny
      1d75145 tcp-wrappers: fix do_install when $prefix == $base_prefix
      1805ec8 formfactor: Grammar fix in recipe comment.
      bd7b15b test-dependencies: don't override failed-recipes.log
      aa87ead nss*: Replace hardcoded "/etc" with "${sysconfdir}"
      ce7b1b0 alsa-lib: pcm_local.h: include <time.h> to enable CLOCK_MONOTONIC
      a06c934 alsa-lib: fix hw_ptr exceed the boundary
      9a923b9 alsa-lib: use get32_labels for multi-source
      aa5fa26 psmisc: Typo in fuser makes -M on all the time
      c91ed20 tcmode-default.inc: allow override of binutils-crosssdk
      870bb8d local.conf.sample.extended: fix example for EXTRA_USERS_PARAMS
      83775dc autotools: Exclude SDK_OS from autotools task signatures
      b521321 package: Fix darwin shlibs code
      0a7530f upstream-tracking: Add various CHECK_DATE and UPDATE_REASONs for my recipes
      25129a6 bitbake: runqueue: Add sceneQueueComplete event
      53eaed5 package: Convert dylib handling from .la to otool
      c702039 package: Fix pkgdest for darwin shlibs code
      55379f2 autotools: Fix warning for odctools-crosssdk
      03af60e sstate: Allow switching between linux and non-linux SDK builds within the same tmpdir
      34dc844 bdwgc: Upgrade 7.2d -> 7.4.2
      4a22636 dev-manual: Updates for checksums and wic
      d283686 dev-manual: Minor fixes.
      e7dae57 ref-manual: Added two new FAQ entries.
      152d307 dev-manual: Updated manual overview to include new QEMU chapter
      fb46492 dev-manual: Edits to the wic reference section.
      f937e05 dev-manual: Miscellaneous fixes in the newbie chapter.
      3152e69 dev-manual: Created new chapter on QEMU.
      5f31e28 dev-manual: Added support for new QEMU chapter.
      25d7b0d dev-manual: Modified how to find checksums in the recipes
      3be4af9 dev-manual: Applied review edits to the 'wic' section.
      73abcb0 dev-manual: Fixed up the list of other references.
      231fde5 dev-manual: Replaced "--" with &dash;&dash; throughout.
      7ef076c dev-manual: Miscellaneous wic edits.
      e0aa8f0 dev-manual: Miscellaneous updates from the wic help text.
      b8a836c dev-manual: Added --fsoptions to wic
      537e965 dev-manual: squashfs support added to wic section.
      2a11e9d dev-manual: Created new "Plugins" section in the wic section.
      1a82521 dev-manual: Updates to the creating partitioned images section.
      4560e2f dev-manual: Added note and fixed a grammar spot.
      b1a9074 dev-manual: Patch to fix some links and references.
      6ebbf03 dev-manual: Updated example "foo" recipe name used in examples.
      0221f8d poky: Enable build-deps QA test bu default
      f401e8f bitbake: cooker: Get rid of duplicate 'import re'
      70d0316 bitbake: knotty: Move second event check into a proper block
      854d9e4 local.conf.sample.extended: update for preferred ABI
      68eb17d bitbake: bitbake-user-manual-metadata.xml: Fixed variable flags example.
      4643e6b bitbake: bitbake-user-manual-fetching.xml: Minor edits to clearcase fetcher
      d0dec84 bitbake: bitbake-user-manual/bitbake-user-manual-intro.xml: Fixed link
      53436d9 bitbake: bitbake-user-manual-fetching.xml: Added new clearcase fetcher module.
      b75572d opkg-utils: Update SRCREV
      7ff489d mesa-demos: upgrade to 8.2.0 and allow building without GLEW/GLU
      8034d77 tune-mips*: Ensure tunes are inherited in order
      fb8e2a8 gcc: Fix gcc-multilib-config comparison
      bfb23e6 sanity.bbclass: Add ability to verify toolchain flags
      cade601 init-install: Skip CDROM devices during probe
      112674d init-install: Strip partition number from live_dev_name
      7a81bd4 init-install-efi.sh: Verify /sys based files exist before displaying them
      fd3d11f gcc: Upgrade 4.9.0 -> 4.9.1
      a9c8767 package_manager.py: set preferred ABI for rpm
      3c61104 libnl: Upgrade to 3.2.25
      d468e24 libcheck: Upgrade to 0.9.14
      2e880b6 lsbinitscripts: Upgrade to 9.55
      87aed8a help2man-native: Upgrade to 1.46.1
      c02d6b4 oeqa/utils/decorators.py: add import os
      81d7adf qemu.inc: Allow optional use of pkg-config from the HOST
      1fb8fdb gstreamer1.0-omx: upgrade to 1.2.0
      b819924 gstreamer1.0-libav: upgrade to 1.4.0
      d36561c gstreamer1.0-plugins-ugly: upgrade to 1.4.0
      273c6ad gstreamer1.0-plugins-bad: upgrade to 1.4.0
      4832b94 gstreamer1.0-plugins-good: upgrade to 1.4.0
      23808f9 gstreamer1.0-plugins-base: upgrade to 1.4.0
      7bdfef3 gstreamer1.0: upgrade to 1.4.0
      593f00d i2c-tools: Uprev to 3.1.1
      704dd12 alsa-lib: Add upgrade path for alsa-dev
      3d1c670 python-smartpm: fix option typo of command channel
      c07efbd python: python-pycairo: add python-pycairo-native
      eecd637 image.bbclass: tweak read_only_rootfs_hook to also support systemd based systems
      713f1fd systemd: add volatile-binds to RDEPENDS
      db15e2d volatile-binds: add recipe
      3b19f90 INITRD var: make it a list of filesystem images
      463c9f4 wic: Various typo/grammar fixes to wic help text
      b7528a4 wic: Add squashfs to --fstypes documentation
      dcf7d98 wic: Add documentation for --fsoptions
      3e237b1 wic: Fix plugin help text
      e517b08 image-vmdk.bbclass: use sda rather than hda
      2ca9406 gcc-4.9.inc: fix parallel building failure
      2d16601 populate_sdk_base: Fix grep command usage on old hosts
      d738109 selftest/buildoptions.py: fix QA_WARN test and add more output when failing
      062bd81 libx11: Add missing NULL check
      6a7b989 cml1: correct diffconfig output format
      21b1cd1 nss: CVE-2013-5606
      0685207 pulseaudio: fix CVE-2014-3970
      c6a57f7 base-files: fix up misleading dir grouping names for lsb dirs
      caea71f base-files: remove strange 2775 perms from dirs like /home
      97cc497 base-files: actually install 2775 dirs as 2775, not 2755
      3b1beeb libav: fix PACKAGECONFIG for theora and libvorbis
      931fd01 autoconf: remove automake patch enforcing --foreign
      addeef1 lib/oe/rootfs: Improve error message whitespace
      cdb9b96 directfb-examples: Fix building with new autoconf
      7952151 populate_sdk_deb: Fix non x86_64 SDK builds
      4310088 apt-native: Add missing DEPENDS on db-native and curl-native
      848cc27 populate_sdk_base: Include do_rootfs depends for do_populate_sdk
      09def7a wic: do not overwrite autogenerated /etc/fstab with original too early
      5627590 util-linux: break out new package util-linux-findfs
      7cb16c8 util-linux: break out new package util-linux-hwclock
      89d1788 bitbake: codeparser cache improvements
      a05435f bitbake: cache: Optimise invalid cache file handling
      97f4d8f bitbake: cache: Don't reload the cache file since we already have this data in memory
      e2e8231 insane: Use a warning for FILEEXTRAPATHS issues for now
      14a7cde lib/oeqa: Fix accidental revert of code
      73ce04e wic: squashfs partition support
      5e7de54 wic: --fsoptions handling
      68bc4eb insane: add checking to standardize how .bbappend files do FILESEXTRAPATHS
      8e26ab7 oeqa/rutime: Added testcase decorators for automated runtime tests. Also added LogResults decorator for oeTest class in oetest.py
      242ccee alsa-lib: remove non PN based -dev packages
      65e8bc4 cogl-1.0: Add libcogl-path package
      419daaa autotools: Improve configure dependency code for finding m4 files
      c1b244e wget: fix build error with gnutls
      3754726 shadow-securetty: add freescale lpuart
      da75a9a python: fix _json module arbitrary process memory read vulnerability
      33a1a17 nspr: Fix for CVE-2014-1545
      f6507d3 gcc-4.9.inc: fix parallel building failure
      30ef7b2 perl: fix rebuid failed while ${CC} changed
      5a7f510 autotools.bbclass: Enhance sed regexp to avoid extra subshell
      984f034 oeqa/runtime: Added skipModule import for test modules that use it.
      0c4dd0a oeqa: Refactor test skipping decorators to use the unittest result object
      0565d8b gstreamer1.0-plugins-good: add missing dependency on libcap
      02a15c0 gst-plugins-good: add missing dependency on libcap
      8fdee05 pulseaudio: add missing dependency on libcap
      e9008b0 debian.bbclass: inherit package
      e2bd60a base-files: Don't export TZ if /etc/TZ exists
      35f3f10 glib-2.0: use ptest-gnome
      403aa97 ptest-gnome: add ptest helper for GNOME packages
      050cbac shared-mime-info: upgrade to 1.3
      c76ee2b xf86-video-evdev: upgrade to 2.9.0
      7fa1294 libevdev: add new recipe (needed by xf86-input-evdev)
      9fe836c libxi: upgrade to 1.7.4
      99bffeb curl: Upgrade to 7.37.1
      0eed506 cups: Upgrade to 1.7.4
      2d7e6a0 binutils-cross-canadian: Explicitly DEPEND on nativesdk-flex, we require it anyway
      63df03d qemu: Use PACKAGECONFIG for libusb to avoid floating dependency
      c6211d8 gcc-multilib: Simply/fix MULTILIB_OPTIONS handling
      42470aa lib/oe/classextend: Avoid early expansion of PR values
      aee3b53 cross-canadian: Copy target_ definitions from cross.bbclass
      d802443 populate_sdk_base: Extend TOOLCHAIN_TARGET_TASK to include multilib variants
      8aeefd4 libomxil-0.9.3: Remove versioning for bellagio .so files.
      c489b13 Revert "libomxil-0.9.3: Remove versioning for .so files."
      df214ad allarch: Generate same package for MIPS and non-MIPS targets
      80cfdfe libice: fix non-deterministic libbsd dependency
      5f496b2 kern-tools: adjust to full history meta-data
      bc76ecc linux-yocto/3.14: libata and generic CPU modalias handling
      4033ca8 kernel: don't copy .so.dbg files into kernel source install
      366e7a6 linux-yocto-dev: bump to v3.16+
      d332ad7 linux-yocto: x86_64: expand kernel stack to 16K
      32a20c3 lttng-modules: re-enable ARM builds
      1681c88 lttng-modules: update to 2.5.0
      d90124c linux-yocto/3.14: vexpress and MVM firmware support
      a202f8a insane: Add build depends check
      686037c ref-manual: Updated note in the "CentOS Packages" section.
      8f52c69 bitbake: bitbake: remove choices for dump-signatures
      1306f26 package_ipk.bbclass: Support hierarchical feed
      1529ef0 bitbake.conf: move BB_NUMBER_THREADS and PARALLEL_MAKE to bitbake.conf
      f833195 bitbake.conf: move BB_NUMBER_THREADS and PARALLEL_MAKE to bitbake.conf
      91c845c gst-ffmpeg: Add CVE patches
      b7f8fde serf: specify LIBDIR to avoid install issue
      78a38c8 perf: remove CFLAGS override
      be7eebe net-tools: ifconfig interface:0 del <IP> will remove the aliased IP on IA64
      94b2718 toolchain-script: Really fix CANADIANEXTRAOE issues
      3134ae1 sanity: Check for setgid/setuid TMPDIR
      7c11b32 initscripts: fix bashism in bootmisc.sh
      0cc5fa5 squashfs-tools: Add nativesdk in BBCLASSEXTEND
      1330419 sysvinit: bootlogd: ensure /var/log/boot is created in volatiles
      8076ab2 sysvinit: bootlogd: Don't run savelog if it's not installed
      48641d5 sysvinit: bootlogd: Honor VERBOSE
      063ee04 wic: Remove fstype from mkefidisk canned wks
      aec05b6 wic: Add help entry for wic kickstart
      a0e7d58 wic: Fix bad directory name in bootimg-efi
      970de1b pango: upgrade to 1.36.5
      252b7ee libxft: upgrade to 2.3.2
      4bdd18e xcb-util-wm: upgrade to 0.4.1
      93a31df xf86-video-vmware: update to 13.0.2
      9c3aac1 gdk-pixbuf: upgrade to 2.30.8
      c3601c8 libice: upgrade to 1.0.9
      2c74aca gnome-common: upgrade to 3.12.0
      4bad95b at-spi2-atk: upgrade to 2.12.1
      da056f0 inputproto: upgrade to 2.3.1
      84199cc libxfont: upgrade to 1.5.0
      376ed31 fontsproto: upgrade to 2.1.3
      4071033 kernel-module-split.bbclass: Allow autoloading multiple modules or modules where basename != module name
      2c4d82b gstreamer1.0-plugins-base: get caps from src pad when query caps in gsttagdemux
      5d7b5bb gstreamer1.0-plugins-base: do not change eos event to gap event if no data has passed to streamsynchronizer.
      8040b2d gstreamer1.0: pass rate of input segment to output segment in gstbaseparse.
      dcd0deb gstreamer1.0-libav: avoid using non-growable pool for videodec
      4fc9259 gstreamer: fix a bug for gstbaseparse
      036d9ab gst-plugins-good: fix integer overrun for mulawdec
      fd1aacc adt-installer: fix sed input file error
      dc6a9a9 systemd: change dependency relationships
      0270b0e shadow: fix the behavior of su
      cfa23a2 mkefidisk.sh: Add signal handling
      ce38579 mkefidisk.sh: Fix redirection to 1
      acfe054 busybox: mdev: Ensure /dev/initctl exists after tmpfs mount
      034790d busybox: mdev: Use mdev.seq
      67e1a52 busybox: mdev: Make /dev/shm world-writable
      c294bbe mkefidisk.sh: Remove initrd entry for gummiboot
      6ac058c connman: Fix PPTP VPN plugin QA issue
      56bfda2 image.bbclass/rootfs.py: add variables to rootfs[vardeps]
      f4456df bitbake: toasterui: fixing event.data clash
      37d2066 bitbake: toaster-requirements.txt: document requirements for the python environment
      1b9175a bitbake: toaster: properly set layers when running a build
      6e71c27 bitbake: toaster: add project main edit page
      8a3789a bitbake: toaster: move bldcontrol initial_data fixture to code
      5aba3d7 bitbake: toaster: improved Project models
      6cfb76f bitbake: toaster: add fields for sourcedir and builddir paths
      5ba68f3 dev-manual: Added the section on "Creating Partitioned Images"
      b72dc51 ref-manual: Provided canonical GP license names.
      2dec5d5 ref-manual: Replace a couple old references to "task-*"
      d77c4cb kernel-dev: Fixed a wording typo.
      653b557 bitbake: "per-package" should say "per-recipe"
      8b7116d bitbake: Updated the the example 'bitbake -h' output to match the actual output, which has been recently patched to fix the '-S SIGNATURE_HANDLER, --dump-signatures=SIGNATURE_HANDLER' option.
      5bcda42 bitbake: fetch2: Add module for ClearCase (ccrc://)
      13a03f2 bitbake: command/runqueue: Fix shutdown logic
      4db62df wget: Remove unneeded DEPENDS line
      ba3f990 kernel-dev: Fixed typo
      ca4e42a kernel-dev: Fixed link to BitBake command:
      6aeed29 ref-manual: Updated some glossary variables:
      ed3cd02 dev-manual: Removed not to the PTEST_ENABLED variable.
      93ad63c ref-manual: renamed "do_package_write" to "do_package_write_*"
      8e280b4 yocto-project-qs: Updated the note on working with proxies.
      ab3e880 ref-manual: Fixed grammar problem in FILES variable description.
      1b7c45e ref-manual: Modified licensing verbiage for GPLv3
      4767787 ref-manuala: Updates to support links to BB manual
      1fc9548 ref-manual, yocto-project-qs: Fixed some references to BitBake Manual.
      0558a37 alsa-tools: Disable use of GTK+ when not using X11
      8933810 buildtools-tarball: Add wget to buildtools-tarball
      ec70845 shadow: Add PACKAGECONFIG for acl/attr
      0ef3734 libomxil-0.9.3: Remove versioning for .so files.
      231c737 bitbake: bitbake: update help message for dump-signatures
      d74b882 bitbake: bitbake-user-manual-metadata.xml: fixed some example whitespace issues
      335defe bitbake: bitbake-user-manual-metadata.xml: KERNEL_FEATURES example updated.
      c723fa0 bitbake: bitbake-user-manual-metadata.xml: Fixed whitespace
      c08d724 bitbake: bitbake-user-manual-metadata.xml: Removed fakeroot from list
      eb169fe bitbake: bitbake-user-manual-metadata.xml: Added second conditional metadata example.
      49627bb bitbake: bitbake-user-manual-metadata.xml: Adding some flag examples.
      e83032c bitbake: bitbake-user-manual-metadata.xml: Edits to some operators
      af4f1f4 bitbake: bitbake-user-manual-execution.xml: Minor edits to execution chapter.
      696973a bitbake: bitbake-user-manual-intro.xml: More edits to the intro chapter.
      4df50d3 bitbake: bitbake-user-manual-intro.xml: Minor edits to start of intro chapter
      b62b682 bitbake: bitbake-user-manual-metadata.xml: Replaced "populate_staging"
      435e425 bitbake: bitmake-user-manual-fetching.xml: Added transportuser parameter for SVN
      c270e24 poky.conf: Catch up with qemu-config rename -> packagegroup-core-device-devel
      4d2ac6f rootfs: Remove the extraneous install directory
      bcadbb6 pseudo: uprev to 1.6.1
      5be57ba kernelshark: Remove trace-cmd from the kernelshark package
      e26aae7 libatomics-ops: Extend to nativesdk
      c79b452 grub_git: bump version, remove patch
      551e456 xf86-video-intel: disable non-deterministic tests for libX11
      ee2b26f qemu: security patch for CVE-2014-3471
      348102a oprofile: backport two patches to support e500mc/e6500
      91bafd5 strace: fix 64 bit process detection
      ece74df python-numpy: add support for powerpc64 architecture
      a237888 insane.bbclass: avoid QA errors for n32 kernel
      478dbd3 diffstat: update to version 1.59
      01e556c gcc: update *LIBC_* linker relocation reglex
      c0585ca openssh: use pidfile in initscript
      cd9ab37 eglibc: rewritten tzselect as posix sh and move it to tzcode package
      8673b60 busybox: enable CONFIG_FEATURE_AWK_LIBM by default
      c9a16c5 default-distrovars/multilib: update license whitelists to use canonical names
      ba197e6 license.bbclass: canonicalise licenses when dealing with INCOMPATIBLE_LICENSE
      a9710bc scripts/test-remote-image: use the scriptpath module
      03e2fb2 scripts/oe-selftest: add command-line parsing and options
      172c560 mkefidisk.sh: Reduce output and add verbose flag
      049100a mkefidisk.sh: Make the rootfs copy the last step
      db162c6 mkefidisk.sh: Add die() and cleanup() routines
      fd8a230 mkefidisk.sh: Improve logging
      da68264 mkefidisk.sh: Copy the EFI dir recursively
      88045c9 mkefidisk.sh: Add gummiboot support
      7f595ea mkefidisk.sh: Add mount error checking
      3213ab4 mkefidisk.sh: Use all caps for volume names
      b163ba1 initscripts: Add support for /etc/default/urandom
      0327db6 initscripts: make hostname.sh coreutils-compatible
      82ef864 initscripts: Use current date as an additional source of entropy
      769b0f3 initscripts: parametrize random seed file location
      00017b4 initscripts: save /etc/timestamp with seconds accuracy
      b573ae8 initscripts: bootmisc.sh: Make sysctl -p honor VERBOSE
      779f845 rpm: compile rpmqv.c instead of rpmqv.cc
      6cb4ba9 libgpg-error: fix pkgconfig.patch
      63ee154 grub-core: fix endianness problem
      7d1fed2 lz4: update to latest
      c71a1e1 common-mingw: force ac_cv_func_mmap_fixed_mapped=no
      6403cd0 populate_sdk_base: ensure that filenames with empty space character are handled
      f07c17d python-distribute: add nativesdk to BBCLASSEXTEND
      d984fcf libdrm: enable freedreno experimental support
      493e1db libdrm: upgrade to 2.4.54
      449c535 subversion: Disable make install parallelism
      04e45f0 license.bbclass: fix indentation in python function
      1f45232 subversion: neon support was dropped, switch to serf
      93bc890 serf: Add new recipe (needed by subversion for http support)
      012c5c1 libatomic-ops: Add BBCLASSEXTEND for native (to support bdwgc-native)
      0662aa8 bdwgc: Add PACKAGECONFIG for libatomic-ops
      d66c567 oeqa/controllers/beaglebonetarget.py: fix deploy when kernel file is a broken link
      929e48e oeqs/selftest: Added test case decorators for toaster
      1bec8d6 gmp: use PACKAGECONFIG to address readline dependency
      46ab196 flac: explicitly disable checking for nasm
      14735be oeqa: fix return status in pam.py to match shadow-4.2.1
      012a572 shadow: upgrade from 4.1.4.3 to 4.2.1
      3ab35e4 man-pages: Upgrade to 3.70
      9df9a8c libpod-plainer-perl: Upgrade to 1.04
      704a4ba gnupg: Upgrade to 2.0.25
      61d4e80 lzo: Upgrade to 2.08
      774c339 squashfs-tools: Upgrade to 4.3
      5effba2 kmod: Upgrade to latest git
      4971feb kbd: Upgrade to 2.0.2
      58e3c4d qemu: exclude some ARM EABI obsolete syscalls
      97899bc eglibc: check for required distro features
      d418bed python: Forcibly disable tk
      fe14f99 xserver-xorg: Fix build determinism problem
      a0b99a8 gnutls: Fix floating libidn dependency
      f4bb0d0 libpcap: Fix floating dbus dependency
      9837b8e fontcache: Fix build dependency errors
      3363638 neard: Fix typo in patch leading to parallel make race
      490431f btrfs-tools: Upgrade 3.12 -> 3.14.2
      a00faba libconvert-asn1-perl: Upgrade 0.26 -> 0.27
      289cf8d python-pycurl: Upgrade 7.19.3 -> 7.19.3.1
      76f75e9 subversion: Upgrade 1.7.7 -> 1.8.9
      24bee50 cross-canadian: Fix shlibs directory after recent shlibs changes
      da223ec nasm: Update 2.11.02 -> 2.11.05
      bb8573b powertop: Upgrade 2.5 -> 2.6.1
      ba34cfc gccmakedep: Upgrade 1.0.2 -> 1.0.3
      598357b mdadm: Upgrade 3.3 -> 3.3.1
      eaae172 gdb: Upgrade 7.7 -> 7.7.1
      9996548 python-scons: Upgrade 2.3.0 -> 2.3.2
      c882d7f python-docutil: Upgrade 0.11 -> 0.12
      b56d2f5 pkgconfig: Drop version from RPROVIDES
      391704d libpcap: Avoid libpcap build error when libnl1 is involved
      03c6fd0 ltp: use "foreign" automake strictness
      68d1ee3 oprofile: use "foreign" automake strictness
      9406b1f libmad: use "foreign" automake strictness
      9da7e68 which: use "foreign" automake strictness
      d779dce libid3tag: use "foreign" automake strictness
      36360f2 bzip2: use "foreign" automake strictness
      93f54c0 lz4: Add self to maintainers list
      cd843b3 gstreamer1.0-omx: Use variables for CORE_NAME processing.
      7023edc perl-rdepends: Add perl as perl-misc/${PN}-pod runtime dep
      3fbfc6d setserial: add missing depends on groff-native
      fd42fc4 libxml2: enable catalog support
      fc4c43a xserver-xorg.inc: add missing dep for xmlto
      53b68e0 xorg-lib-common.inc: add missing dep for xmlto
      c61cc3c xorg-proto-common.inc: add missing dep for xmlto
      03aa23a alsa-utils-native: add missing dep for xmlto
      c95dec0 xmlto: add version 0.0.25
      605e1f3 docbook-xml: add docbook-xml-dtd4
      38d438c docbook-xml: add docbook-xsl-stylesheets 1.78.1
      d2c59d3 scripts/test-remote-image: add --skip-download option
      eb86725 file: remove dump and filesystems
      4c78b0a file: fix perl reported as awk
      2e822bf git: update to v2.0.1
      bb0b765 classes/insane: Show QA check name
      5b07620 Remove long-deprecated "task-core" backward compat for packagegroups.
      be0fea1 pseudo_1.6.0.bb: uprev to pseudo 1.6
      037aa4a groff: fix PERLPATH
      562cc69 xorg-driver: use PACKAGEFUNCS instead of populate_packages_prepend
      2db009d default-versions: remove xf86-video-intel
      7b455c5 xf86-video-intel: upgrade to 2.99.912
      eca8a56 wic: Error on zero-sized partitions
      d08c2ce wic: Add kickstart reference to help system
      d8b65a5 wic: Add wic overview to help system
      83e5c09 wic: Add vfat support
      f398687 wic: Error on parted non-zero error code
      1dcdd87 bitbake: toasterui: fix build - project identification
      e7fa0c3 bitbake: toaster: new project page implementation
      d19b784 bitbake: toaster: whitespace fix
      9cfa66b bitbake: toaster: add automated login in new project page
      cff1935 bitbake: toaster: add project pages
      6b62a0f bitbake: toasterui: Show in the log that ToasterUi is ready to receive events.
      c35b678 bitbake: toaster: automatically enable applications
      5790b60 bitbake: toaster: automatically discover urls.py files
      1712c71 bitbake: toaster: remove strftime calls in filters
      9e99bcf insane: Ensure do_package_qa happens after do_packagedata
      1cb9f7b lib/oe/image.py: check the rootfs size against IMAGE_ROOTFS_MAXSIZE
      d836437 oeqs/selftest: Added test case decorators for the rest of selftest testcases except toaster
      79dae06 xserver-xorg.inc: add PACKAGECONFIG for xmlto
      e56bc99 xorg-lib-common.inc: add PACKAGECONFIG for xmlto
      91c7cba xorg-proto-common.inc: add PACKAGECONFIG for xmlto
      8d7f9e6 alsa-utils: add PACKAGECONFIG for xmlto
      4febf20 cups.inc: Delete obsolete "PROVIDES" line.
      d8ef355 wic: Add general 'plugins' help topic
      f2ab619 wic: Add dummy subcommand and usage strings
      b5dceca wic: Print error if a partition specifies an invalid --source
      1908751 wic: Add help text for 'wic list source-plugins'
      40769b7 wic: Add command to list available source plugins
      ae33bda rpm: disable -Wno-override-init
      68df093 libnss-mdns: replace hardcoded /etc with ${sysconfdir}
      aa460d8 libnss-mdns: support ipv6 in lookups
      6156379 libpcap: fix depends on libnl
      ba46e51 Move boot media to /media/realroot for easy access after boot.
      360171c package.bbclass: add a stub implementation of package_name_hook
      28270fc bootimg.bbclass: Add parameter to specify HDDIMG volume ID
      2f7c92c init-install-efi.sh: improve hard drive searching process
      ae724e4 init-install-efi.sh: fix to handle the boot partition correctly
      90362a4 gcc: Ensure c++ includes are in /usr/include/c++/${BINV}
      76940ed builder: removed setting of BB_NUMBER_THREADS and PARALLEL_MAKE
      d3a3f4b weston: make webp explicitly configurable
      4956ae7 cogl-1.0: update to 1.18.2
      7b861d0 init-install.sh: Verify /sys based files exist before displaying them
      949bf15 base-passwd: install passwd and group atomically
      7e6eeee kernel.bbclass: update KERNEL_IMAGE_MAXSIZE
      0903a6b gzip: move uncompress bin to avoid cross-fs link
      e35d626 package.bbclass: Generate runtime-rprovides data
      09898d6 insane: Split do_package_qa into a separate task (from do_package)
      3ead62a package.bbclass: Rewrite shlib_provider handling to include RPATH
      db788ac package.bbclass: Improve shlibs pkgdata file format
      a20cc90 package.bbclass: Rewrite sonames data structure to include library path
      adb89b1 package.bbclass: Improve shlibs needed data structure
      6879c3c maintainers.inc: add info for libical
      4730941 sanity.bbclass: Update minimum git version to 1.7.8
      6686f75 adt_installer: not download repo page
      018e85e adt_installer: check the result of updating opkg
      f629045 adt_installer: fix syntax error
      82999c1 adt_installer: remove unnecessary variable
      5d179f6 binconfig-disabled: add a default value and comment for BINCONFIG
      9192fc1 xserver-xorg: fix xshmfence autodetection
      6bb1bef xserver-xorg: add PACKAGECONFIG for libunwind
      5a194a3 bluez5: upgrade to 5.21
      e206dfa libcroco: disable /usr/bin/croco-6.0-config
      0a6dcf2 libcap: use PACKAGECONFIG for attr and pam configurations
      42806c7 groff: fix bindir transaction error
      5f27f55 rpm_5.4+cvs: Add RPM community tree for future development
      7bf5341 package_rpm.bbclass: Should be using HOST_* not TARGET_*
      f171799 rpm: Replace patch with backport from SCM version of RPM5
      fe483ca rpm: Upgrade to 5.4.14
      107ef51 db: Add version 6.0.30
      e73deac perl, perl-native, perl-ptest: upgrade from 5.14.3 to 5.20.0
      93d77b6 kexec-tools: upgrade to 2.0.7
      02cdce9 libtasn1: update to 4.0
      3d58c59 gnutls: update to 3.3.5
      c8a68bb db_5.3.*: Upgrade to 5.3.28
      a5531a2 bitbake: fetch2/svn: Add transportuser parameter
      0538574 bitbake: lib: fix no newline at end of file
      edf8cb1 bitbake: toaster: fix no newline at end of file
      359f087 yocto-bsp: Drop GLIBC_ADDONS setting
      05c47cc yocto-bsp: Update qemu inclusion lists
      868a234 grubtarget.py: Change 'test' GRUB entry selection method
      581a06a meta-yocto-bsp: oeqa/controllers: add GrubTarget
      57bbb1a Revert "meta-yocto-bsp: oeqa/controllers: add GrubTarget"
      b21f799 build-appliance-image: Update to master head revision
      cc7d457 libxml-parser-perl: fix do_compile failed with unrecognized option '-Wl, -O1'
      301c3f9 openssh: avoid checking empty passwords to mess up with PAM modules
      9674819 autotools.bbclass: remove autotools_set_crosscompiling
      fd4eca0 scripts/contrib/verify-homepage.py: add a script to verify HOMEPAGE
      ab1dce9 bitbake.conf: automatically add libexecdir/BPN/.debug to -dbg
      cc49165 glib-2.0: silence QA warnings about libraries outside ${libdir}
      ae03111 Added testcase decorator to use in logging. Added class decorator LogResults that outputs test results in separate log file.
      52a6d20 elfutils/elfutils-native: Fix patching generated files
      2c59db6 lib/oe/package_manager.py: Fix _pkg_translate_smart_to_oe function
      70c933e libav: add PACKAGECONFIG for theora, libvorbis, speex and openssl
      5f1f863 gtk+: Add PACKAGECONFIG for directfb
      aa76de9 adt_installer: Fix real envrionment script issues
      6ebd0a8 toolchain-scripts: Add handling for CANADIANEXTRAOS
      64e2bad meta: fix no newline at end of file
      3bc357f runqemu-extract-sdk: normalize paths to improve output
      fbe1291 qemu: fix qemu-native pkg-config paths
      5aec84d init-install-testfs.sh: add '--hotkey x' to 'test' menuentry
      49b416d bitbake: templates: Added newline character to end of script.
      7043956 bitbake: bitbake-user-manual-ref-variables.xml: Edits to OVERRIDES variable.
      0b96a4b bitbake: bitbake-user-manual-execution.xml: Minor fixes.
      538cbf4 bitbake: bitbake-user-manual-intro.xml: Minor fixes mostly grammar adjustments.
      ac8ac17 bitbake: bitbake-user-manual-fetching.xml: Small fix in Git Fetcher
      3a7258a bitbake: bitbake-user-manual-execution.xml: Typo and grammar fixes.
      00ade7e bitbake: bitbake-user-manual-execution.xml: Edits to "Providers and Preferences"
      0736649 bitbake: bitbake-user-manual-fetching.xml: Small wording change.
      157c80f bitbake: bitbake-user-manual-ref-variables.xml: Edits to PROVIDES variable.
      41b46d7 bitbake: bitbake-user-manual-style.css: Added permalink style for display
      d3e1ce6 bitbake: bitbake-user-manual-customization.xsl: Added support for variable permalinks.
      dd09b07 bitbake: template: Added XSL template to support variable glossary permalinks.
      ca77f37 bitbake: bitbake-user-manual-intro.xml: Edits to "Obtaining BitBake"
      296bb74 bitbake: bitbake-user-manual-intro.xml: Basic proofreading, grammar fixes.
      1adedec scripts: fix no newline at end of file
      c8391d0 ref-manual, yocto-project-qs: Fixed required Git to 1.7.8+
      d321a50 template: Added new line at end of file so vi does not throw error.
      5bdb231 templates: Added new line to avoid vi save warning.
      8c26482 ref-manual: Added USE_VT variable description.
      9329d7c ref-manual: Added SYSVINIT_ENABLED_GETTYS variable description.
      cc8c7da ref-manual: Added the INITRD_IMAGE variable description.
      8d0d487 ref-manual, bsp-guide: Added cross-references for two variables.
      980ad4e ref-manual: Added the LICENSE_FLAGS_WHITELIST glossary description.
      68bd063 ref-manual, bsp-guide: Added several cross-references to LICENSE_FLAGS.
      a53950a ref-manual: Added the LICENSE_FLAGS variable description.
      08d68e5 ref-manual, dev-manual: Updates to support PTEST_ENABLED.
      2284771 ref-manual: Edits to INITSCRIPT_PARAMS variable.
      11bf70b dev-manual: Fixed a couple typos in the Template section.
      c74284d ref-manual: Some minor fixes to the QA Checks chapter.
      695946e ref-manual: Edits to OVERRIDES variable.
      0a1d343 ref-manual: Fixed link back into the BB manual.
      f8d3114 ref-manual: Edits to PROVIDES variable.
      c5ca7cd mega-manual: Added support for variable permalinks in the glossary.
      9eb3e85 documentation: Added permalink display styles to CSS files.
      6b5398f ref-manual: Added support for variable permalinks in the glossary.
      f47e967 template: Added an XSL template to support glossary variable permalinks
      c13d40a ref-manual: Added the BASE_LIB variable to the glossary.
      ece1d1a ref-manual: Added TUNE_PKGARCH_tune to the variable glossary.
      0a45b37 ref-manual: Added ABIEXTENSION variable to the glossary.
      9efc700 ref-manual: Added TUNEABI_OVERRIDE and TUNEABI_WHITELIST to glossary.
      5e63079 ref-manual: Added TUNEABI to glossary.
      359b9f4 ref-manual: Added TARGET_CC_KERNEL_ARCH variable to glossary.
      0d287cd ref-manual: Added TUNECONFLICT[feature] to glossary.
      2123c4d ref-manual: Added TUNEVALID[feature] variable to glossary.
      81a065b ref-manual: Added three new tuning variables to glossary.
      e2f04f4 ref-manual: Added TUNE_LDARGS and TARGET_LD_ARCH variables.
      590b6cf ref-manual: Added TUNE_ASARGS and TARGET_AS_ARCH variables.
      1c0229e ref-manual: Added TUNE_ARCH variable and edited TARGET_ARCH.
      a548944 bsp-guide: Fixed typo.
      2fb201e profile-manual: Fixed bad title.
      01af798 dev-manual: Fixed a mult-line <ulink> cross-reference
      418af20 mega-manual.sed: Added line to process profile-manual.
      58744f8 groff: Fix build on Fedora 17 for 1.18.1.4
      ffd4e50 gawk: fix optional dependency mpfr
      8a18578 groff: remove redundant code snippet
      0ed5a13 python3: fix builtins imports
      247c9a1 adt_installer: Fix sed file not found error
      9e1c869 oeqa/selftest/_toaster.py: fix 'IndentationError' issues
      676c1f5 oeqa/selftest/toaster.py: renamed to _toaster.py
      6b5484d Revert "libusb: add missing build dependency on udev"
      61ab649 classes/kernel: Use full path for symlink in update-alternatives.
      ddb70af populate_sdk_base: Remove confusing echo
      b0a9f30 populate_sdk_base: add auto-completion in setup
      4d96116 classes/report-error: tweak summary message
      20561ed libusb: add missing build dependency on udev
      dbb4c73 test-dependencies.sh: Return non-zero return code when there was some failure detected
      4e2656d sstate-diff-machines.sh: Return non-zero return code when there was some failure detected
      442efc3 patch.bbclass: unset TMPDIR after use
      0ae5aad recipes-devtools: fix segfault in lib32-gcc with "." multilib_dir
      184dddf initrdscripts: Try to boot if boot label is unknown
      946fb18 distutils/distutils3: Fix bashism
      68824d9 u-boot-fw-utils: install config file
      c5713fe createrepo: RDEPENDS on libxml2-python
      a3cbd2d sudo: upgrade from 1.8.10p2 to 1.8.10p3
      8eea757 initramfs-framework: get rid of udev-utils
      d3f11f8 systemd: remove udev-utils, move 'udevadm' to udev package
      9bb5c74 udev: remove udev-utils, add 'udevadm' to udev package
      2ecb899 udev-cache.default: set PROBE_PLATFORM_BUS to "yes" by default
      e508220 udev: update init script for conditional probing of platform bus
      3da0162 own-mirrors: Add gitsm:// mirror support
      b7c077a gtk-doc: Add pkgconfig inherit
      c3c1ceb libsdl: Convert to use pkg-config in internal m4 macros
      0f182ed gst-openmax: Add missing pkgconfig inherit
      94dbe85 lib/oe/package_manager.py: Add processing for alternative SDK_OS
      e110809 gcc-cross-canadian: Add configure-target-libgcc
      d9cdeac populate_sdk: Fix TOOLCHAIN_TARGET_TASK_ATTEMPTONLY implementation
      03679b7 classes/package_rpm.bbclass: Fix SDK Suffix reference
      9729482 curl: Convert CURLGNUTL to PACKAGECONFIG
      224a183 ca-certificates: Update to 20140325
      2f9fd47 mobile-broadband-provider-info: Update SRCREV
      0edf844 man-pages: Update to 3.69
      4bbfa0d xcb-util-renderutil: Update to version 0.3.9
      6e392ab curl: Update to 7.37
      ee14096 gnupg: Update to 2.0.23
      9624793 liburcu: Update to 0.8.4
      c23e597 libusb1: Update to 1.0.19
      1bcd736 sqlite3: Update to 3.8.5.0
      02a6b7b u-boot: Optionally deploy an environment or script file
      f3d2e32 cmake.bbclass: restore OECMAKE_SOURCEPATH
      540b7a1 binutils: Add fix for recent patch on older gcc
      ad07178 binutils: Apply the proper fix for PR 16428
      7f6a92b oe-pkgdata-util: fix help text
      50264f7 list-packageconfig-flags: improve option parsing
      1ed4c5d list-packageconfig-flags: filter out doc and defaultval varflags
      2b4e150 scripts: consolidate code to find bitbake path
      3c7b5ec syslinux: fix isohybird overflows on 32 bit system
      cc480ea nfs-utils: fix the --with-statdpath= flag
      df7f584 gummiboot.bbclass: Ensure MLPREFIX is applied to depends flag
      6d20145 grub-efi.bbclass: Ensure MLPREFIX is applied to depends flag
      e5b5239 syslinux.bbclass: Ensure MLPREFIX is applied to depends flag
      cef0d82 eglibc (2.19): fix hardcoded /sbin path
      d0f01d8 initscripts: update populate-volatile.sh
      953b01e nss-3.15.1: fix CVE-2013-1739
      b2aa82c mesa.inc: remove '-' suffix in substitution of package names
      f197918 dbus-test: fix incorrect checksum
      d340865 mkefidisk.sh: Allow symlink for device
      1f0817c iproute2: upgrade to 3.15.0
      135ad14 harfbuzz: upgrade to 0.9.29
      0a4c876 bluez5: upgrade to 5.20
      e612e18 scripts/test-remote-image: add value check for rootfs fstype, change method name used.
      7b45316 oeqa/targetcontrol.py: Separate the matching of supported image fstypes from the resulting value check.
      d7b3683 meta-yocto-bsp: oeqa/controllers: add GrubTarget
      809350a init-install-testfs: create signature file for master image
      a8f453d init-install-testfs: fix typo
      566cba1 oe-core/init-install-testfs.sh: do not overwrite /etc/mtab if the link already exist
      94fea43 init-install-testfs: add grub serial line support
      7c1a975 bitbake: toaster: Fix spacing and layout in no image files notification
      fee3a88 bitbake: toaster: display message if no images are generated
      457091d bitbake: toaster: Add performance testing script
      7ccbea9 bitbake: toaster: refactor the target page
      f3d0846 bitbake: build.py: Ensure shared work siginfo files are written to the correct location
      3df8773 sstatesig: Add try/except around the stat calls
      2fcaad2 sstate: Fix shared work preconfigure task handling
      d95ada9 poky.conf: Add gitsm PREMIRRORS
      8afa4e7 local.conf.sample: Add sdl to nativesdk qemu PACKAGECONFIG
      5b1c329 bitbake: bitbake-user-manual-fetching.xml: Grammar, typo, and tweaks.
      8be77bb bitbake: bitbake-user-manual-style.css: Removed dead .PNG file
      7455139 bitbake: bitbake-user-manual: Added permalink support.
      c65de86 bitbake: bitbake-user-manual-customization.xsl: Removed stale TOC variable.
      d87cb56 bitbake: bitbake-user-manual-fetching.xml: Edits to the Git Submodule fetcher section.
      77166a2 bitbake: bitbake-user-manual-fetching.xml: Added new Git Submodule Fetcher section.
      655e2ba dbus: don't override EXTRA_OECONF
      dae258a kernel-module-split: Fix KERNEL_MODULE_AUTOLOAD handling
      2934b25 lttng-modules: update to 2.4.1-stable latest
      3d97232 ref-manual: Edits to several tasks that do a bit of "cleaning"
      d785a16 dev-manual, yocto-project-qs: New section on working with source files.
      45a1c42 kernel-dev: Edits to "Working with Out-of-Tree Modules"
      5112dbd dev-manual: Edits to "Creating a Custom Template Configuration Directory"
      99caeda ref-manual: Added new section on general migration points.
      7dd70a8 ref-manual: Corrected wrong class name.
      daf8183 ref-manual: Fixed a typo in the IMAGE_TYPES variable.
      5a143d8 ref-manual: Edits to the FAQ entry on getting source and firewalls.
      f82569f ref-manual: Fixed a link to the BitBake User Manual.
      ac6bdb4 dev-manual, kernel-dev: Provides some cross-reference to "clean" stuff.
      cf0be83 ref-manual: Expanded on the "clean" tasks.
      a92fcf1 documentation: Updated style sheets to remove unused .PNG files.
      d994d0b ref-manual: Edits to "atom-pc Board Support Package (BSP)" section.
      72beb19 ref-manual: Added ptest default build info to migrating section.
      4ff75a5 ref-manual: Fixed a typo in one of the QA descriptions.
      ad76aa0 dev-manual: Small edit to locating the race failure.
      7755de2 dev-manual: Second draft of make race section.
      1daa2c0 dev-manual: First draft of new section on debugging race conditions.
      a19f575 dev-manual, kernel-dev, ref-manual: Updated task name usage.
      50af2dc ref-manuals: Edits to the STAGING_DIR_HOST variable.
      088da28 ref-manual: Edits to some STAGING* variables.
      1657abe ref-manual: Added 17 new STAGING* variables to the glossary:
      66e3891 template: Removed the "d:" character namespace prefix.
      0f6128e kernel-dev: Updated some TOC generation XSL parameters.
      0614ea7 mega-manual: Added TOC control.
      1d870a7 kernel-dev: Added an embedded section.
      2f7fc00 mega-manual: edits to make the TOC better.
      6aaab1a yocto-project-qs: Added XSL templates to support permalinks.
      e62a5aa profile-manual: Added XSL templates to support permalinks.
      8a072df kernel-dev: Added XSL templates to support permalinks.
      3c22ec9 dev-manual: Added XSL templates to support permalinks.
      705027d bsp-guide: Added XSL templates to support permalinks.
      439c776 adt-manual: Added XSL templates to support permalinks.
      5aa464c ref-manual-customization.xsl: Changes to custom layer to support permalinks.
      90497d8 template: Added XSL stylesheets to support permalinks.
      1f6c99d yocto-project-qs: Removed specific sato 50 Gbyte note
      b503491 yocto-project-qs: Edits to "What You Need and How to Get It"
      926a8ee bsp-guide: Edits to "BSP Layers" section adding locator info.
      10996cc yocto-project-qs: Fixed inconsistency with storage spec.
      d9ce6c7 dev-manual: Edit to "Package Archtiture" section.
      65cf76c kernel-dev: Added new "Building Out-of-Tree Modules on the Target" section.
      3cb0463 dev-manual: Edits to "Writing a New Recipe"
      59b50ea dev-manual: Edits to "Creating a Custom Template Configuration Directory"
      95a5fad dev-manual: Edits to the "Understanding Recipe Syntax" section.
      d57b5e5 ref-manual: Updated the do_fetch closer look for checksum behavior.
      a456afa dev-manual: Updates to the "Understanding Recipe Syntax" section.
      84ee8c6 ref-manual, dev-manual: Updates for custom template configuration directory.
      fae1d7d dev-manual: Added reference to QA checks in the "Packaging" section.
      1b68137 ref-manual: Reorded LSB image types to be together.
      f1dc91c ref-manual: Edits to the IMAGE_DEVICE_TABLES variable.
      a3b8282 dev-manual: Edits to the "Making Images More Secure" section.
      e891596 ref-manual: Edits to the "Images" section.
      2aba525 ref-manual: Updates to several variables.
      f339491 linux-yocto/3.10: update to v3.10.43
      869e3d7 linux-yocto/3.14: enable mpc8315e NAND and Yaffs2 gcc 4.9 fix
      3b65c42 linux-yocto/3.4: update to v3.4.91
      c9743d3 linux-yocto/3.14: update to v3.14.5
      ddab1a5 linux-yocto/3.10: update to v3.10.41
      053620a meta-yocto-bsps: update 3.14 SRCREVs
      79e7636 mpc8315e-rdb: add the example about booting from jffs2 root
      e3dc178 mpc8315e-rdb: add the jffs2 image support
      7eb1230 mpc8315e-rdb: bump to linux-yocto 3.14
      55b4cff ghostscript: fix sizeof(GX_COLOR_INDEX_TYPE) not equal to ARCH_SIZEOF_GX_COLOR_INDEX on mips
      24ca3ae ghostscript: upgrade to 9.14
      1709ec7 qmmp: upgrade to 0.7.7
      3ea6ebb directfb: upgrade to 1.7.4
      cb25932 libnewt/libnewt-python: upgrade to 0.52.17
      55c8588 controllers/edgeroutertarget.py: enable dynamical determination of rootfs type
      1655fe2 controllers/beaglebonetarget.py: enable dynamical determination of rootfs type
      d5deca2 beaglebonetarget.py: Add support for get_extra_files() classmethod
      e105c82 maintainers: Update directfb/ghostscript/libnewt/qmmp ownership
      02eb862 hwlatdetect: fix PV
      a37e09e hwlatdetect 0.85: fix variable ordering
      14058e8 dpkg: Security Advisory - CVE-2014-3127
      4eea29a dpkg: Security Advisory - CVE-2014-0471
      c44d7b5 libtiff: Security Advisory - CVE-2012-4564
      9d40ce5 libpam: Security Advisory - CVE-2014-2583
      6aa8d74 package_ipk.bbclass: Support hierarchical feed
      5a6f1c0 perf: add slang to the dependencies
      317224e Revert "populate_sdk: verify executable or dynamically linked library"
      ee0f647 relocate_sdk: Skip to do relocation if the file size is less than 64 byte
      9f7d599 cups: enable cups-str4402.patch
      d69608c dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10
      7f8a53a kexec-tools: fix warning about patch could not be found
      01fb5bb wget: use GnuTLS instead of OpenSSL
      4dae6c1 directfb: fix-compilation-with-zlib.patch merged upstream
      c7bfbab gawk: ensure cross compiling doesn't try to remove host files
      f6ca3ce tzcode: update to verison 2014e
      b4b5443 tzdata: update to version 2014e
      f2a104d archiver: create dir 'B' explicitly while WORKDIR changed
      e95d2f2 image-vmdk.bbclass: set timeout to 1 second
      48b1390 systemd: check IFLA_VLAN_PROTOCOL
      362ef0a wpa-supplicant: upgrade to 2.2
      763331d connman: upgrade to 1.24
      79a3a77 gcc-configure-common: Address problems with gengtype
      c56c9a2 kernel-module-split: Add support for KERNEL_MODULE_AUTOLOAD and KERNEL_MODULE_PROBECONF
      3476a49 binconfig-disabled: Add class and use
      3a88df9 alsa-tools: Add missing pkgconfg dependency
      f736833 maintainers: Update package ownership
      5cc9702 neard: fix more parallel build issues
      a08ef9a native.bbclass: Properly define directories
      6ad8d64 bitbake.conf/qemu: Move QEMU_OPTIONS to qemu.bbclass
      0404123 qemuwrapper-cross: Use QEMU_OPTIONS
      7b0e2e9 bitbake.conf: Add QEMU_OPTION for ppc7400 as used by qemuppc
      ce4cd2c git: don't hardcode the full path to perl
      9cfd10d buildstats-summary.bbclass: Import useful bbclass from meta-mentor
      62cf222 git: revert to wrapper based relocation
      5d6ffdc busybox: handle syslog related files properly
      a7d0c85 curl: control ipv6 support based on DISTRO feature
      d76e718 gstreamer1.0-rtsp-server: depends on libcgroup and gstreamer1.0-plugins-base
      634c19e stat: use update-alt for stat
      bcef589 e2fsprogs: use update-alt for chattr
      03def88 texinfo-dummy-native: Fix dummy scripts failing when paths contain capital Es
      5452824 default-distrovars.inc: Remove unused variable 'LIMIT_BUILT_LOCALES'
      88b8075 default-distrovars.inc: Remove unused variable 'LIMIT_BUILT_LOCALES'
      445bd3b dbus: fixed mode if systemd service file
      b462621 dbus: disable usage of dbus-glib explicitly
      9713dcc bluez5: Force obex.service in /usr/lib
      6467fb3 elfutils: Fix debugedit failure in grub
      ec22f56 git: fixed typo in 'libexecdir' varname
      7c7a25c scripts/test-remote-image: Add script for running runtime tests on remotely built images
      5456f0e controllers/masterimage.py: Make testimage kernel naming pattern universal
      4bc0206 oeqa/controllers/testtargetloader.py: add 'import os'
      a5aa889 targetcontrol.py: Add a classmethod to get extra files needed by the target controllers
      ac75630 core-image-testmaster.bb: add bzip2 to image
      41d3000 masterimage.py: enable dynamical determination of rootfs type
      af38422 targetcontrol.py: make possible dynamical determination of rootfs type
      60846a0 kexec-tools: Refine kdump device_tree sort
      f51c639 oprofile: Determine the root home directory dynamically
      36c3e92 perf: split packging
      949953d perf: fix broken shell comparsion in do_install
      82fc96d nfs-utils: Do not pass CFLAGS to gcc while building
      6f0eb99 sed: enable ptest support
      bdf7343 v4 cups: Shouldn't link against libgcrypt without using gcrypt functions
      d58401c texinfo.bbclass: native/cross uses dummy texinfo; target uses host's Texinfo.
      0a4ba77 texinfo-dummy-native: Create recipe w/ scripts to stand in for Texinfo utils.
      a681558 texinfo: Use texinfo-replacement-native as an alias for texinfo-native.
      51d450f rootfs.py: change the logic in _uninstall_unneeded
      e163522 bitbake: toaster: build control functionality
      87b9927 bitbake: toastergui: fix built ETA calculation
      74cd8c3 bitbake: xmlrpc: add support for token reusing
      c7ae6bd bitbake: toaster: add function to get the database url
      3bd8e9a bitbake: toaster: create models for bldcontrol and enable it
      e09cb40 bitbake: toaster: initial bldcontrol application
      8e0c54c bitbake: bb/utils: fix contains_any()
      2261e9f bitbake: bb/tests/data.py: add tests for contains() and contains_any()
      065fb5d bitbake: cache.py: print debug info when EXCLUDE_FROM_WORLD
      dd50dfe rpm: Fix cpio 32 bit overflow issues on 64 bit inode filesystems
      b5a928a bitbake: toaster: add Project class models to orm
      9c3b53f bitbake: toaster: comment out bldcontrol migration command
      e0a3495 Revert "fontconfig: enable 64 bit file support"
      f365b56 update-rc.d: Allow to use different initscripts provider
      0ba1d79 nfs-utils: unset CFLAGS for testlk build
      e922be5 oe-core/init-install.sh: do not overwrite /etc/mtab if the link already exist
      df956a6 oprofile: Add PTEST regression testing to oprofile
      54f1528 gawk: remove dgawk and pgawk packages, merge gawk-common into gawk
      e1acb6d gawk: fix module paths
      7d8a0af libgcrypt: fix do_configure failed
      63f3c39 python-gst: link python shared library to config directory
      0670dd1 xorg-font-common.inc: remove shell debug option
      a934aeb oeqa/utils/commands.py: add support for postconfig option
      aed4216 gawk: fix libexec of the old 3.1.5 version
      f89b331 libgcrypt: workaround ICE failure on mips with '-O -g'
      b5f7bb1 xorg-xserver: disable DRI3 by default
      0db73b4 mesa: upgrade to 10.1.3
      0219124 mesa: add build-dependency on libxml2-native
      212f81d glib-2.0: fix paths to test binaries
      0c8a8e8 gdk-pixbuf: fix paths to test binaries
      23d8d2b openssl: fix ptests
      3255d58 openssl: upgrade to 1.0.1h
      66d5be2 bitbake: bitbake: show wildcard appends for bitbake-layers
      36a5f66 bitbake: toasterui: fix django settings environment value
      07cd9a3 bitbake: toaster: add project related models
      b68b74d bitbake: toaster: update toaster to run in managed mode
      b610aae bitbake: toaster: startup script standalone mode
      05cf6fe bitbake: toaster: startup script noweb mode
      89fe052 bitbake: toaster: read database settings from the environment
      506b5bd bitbake: uievent: retry on handler registration failure
      e89db13 bitbake: xmlrpc: client - remove fatal errors
      a5d01e9 bitbake: bitbake: move configuration reading code
      307d0e1 wic: check if BBLAYERS is valid before use
      567fec4 wic: default plugin type directory should be added only once
      dfd9aa5 gnutls: upgrade to 3.2.15
      b6ef8dc busybox: put udhcpc in background
      f39d876 update-rc.d/useradd: Add additional dependecies
      5f0634a generate-manifest-2.7.py: Add importlib
      22f422f autogen-native: upgrade from 2.18.2 to 2.18.3
      7c127aa file: upgrade from 5.17 to 5.18
      c2e6395 grub-2.00: remove our 40_custom
      ec53bfd grub-2.00: remove our 40_custom
      5a49a24 fontconfig: enable 64 bit file support
      0b7ea2a freetype: enable 64 bit file support
      e248594 autoconf: don't disable the autoheader warnings
      f852934 libxml2: fix python packaging for nativesdk
      f0b9a7c libarchive: avoid dependency on e2fsprogs
      7c0aa8f neard: fix for parallel build
      77a4ac2 gawk: upgrade from 4.0.2 to 4.1.1
      0fbc24b generate-manifest-3.3.py: Add importlib
      4e2cfdb gstreamer1.0-rtsp-server: Add recipe to support gst-rtsp-server
      7279de7 Added new test cases for bitbake modes (-e -n -p -r -R -c -k)
      85dea57 systemd: update a uclibc specific patch to avoid segment fault error
      22ff50f apr: upgrade to 1.5.1
      cc86e8b apr-util: upgrade to 1.5.3
      ff12256 readline-5.2: exclude autoheader
      00a8a54 readline-5.2: use upstream's aclocal.m4 as acinclude.m4
      ea4024a grep: upgrade 2.18 to 2.19
      6ae56f2 clutter: update to 1.18.2
      b7a33b7 cogl: update to 1.18.0
      c0a910b mesa-demos: Use DEMOS_DATA_DIR.
      65a8c4b mesa-demos: Add missing data files.
      4a440b0 mesa-demos: Build with system data files
      920642b Update tzdata to 2014d
      7e7a5de Update tzcode to 2014d for zic fix
      e711404 busybox: fix meta-yocto's bbappend's FILESEXTRAPATH
      f2b265f poky-tiny: Update kernel version to 3.14
      f9ac0cb image_types: Fix ubi filesystem return codes
      a681520 resolvconf: Update to 1.75
      aa40f4f cups: Update to 1.7.3
      2fe752c man-pages: Update to 3.68
      dfc9f90 libffi: Update to 3.1
      83e5ef8 libcheck: Update to 0.9.13
      fc1ac79 libxkbcommon: Update to 0.4.2
      d2e1238 x264: Update SRCREV to match commit in upstream git repo
      d047de7 grub_git: fix build warning->error
      1380d51 qt4: add patch for GIF denial-of-service vulnerability
      5bd2950 qt4: upgrade to version 4.8.6
      4b616f0 elfutils: upgrade to 0.158
      5f45b00 sanity.bbclass: Add libsdl-native check
      5c8effa oprofileui-server/oprofileui/pcmanfm: Add missing intltool-native DEPENDS
      8eac4e7 libcroco/libfm/menu-cache: Add missing gtk-doc class dependencies
      9955b77 gsettings-desktop-schemas: Add missing DEPENDS on gobject-introspection-stub-native
      c1de48a lame: Add missing DEPENDS on gettext-native
      e5cf31c recipes: Add missing pkgconfig class inherits
      905061e libfm: Ensure m4 directory exists
      4a6fb07 toaster.bbclass: exclude variable dependency on toaster postfunc
      7b0e38b qemu: upgrade to 2.0.0
      79ac26c v86d: fix for SeaBIOS VGA BIOS compatibility
      99006ef oeqa/controllers/beaglebonetarget.py: fix conditions for files copied to /boot
      af49a09 diffstat: patches have now been submitted upstream
      f9ac8c5 diffstat: fix autoheader warning due to missing AC_DEFINE template
      ae642d3 socat: upgrade to 1.7.2.4
      fd4a918 lrzsz: fix autoheader warning due to missing AC_DEFINE template
      32111c4 genericx86: switch to Linux 3.14 from 3.10
      60c40e5 bitbake: siggen: Print warning about tainted tasks
      8a43a6a bitbake: build/utils: Fix broken exception handling
      4a78f52 bitbake: bb.fatal: Raise a BBHandledException instead of exiting
      91a164c bitbake: event: Add SkipRecipe event to replace SkipPackage
      044296c bitbake: event.py: Allow passthrough of BBHandledException events
      ab29933 bitbake: cookerdata: Improve error handling
      a266670 bitbake: event: Fix event handlers to raise SkipPackage
      fec42d3 util-linux: add sulogin to alternatives list
      df1dc4e systemd: Upgrade 212 -> 213
      0716ce4 libogg: upgrade to 1.3.2
      dfe49a1 weston: make lcms explicitly configurable
      dd1dacf weston: fix make-lcms-configurable.patch
      482857a weston: drop superfluous --disable-lcms
      f11d67a gzip: Avoid host contamination during build
      4489f20 bitbake.conf: Set a dafault value for TUNE_PKGARCH
      fe5bc38 gcc: Clean up configure_prepend and fix for mingw
      3caca17 classextend: Fix crosssdk remapping for multilib
      dce200f opkg-utils: Update SRCREV
      1ef8100 combo-layer: fix revlist taking into account file_filter
      4562f06 update-rc.d: fix to handle priority numbers correctly
      80aece0 eglibc: Fix configure when re-building with gold
      1491c57 gcc, uclibc: Add/Fix Upstream-Status in patches
      b6bdb2b layer.conf: Add musl to safe recipes for exclusion
      32ed599 gnu-config: Let it recognise *-*-musl* triplets
      d73709f cross-canadian.bbclass: Recognise musl
      28bb9dd image.bbclass: Remove dependency on ldconfig-native for musl
      7e84ec1 multilib_header: Do not install mutlilib headers for musl
      e06c0a2 tclibc-musl.inc: Add musl specific distro policy file
      56d4f91 siteinfo, insane: Recognize musl specific triplets
      5d14f3c dev-manual: Updates to the "Making Images More Secure" section.
      8beca34 ref-manual: Updated example in extrausers.bbclass.
      74cd14c ref-manual: Fixed a link to the PACKAGE_ARCHS variable.
      d4f1951 ref-manual: Edits to the PACKAGE_ARCHS variable.
      a6db9e7 ref-manual: Edits to the SDK_PACKAGE_ARCHS variable.
      d9727ab ref-manual: Added the SDK_PACKAGE_ARCHS variable.
      78a88ea ref-manual: Further corrections to the PACKAGE_ARCH variable.
      870b846 ref-manual: Edits to PACKAGE_ARCH variable.
      98b42bc ref-manual: Added the PACKAGE_ARCHS variable.
      cb5cf01 ref-manual: Added the MACHINE_ARCH variable.
      0b3adff ref-manual: Added the SSTATE_MIRROR_ALLOW_NETWORK variable.
      1ddf03c ref-manual: Added EXTRA_IMAGECMD variable.
      e07d2ed ref-manual: Added IMAGE_CMD variable.
      888daaa ref-manual: Added the IMAGE_DEVICE_TABLES variable.
      6d7e85a ref-manual: Added the IMAGE_ROOTFS_ALIGNMENT variable.
      87280e0 ref-manual: Edits to the PACKAGE_PREPROCESS_FUNCS variable.
      c0e41a1 ref-manual: Added the PACKAGESPLITFUNCS variable.
      13afa78 ref-manual: Added the PACKAGE_PREPROCESS_FUNCS variable.
      bcd59ab ref-manual: Edits to the SDKMACHINE variable.
      9cb506b ref-manual: Edits to the UBOOT_MACHINE variable.
      4fac0dd ref-manual: Edits to the LDFLAGS variable.
      3cf5fee ref-manual: Edits to the TARGET_CXXFLAGS variable.
      d234817 ref-manual: Edits to the CFLAGS and CPPFLAGS variables.
      0b69f06 ref-manual: Added BUILD_OPTIMIZATION variable to glossary.
      1532bfd ref-manual: Edits to the SELECTED_OPTIMIZATION variable.
      57bd61e ref-manual: Edits to the "Making Images More Secure" section.
      bd5973e ref-manual: Edits to the ROOTFS_POSTPROCESS_COMMAND variable.
      3de0d39 ref-manual: Removed some extra space beyond the literal example.
      28d5925 dev-manual: Updated the "Making Images More Secure" section.
      8e9bfa5 ref-manual: another minor fix to the CPPFLAGS variable.
      92e80f2 ref-manual: Took out the links to the "Making Images Secure" section.
      74e21f3 ref-manual: More edits to some compiler passing variables.
      1a8718c ref-manual: Edits to a few variables in the glossary.
      acdafd5 ref-manual: Edits to the QA checks message section and insane.bbclass.
      3dd477c ref-manual: Applied review edits to QA messages and insane.bbclass.
      5948338 ref-manual: Added PRIVATE_LIBS variable and supporting links.
      566b9bc ref-manual: Added HOST_CC_ARCH variable.
      6b8dc79 ref-manual: Added TUNE_CCARGS variable and supporting links.
      40a1732 ref-manual: Added TARGET_CC_ARCH variable and supporting links.
      76e6f65 ref-manual: Added variables that pass compilers and their supporting links.
      1071980 ref-manual: Added BUILDSDK_LDFLAGS variable and supporting links.
      da5d2af ref-manual: Added TARGET_LDFLAGS variable and supporting links.
      19d2f6f ref-manual: Added the BUILD_LDFLAGS variable and supporting links.
      66625b1 ref-manual: Added LDFLAGS variable and supporting links.
      59d810e ref-manual: Added new chapter on QA error and warning messages.
      ba2221f ref-manual: Updated reference sections for environment setup scripts.
      c2852ea bitbake: utils: avoid printing traceback on ExpansionError during parsing
      429bb2a bitbake: fetch2: improve handling of two classes of URL parameter mistakes
      91b6edd bitbake: Revert "toaster: toaster oe-selftest support"
      6c62836 toaster: toaster oe-selftest support
      d87d9e6 Update tzcode to 2014c
      5c0975f Update tzdata to 2014c
      269c8a5 ethtool: use serial-tests config needed by ptest.
      963c8ea sstatesig: Move saferecipedeps handling to be earlier
      0aad3eb openssl: add openssl-CVE-2010-5298.patch SRC_URI
      b066f87 readline: use upstream's aclocal.m4 as acinclude.m4
      385b2d4 readline: exclude autoheader from autoreconf
      70400ff readline: add missing STRUCT_DIRENT_D_* symbols to config.h.in
      41ccbfc tcmode-default.inc: Default to using gcc 4.9
      88ddb5a gcc: add patch to fix errors with Decimal64 type
      c42df8c i2c-tools: Add i2c-tools to the core
      46c2aa4 linux-yocto-dev: Dynamic SRCREV update
      594097f linux-yocto/3.10: bump kver to v3.10.40
      c539cb5 beaglebone: enable the nowayout option for the watchdog
      b9cd001 linux-yocto-rt/3.14: update to 3.14-rt5
      3869eba linux-yocto/3.14: update to v3.14.4
      ce5aadc bitbake: fetch2/hg: Fix missing proto param for hg checkout with user and pw
      8cdc792 bitbake: bitbake-layers: show-cross-depends: add support for RRECOMMENDS
      8ae64ff bitbake: bitbake-layers: show-cross-depends: ignore self-satisfied RDEPENDS
      603f3fb bitbake: bitbake-layers: show-cross-depends: ignore global inherits
      e124c0f bitbake: bitbake-layers: show-cross-depends: add option to ignore a layer
      235f6c4 lighthttp: Use pkg-config for pcre dependency
      030e09f libarchive: Use pkg-config for libxml2 dependency
      191a2d3 libksba: Use pkg-config for dependencies
      3b3f0a6 gpgme: Update to ensure we pkg-config for dependencies
      ae5c64f libgcrypt: Use pkg-config for dependencies
      8557df1 libxslt: Use pkg-config for dependencies
      834245f gnupg: Convert to use pkg-config for dependencies
      81bb1ab libassuan: Improve pkgconfig support
      55d0ae6 libgpg-error: Extend pkgconfig support to m4 macros
      cd7b437 devshell: Add interactive python shell
      3bf2418 pseudo: Honor umask again
      da9dd69 cmake: Avoid accidentally including libacl.h
      19c6c2e ddimage: Support Mac OS
      f3d62a9 eglinfo: updated to compile with mesa10+
      77841c9 libxshmfence: add it to oe-core
      ea442cd dri3proto: add it to oe-core
      e01c99e distro_features_check.bbclass: fix searching whole list
      0882d26 weston: upgrade to 1.5.0
      87e2ce6 wayland: upgrade to 1.5.0
      2f4f644 perl: stop perl-modules recommending perl-ptest
      aba63ba babeltrace: fix alignment issue
      359d2de lttng-tools: fix alignment issue
      779d496 bluez5: upgrade to 5.19
      284a9b5 perl: fix for CVE-2010-4777
      c8645ca pseudo: handle fchmodat better, mask out unwanted write bits
      2b7f8db python-native : Add patch to fix configure error with gcc 4.8.
      b5784fe bitbake.conf: add default ${CPAN_MIRROR}
      5b8dbfd mirrors.bbclass: add ${CPAN_MIRROR} option
      45bbe35 initramfs-live-install: avoid using grub.d/40_custom
      ab33209 taglib: Force a disable of the floating dependency on boost
      894df44 guile: Update to 2.0.11 version
      da3a742 byacc: Update to 20140422 version
      7310361 flex: Update to 2.5.39 version
      7e7f6ef gst-ffmpeg: fix for Security Advisory CVE-2013-0849
      c884618 gst-ffmpeg: fix for Security Advisory CVE-2013-0850
      f52f366 gst-ffmpeg: fix for Security Advisory CVE-2013-0856
      e510fe6 gst-ffmpeg: fix for Security Advisory CVE-2013-0854
      34e1e94 gst-ffmpeg: fix for Security Advisory CVE-2013-0851
      dda4671 gst-ffmpeg: fix for Security Advisory CVE-2013-0858
      0255fd5 gst-ffmpeg: fix for Security Advisory CVE-2013-0852
      3577342 gst-ffmpeg: fix for Security Advisory CVE-2013-0845
      6a13411 gst-ffmpeg: fix for Security Advisory CVE-2013-0868
      e1134f7 gst-ffmpeg: fix for Security Advisory CVE-2014-2099
      7721eac gst-ffmpeg: fix for Security Advisory CVE-2013-0865
      46a9ffc gst-ffmpeg: fix for Security Advisory CVE-2014-2263
      1532ea0 distro_features_check.bbclass: fix wrong indentation
      122079e bitbake: data_smart: Fix an unusual variable reference bug
      bf9ff3d bitbake: toaster: reduce redundant foreign key lookups
      defe227 bitbake: toaster: sort columns properly after edit columns
      8a8d717 bitbake: toaster: toaster oe-selftest support
      bb86520 cups: fix for cups not building without avahi
      5eb03b6 harfbuzz: upgrade to 0.9.28
      32a811f wic: add support to look in all layers and get plugins
      8af57a6 wic: add support to look in all layers and get .wks file
      ac9707c libav: upgrade 9.x version to 9.13
      646fd85 libav: upgrade 0.8.x version to 0.8.11
      cdaee02 runqemu-internal: add "console=ttyS0" to ramfs image kernel parameters
      250b58a quilt: Update to 0.63 version
      0a23586 libpcre: Update to 8.35 version
      00846f6 openssl: fix for CVE-2010-5298
      7719f58 tiff: fix for Security Advisory CVE-2013-4231
      058ce93 nss: CVE-2013-1740
      64f8174 nss: CVE-2014-1492
      09f471b subversion: fix for Security Advisory CVE-2013-4277
      ab6c322 subversion: fix for Security Advisory CVE-2013-1847 and CVE-2013-1846
      128adcb subversion: fix for Security Advisory CVE-2013-1845
      722ff43 subversion: fix for Security Advisory CVE-2013-4131
      e8d6c87 subversion: fix for Security Advisory CVE-2013-4505
      4fc1cff subversion: fix for Security Advisory CVE-2013-1849
      210460d screen: fix for Security Advisory CVE-2009-1215
      27aba0a Screen: fix for Security Advisory CVE-2009-1214
      901a28b lttng-modules: Fix build with older kernels for 2.3.3 as 2.4.0
      8293f56 initrdscripts: fix for /run/media
      77b4b25 init-live.sh: list block devices correctly
      1899511 udev-extraconf: fix the misuse of /run/media
      438b866 packagegroup-core-lsb: fix warning text
      31c338c pango: enable ptest
      a62e952 syslinux-native: fix parallel building issue
      b664c86 libusb1: disable floating dependency on udev
      0e2777f maintainers.inc: js package removed
      e759e4d README: add maintainers section for hardware reference boards
      09edf20 bitbake: fetch2/gitsm: Documentation improvements for gitsm:// fetcher
      874d81a gstreamer/lame: Better gcc 4.9 fix
      4152ac0 rt-tests: restore erroneously deleted patch files
      ac1acab curl: remove inapporpriate file from curl release
      6744815 libusb1: Update to 1.0.18
      85f51bb mips: add tune file for mips32r2 (only hard-float)
      2134fe8 libsdl2: upgrade to 2.0.3
      113d53a dropbear: add missing patch header
      98c7754 nfs-utils: upgrade to 1.3.0
      882f0aa ethtool: upgrade to 3.14
      0158dea openssh: move packaging definitions to the end
      944e261 openssh: update to 6.6p1
      5c89748 glib-2.0: Do not use readlink to set target paths.
      c5c11b0 bluez5: Update the bluetooth.conf
      f7a74e2 freetype: disable harfbuzz
      48fc1aa dbus: Update to 1.8.2 version
      53082b1 licenses.conf: add AGPL variations
      81cfed9 bzip2: fix ptest execution failure
      d6900a5 wic: Extend indirect string connection to support image names and rootfs
      bc10da0 wic: add find_artifact() to get a specific bitbake variable
      8387f1f wic: Move find_bitbake_env_line() to oe.misc
      bf7364e curl: make PACKAGES match with FILES/RRECOMMENDS
      9d2221f ca-certificates: generate CAfile for -native in do_install
      f518096 openssh: fix for CVE-2014-2653
      fbf63c3 openssh: fix for CVE-2014-2532
      939fce4 qemu: define PACKAGECONFIG[] for ssh2
      579964a gdb: add PACKAGECONFIG for babeltrace
      c989c6f mesa-demos: Specify the lib dir properly.
      098372a rt-tests: Fix warning flag typo
      1d13b58 pax-utils: upgrade to 0.8.1
      9238e53 rpm: Fix rpm -V usage
      fcd1491a adt_installer: run autoreconf before configuring opkg
      362b677 eglibc: remove usage of FILESPATH
      c631117 uclibc: remove usage of FILESPATH
      6a43ad9 u-boot: remove unused FILESPATH
      0c78776 python: remove usage of FILESPATH
      dd0442a gcc: remove usage of FILESPATH
      c8a6583 linuxdoc-tools: remove usage of FILESPATH
      d45466c qemu: remove unused FILESPATH
      7444b73 mesa: remove usage of FILESPATH
      a5cc0f6 xorg-lib: remove usage of FILESPATH
      bf35945 trace-cmd: refactoring recipe
      845a253 gstreamer: remove unused FILESPATH
      a20afe0 dbus: remove usage of FILESPATH
      abf8f0f systemtap: remove usage of FILESPATH
      56751ed git: Fix various makefile flags
      61e8e0f systemd: remove tcp-wrappers option
      92beb80 json-glib: upgrade to 1.0.0
      60e5953 python-numpy: add Signed-off-by to patches
      9fcc97c gdk-pixbuf: upgrade to 2.30.7
      f7eac57 freetype: upgrade to 2.5.3
      9557995 glib-2.0: upgrade to 2.40.0
      d5958a9 gst-openmax: fix build with GLib 2.40 onwards
      4055185 qemu/local.conf.sample: Add sdl PACKAGECONFIG
      1e5c722 ref-manual: Edits to the task chapter.
      7e5116d ref-manual: Bumped the YP revision in the note.
      f3dc906 ref-manual: Added more detail to the tasks chapter.
      084c784 kernel-dev: Added a link to the do_compile task.
      8e90933 dev-manual: Added links to new do_* sections.
      e867967 ref-manual: Added links to new do_* sections.
      2f4d072 ref-manual: Added new chapter on task documentation
      ab864d7 dev-manual: Edits to the "Understanding Recipe Syntax" section.
      1744a1e dev-manual: Edits to the "Understanding Recipe Syntax" section.
      f7a1612 dev-manual: Added new "Understanding Recipe Syntax" section.
      9943e33 mega-manual.sed: Changed the version string to 1.7
      d1594ea dev-manual: Added "Properly Versioning Pre-Release Recipes" section.
      95c6c26 documentation: Updated the manual revision history tables for 1.7
      0caa305 poky.ent: Changed variables to support the 1.7 release.
      50067e0 bitbake: fetch2/perforce: Ensure command has a default
      56cd778 bitbake: parse: Improve file inheritance logging
      c0bdb81 bitbake: knotty: Fix output printed to the user at debug log levels
      155e55e gstreamer1.0-plugins-good: add libxfixes and libxdamange to x11 depends
      ec47185 gst-plugins-good: add PACKAGECONFIG for x11
      2f5d519 gst-plugins-bad: add PACKAGECONFIG for schro, dc1394 and faac
      bc39193 bitbake: parse/ast: Show append logging at lower log level
      60436dc bitbake: fix cloning of mercurial repository with username and password specified in url
      76fd64f mesa-demos: Specify the lib dir to locate glut libraries
      bc19e91 classes/lib/oe: Fix cross/crosssdk references
      fe0219c systemd: Upgrade past 212 release
      a4d931e update-rc.d: Handle multilib case for initscripts
      47013aa rt-tests: bump version 0.87 => 0.89
      ebaf77d nettle: disable openssl
      5b17c5d libpng12: upgrade to 1.2.51
      a36f0b9 libsoup: upgrade to 2.46.0
      9b1d466 libtasn1: upgrade to 3.5
      f9421ca icu: upgrade to 53.1
      1b82c73 chrpath: properly handle rootdir with '..' in path
      a1bad24 libxcb: disable check to avoid floating dependencies
      6fcd765 librsvg: upgrade to 2.40.2
      c05066e util-linux: fix parallel build issure for PATHFILES
      bcb30d8 mirrors.bbclass: Add mirror site for savannah
      646b089 bitbake: toaster: modify SQL data type constraints
      09a1ff9 bitbake: toaster: fix migration code for MySQL
      1a10bd3 bitbake: toaster: fix span2 headings for packages
      1278267 bitbake: toaster: Make sure layer branch only shows when not empty
      961f622 bitbake: toaster: sort outcome and sstate columns by string value
      138ed54 bitbake: Fix refetch of local files when they are read only
      3189e74 attr: Fix uclibc builds
      4666045 gcc: Handle uclibc linker relocation for multilib support
      5992d29 openssh: add /var/log/lastlog to volatile list
      a091b76 separatebuilddir.inc: Drop, now obsolete
      43b0a2e sudo: upgrade from 1.8.9p5 to 1.8.10p2
      e7e4334 libxml2: fix CVE-2014-0191
      e846e0f kmod: update Upstream-Status for one patch
      6e0d7de openssl: update upstream status for a patch
      b537c2f perl: update ptest package dependency list
      bc1f98d package_manager: Fix NoneType Object on do_populate_sdk
      c100f0a package_manager: Fix Argument list too long
      88593cd x-load: remove recipe
      79cacae uclibc: Set MULTILIB_DIR based on baselib
      d30a5c2 libiconv: Fix B != S with uclibc builds
      a2e612c ptest: Work from PTEST_ENABLED, not DISTRO_FEATURES
      37dcf14 scripts/runqemu: avoid pipe with sed
      c6a5e6c initscripts: avoid pipe with sed
      1150ef1 sysvinit-inittab: avoid pipe with grep
      44ba076 dropbear: avoid pipe with sed
      4dd22fe apmd: avoid pipe with sed
      8de568a acpid: avoid pipe with sed
      77790c4 *.bbclass (shell): avoid pipe with sed
      5ae4aad tcl: cleanup
      cc9d01f rxvt-unicode: upgrade to 9.20
      cd6f819 babeltrace: upgrade to 1.2.1
      9bf4e65 mmc-utils: fix compilation failure for mips64 target.
      c13ffb9 ltp: enable PM and RT tests
      b72ab99 perl: fix missing Module::Metadata
      f3f7fec openssl: fix CVE-2014-0198
      28798f1 python3: Revert python-config to distutils.sysconfig
      bb07e85 python3: Substitute correct python version in shebang
      f88e6e3 distutils.bbclass: only modify *.py file if it contains path to be removed
      96e488b python3/gcc/autoconf: Fix Upstream-Status in some patches I authored
      0b4d895 base.bbclass: Fix multilib PREFERRED_VERSION handling
      a671ced bitbake: data_smart: Ensure all possible overrides are cached including those with '_' in the name
      9392fa8 tcmode-default: Fix up sdk related PREFERRED_VERSION variables after toolchain changes
      59ef976 tcmode-default.inc: Adjust for new toolchain component changes
      e6e7c28 linux-firmware: upgrade to commit dec41bce44e0dff6a2c3358a958fadf22bf58858
      df85f26 taglib: upgrade to 1.9.1
      920ca71 linux-yocto/3.10: mei.cfg: enable Intel chipsets
      8dc545c linux-yocto/3.14: update to v3.14.2
      5fa2504 linux-yocto/3.10: update to v3.10.38
      4aec869 linux-yocto/3.4: update to v3.4.88
      70b11e5 linux-yocto-custom: provide defconfig guidance
      ee4f09a kernel-yocto: quote kconfig mode check
      8de1de8 qt4: Explicitly disable sqlite2
      b84d791 ldconfig-native: also default to lib32 and lib64 directories
      e32543e serial-getty service: Add xterm as default TERM
      8b91e44 gdbm: enable ptest support
      563c329 defaultsetup: enable blacklist by default
      8592548 systemtap: update to 2.5 release
      010e6f1 grub git: update to latest git (grub-2.02-beta2-81-g4b8b913)
      1fe8f63 wpa-supplicant: add libgcrypt as a dependencie
      37610cc gnutls: update to 3.2.13
      220c7e0 nettle: add nettle to oe-core
      08a9594 libgcrypt: update to 1.6.1
      6464bcd xinput-calibrator: fix XDG launch
      8fc255d xdg-utils: reinstall xdg-terminal
      7743cd2 procps: Do not detect 32/64 bit compiler options
      03ce8a7 lttng-modules_2.3.3.bb: Fix build on ARM/gcc-4.9
      3a9092e mdadm: Fix build on gcc 4.9
      5f897ef oprofile: Update to 0.9.9
      3cf5a0e systemd: Fix build with gcc 4.9
      ab6f21f binutils: Fix building nativesdk binutils with gcc 4.9
      9f1f185 cairo: Fix build with gcc 4.9
      3d09475 gcc: Add 4.9 recipes
      7b78c364 cleanup-workdir: Fix crosssdk reference after addition of PN
      56a39e9 sstatetests: Use TUNE_ARCH instead of TARGET_ARCH
      5459af3 sstatetests: Update after binutils-cross name change with PN addition
      530e66c curl: Backport a fix for a build issue
      0304d92 bitbake: prserv/db: Avoid fsync() calls
      99c9b33 bitbake: persist_data: Avoid fsync() calls
      c1f4df4 bitbake: codeparser: Fix to better catch all getVar references
      dabd58b gcc-common: Ensure checksums don't change to match old behaviour
      a6df56d PR bumps to remove PRINC usage from meta-raspberrypi
      64df4e4 Add texinfo.bbclass; recipes that use texinfo utils at build-time inherit it.
      075e288 gcc-common: Only apply fpu settings to target gcc
      5e4db52 gcc-cross: Drop TARGET_CC_ARCH
      53ea374 cross: Update PKG_CONFIG variables after recent changes
      37c498a layer.conf: Exclude gcc-cross dependencies from checksums
      96ce3f2 base.bbclass: Silence PREFERRED_PROVIDER warnings for sdk builds
      cf4d30f tcmode-default.inc: Add default SDK PREFERRED_PROVIDERS
      f7bbe9c sanity: Bump BitBake minimal version to 1.23.0
      afcf8e8 bitbake: bitbake: Bump version to 1.23.1
      68efcde tcmode-default: Update PREFERRED_PROVIDERS
      11202d9 alsa-tools: Enable GTK support for X11, Wayland and DirectFB
      57acd08 meta-yocto-bsp: oeqa/controllers: add EdgeRouterTarget
      ceb5c4d meta-yocto-bsp: oeqa/controllers: add BeagleBoneTarget
      3a4bb1a oeqa: add proper handling for command errors where needed
      9e7b0ca scripts/contrib/dialog-power-control: add a trivial power prompt script
      d20eedb scripts/contrib/serdevtry: add script to handle transient serial terminals
      abdd8e7 classes/testimage: if start fails, don't try to stop
      74f2d8b oeqa/controllers/masterimage: more robust master image startup
      6cd18d7 oeqa/controllers/masterimage: add a serial control command
      bd64b91 oeqa/targetcontrol: restart method shouldn't be abstract
      cc4234e oeqa/controllers/masterimage: add a base class for hw targets
      d36c606 sqlite3: restore upstream version numbering
      81c4c89 lighttpd: upgrade to 1.4.35
      a4e61c6 gstreamer1.0-plugins-ugly: upgrade to 1.2.4
      179a6ff gstreamer1.0-plugins-bad: upgrade to 1.2.4
      4944ee8 gstreamer1.0-plugins-good: upgrade to 1.2.4
      0e93e91 gstreamer1.0-plugins-base: upgrade to 1.2.4
      e73fc82 gstreamer1.0-libav: upgrade to 1.2.4
      42bd3d9 gstreamer1.0: upgrade to 1.2.4
      943d593 telepathy-glib: upgrade to 0.24.0
      c4207f0 fontconfig: upgrade to 2.11.1
      e5423db xauth: upgrade to 1.0.9
      dfb817e nasm: upgrade to 2.11.02
      21a38eb kexec-tools: upgrade to 2.0.6
      81b9516 xtrans: upgrade to 1.3.4
      2d0fa5d xrandr: upgrade to 1.4.2
      187d6fd xproto: upgrade to 7.0.26
      707d147 gdb: upgrade to 7.7
      0b362a4 python-pygobject: upgrade to 2.28.3
      2a63f34 xserver-xorg: upgrade to 1.15.1
      ef08481 libdrm: upgrade to 2.4.53
      9aa7827 xf86-input-synaptics: upgrade to 1.7.4
      ec9f2cb oprofileui*: Update to latest git
      20634d1 lsbinitscripts: Update to 9.54
      4e81f27 util-linux: Update to 2.24.2
      ce2cf5e man-pages: Update to 3.65
      560e0a1 lib/oe/sdk: Ensure target directory exists before creating the link
      413ab0a base.bbclass: Update INCOMPATIBLE_LICENSE changes for gcc updates
      ecf2a8c gcc: Drop ARCH_FLAGS_FOR_TARGET usage
      f07b7c0 gcc-common/gcc-configure-common: Move gnu-configize to its own shared task
      2b851b9 gcc-target: Limit compile to host targets, don't build runtimes.
      e078edb binutils/gcc/gdb: Add TARGET_ARCH to PN for all cross recipes
      03a0f8e cross: Drop virtclass-cross OVERRIDE
      17daa2b bitbake: bb.utils, bb.codeparser: Add bb.utils.contains_any
      f98159f feature-arm-thumb.inc: set ARMPKGSFX_THUMB only when thumb is in TUNE_FEATURES
      985f818 feature-arm-thumb.inc: Suppress false warning
      107269d bitbake: codeparser: don't interact with the cache for subshells
      3d34b49 bitbake: fetch2: Cleanup file checksum generation, v2
      0f717ea bitbake: HG Fetch with username and password in url
      6ad25fc package_regex.inc: Changed, removed and added regexes
      2b09f5c mc: update to 4.8.12
      936218e systemd: Check for HAVE_POSIX_FALLOCATE
      59738ff distrodata.bbclass: Fix checkpkg functionality
      c0df4f6 ltp: update version to 20140422
      2b822a8 oeqa/utils: sshcontrol: realtime logging of output
      bdb07c6 tune-cortexr4.inc: Add thumb and arm to TUNE_FEATURES
      d19e29a feature-arm-thumb.inc, arch-armv4.inc: Add "arm" to TUNE_FEATURES
      af76e86 feature-arm-thumb.inc: Replace inner quotes with apostrophes
      af49e60 openssl: enable ptest support
      b3c688c sstate-cache-management: Minor cleanup of help text
      183dac4 bitbake: Revert "fetch2: Cleanup file checksum generation"
      a688c9c bitbake: bitbake-diffsigs: Fix runtime error when no arguments are given
      d103530 bitbake: fetch2: Cleanup file checksum generation
      c7c58db bitbake: fetch2/git: Stop git from triggering fsync() calls
      20e439e cross: Drop package tasks
      cc23069 uclibc: Add libgcc-initial to DEPENDS
      c446d4e default-distrovars.inc: Add libgcc-initial to the GPLv3 whitelist (same as libgcc)
      1528e59 Globally replace 'base_contains' calls with 'bb.utils.contains'
      b5606f3 Globally replace 'base_contains' calls with 'bb.utils.contains'
      eb76c48 Upstream-Status Cleanups
      cbf4607 bumps to remove PRINC use in meta-fsl-ppc
      6c931b4 initscripts: Fix PR reversal
      2bef523 dbus: fix a hard dependency about dbus-ptest
      20ded0a udev-extraconf: update mount.sh to use /run/media instead of /media
      62238e1 files/device_table-minimal.txt: cleanup
      3adc47f kernel: don't populate source symbolic link
      6e03bfc bind: add support for read-only rootfs
      9183987 opkg: Upgrade to v0.2.2
      4c14b09 Globally replace 'base_contains' calls with 'bb.utils.contains'
      08a38a7 Globally replace oe.utils.contains to bb.utils.contains
      f11e9e2 openssh: enable ptest support
      8a9c165 iproute2: upgrade to 3.14
      9f0ef56 harfbuzz: upgrade to 0.9.27
      380cb2d bluez5: upgrade to 5.18
      d288f8c connman: upgrade to 1.23
      5f993cb gcc-cross-initial: Separate out libgcc-initial
      ee758b6 gcc-cross: Improve handling of unwind.h
      44c8028 libgcc: Spit out common code into libgcc-common.inc
      5c9025e gcc: Convert to use hardlinkdir
      ded3fc6 utils: Add hardlinkdir shell function
      3be0213 build-appliance-image: Update to head revision
      370ae27 native.bbclass: Override TARGET_ flags too
      7f138d6 cryptodev-tests: recipe for cryptodev test suite based on OpenSSL
      8e12e0c cryptodev-module: recipe for out-of-tree cryptodev device driver
      51c6c42 cryptodev-linux: create common .inc file to be shared by module and tests
      3ee8805 cryptodev-linux: move to recipes-kernel to be shared with module and tests
      40fd8e6 tcf-agent: add systemd support
      870a316 ppp: add systemd support
      b45533c bind: add systemd support
      4593e1b cronie: add systemd support
      b882c0f report-error: Add posting in the public note
      965770c libnl: update to 3.2.24
      2a30974 sqlite3: Update to 3080403
      07d3c2f util-macros: update to 1.19.0
      8d2c337 libxkbcommon: update to 0.4.1
      49aa353 msmtp: update to 1.4.32
      61b7a62 man-pages: update to 3.64
      96f3279 lsbinitscripts: update to 9.53
      f6741e4 cups: update to 1.7.2
      d114770 help2man update to 1.44.1
      92d5c07 gsettings-desktop-schemas: add missing dependency on intltool-native
      66856e1 apr: do not try to use sctp.h
      e45da21 PR bumps to remove PRINC use in meta-openpli
      5c98e90 console-tools: Remove floating runtime dependency on flex
      a111ca6 oprofileui-server_git: add avahi-daemon to RDEPENDS list
      2b99c7d liberror-perl: add 0.17022
      144296f libpng: bump to 1.6.10
      2a129dd pixbufcache: add error exit in pixbufcache_sstate_postinst
      69b6eac autotools: Enable separate builddir by default
      68ef727 ref-manual: Added new section to the 1.6 migration section plus some 1.5 edits.
      4b5e855 meta-bsps: update to v3.10.35
      3be89ac yocto-bsps: update references to v3.4.85
      81a1b83 bitbake: bitbake-worker: Drop BBHASH variables
      249a24e bitbake: parse/ast: Optimise data finalisation
      39c5cfb bitbake: runqueue: Do not write out stamp files in dry_run mode
      75c6b78 bitbake: runqueue: Fix task weighting algorithm
      d8ef08c bitbake: runqueue: Fix handling of zero priority task
      5cbf231 bitbake: bitbake: toaster: Fix Empty tasks filter
      5345985 bitbake: bitbake: toaster: Fix total number of tasks in build dashboard
      8dd299b kmod: upgrade to v17 via git
      8285e78 mtd-utils: upgrade to 1.5.1+gitAUTOINC+12158de
      626458b at-spi2-core: upgrade to 2.12.0
      8752cb1 at-spi2-atk: upgrade to 2.12.0
      7455c17 atk: upgrade to 2.12.0
      c931a1b curl: upgrade to 7.36.0
      4cd6268 pango: upgrade to 1.36.3
      1af448d mklibs-native: upgrade from 0.1.38 to 0.1.39
      2732786 automake: upgrade from 1.14 to 1.14.1
      6560fa4 wget: upgrade from 1.14 to 1.15
      cf3d196 file: upgrade from 5.16 to 5.17
      451c751 lttng-modules: update to 2.4.1 version
      92bd019 grub-efi: Use a variable to specify built-in grub modules.
      920bfc3 openssh-sshd: host contamination fix
      edb5f34 grub git: workaround debugedit problems
      bb3f5ce make menuconfig work for recent xfce environment
      07cb1c0 linux-yocto/3.14: aufs, edgerouter config and -rt
      2b9660c recipe_sanity.bbclass: avoid error when running 'bitbake -e'
      e2661d7 scripts/send-error-report: simple hack to use proxy from the enviroment
      1cb95f7 icecc: don't create unnecessary 'ice' dirs in sysroots when disabled
      1f8d809 shadow: fix building systemd with useradd-staticids.bbclass enabled
      b093750 selftest: DiskMonTest: use a high value for free space
      4961972 libav: Add libsdl to DEPENDS only when x11 is enabled
      4beb639 libnotify: add dbus-glib dependency
      261b9e2 apr: remove the use of ${SHELL} to avoid bash/dash confliction
      cf8446c build-appliance-image: Update to head revision
      9035eb1 distro_alias.inc: update/sort alias information.
      02384f0 ref-manual: Pulled the item for forked packages out.
      57e8d56 bitbake: bitbake-user-manual-hello.xml: Edits to the "Hello World" Appendix.
      61a680f bitbake: bitbake-user-manual-hello.xml: First draft of "Hello World" appendix
      4687351 bitbake: bitbake-user-manual-hello.xml: Edits to environment for hello world.
      f1b9c7e bitbake: bitbake-user-manual-metadata.xml: Added section on pathname syntax
      ef7fac5 bitbake: bitbake-user-manual-ref-variables.xml: Edits to the BBPATH variable.
      45880c7 bitbake: bitbake-user-manual-ref-variables.xml: Fixed BBPATH example
      8f4b4e6 bitbake: user-manual-hello.xml: General edits
      1313bac bitbake: bitbake-user-manual-hello.xml: Fixed two broken links.
      ea4e822 bitbake: bitbake-user-manual-metadata.xml: New section on anonymous Python functions
      9889a91 bitbake: bitbake-user-manual-metadata.xml: Edits to flexible inheritance section.
      392de9d bitbake: doc: Rename user-manual -> bitbake-user-manual
      982aa36 ref-manual: Added package change info to the migration section.
      601d5f1 dev-manual: Fixed some "systemd" capitalization issues.
      3f0a863 ref-manual: Updated the list of supported distributions.
      0403353 documentation: Updated all the manual revision history tables.
      2648f5d dev-manual: Updates to "Performing Automated Runtime Testing"
      ac054da dev-manual: Changed GummiBootTarget to GummibootTarget.
      b7a1413 ref-manual: Added review comments to core-image-testmaster image.
      c4fec0d dev-manual: Edits to "Using the Error Reporting Tool"
      bf633eb ref-manual: Added core-image-testmaster to the list of images.
      15f128c dev-manual: Edits to "Using the Error Reporting Tool"
      bbc6c67 ref-manual: Fixed typo
      7ae3488 ref-manual: Re-ordered the insane.bbclass tests list.
      66c78db ref-manual: Added symlink-to-sysroot insane.bbclass tests.
      583ce2c dev-manual: Fixed typo for AUTOREV.
      ce9fb83 dev-manual, ref-manual: Removed VIRTUAL-RUNTIME note from most places.
      0c4d56c scripts/send-error-report: use a real server as the default
      a2f3991 toaster.bbclass: do not fail on non-existent files
      2cae5f7 u-boot: fix beaglebone boot issue with large kernel images
      ea90bd0 poky.ent: Changed the YOCTO_DOCS_BB_URL location.
      43de868 dev-manual: typo fixed.
      f3dccea ref-manual, dev-manual: Edits to running tests on hardware
      e63348f ref-manual: Edits to DISK_SIGNATURE variable.
      0055a7e ref-manual: Added warning about forking packages when upgrading YP
      ff50428 ref-manual: Updated the DISK_SIGNATURE description.
      fee60fb ref-manual: Removed note limiting tests to QEMU.
      a39e1f7 ref-manual: Edits to the module_autoload and module_conf variables.
      cc3f382 ref-manual: Updates to deal with installing packages in initramfs
      c42cadf ref-manual: Edits to module_autoload and module_conf variables.
      d40aae9 ref-manual: added module_autoload and module_conf variables.
      89dd163 bsp-guide: Updated the yocto-bsp example.
      e371eaf bsp-guide: Updated the yocto-bsp example.
      f5bd39b ref-manual: Updated KBRANCH to fix a reference to the linux kernel.
      7ad0253 ref-manual: Updated KBRANCH variable description.
      bebc72a bsp-guide: Updates to "Linux Kernel Configuration" section.
      693156e bsp-guide: Updated the "Hardware Configuration Options" section.
      680394f bsp-guide: Updated the "Example Filesystem Layout" section.
      91a0cf7 ref-manual: Extended the D variable description.
      750210b Extended description of the ${D} variable to better explain its purpose.
      9659789 dev-manual: Grammar fix to the Toaster section.
      ad3553b dev-manual: Applied Toaster section review edits.
      55fc974 ref-manual: Added TEST_EXPORT_DIR to glossary.
      028d760 ref-manual: Added TEST_EXPORT_ONLY to glossary.
      85087c9 ref-manual: Added TEST_LOG_DIR to glossary.
      a12b957 ref-manual: Added TEST_SERVER_IP to the variable glossary.
      dfa1bd8 ref-manual: Added TEST_TARGET_IP to the variable glossary.
      4db4dff ref-manual: Added TEST_TARGET variable description.
      f0e3476 dev-manual: Added new "Exporting Tests" section.
      ea11a0c dev-manual: Added new "Hardware" section for running tests.
      cc80d05 dev-manual: Moved list of qemu-specific run information
      7406f93 dev-manual: Updates to the "target" class attribute
      285ffd8 dev-manual: Updated the "Class Methods" section.
      eb578b0 dev-manual: Removed note about rm_work
      ae64c92 ref-manual: Added DISK_SIGNATURE variable description to glossary.
      9680453 yocto-project-qs: Substituting Beaglebone for Beagleboard.
      863cc74 poky.conf: Post release version bump
      1d2cfaa poky: Branch for 1.6 daisy release
      4ba4ffe bitbake: bitbake: Update to version 1.23.0 for master
      c3a216c bitbake: bitbake: Update to version 1.22.0
      915ec3d bitbake: cache: don't trigger reparse on recipes with wildcards in SRC_URI
      344feb1 linux-yocto/3.10: intel BSP configuration updates
      7d58ef3 linux-yocto/3.14: beagleboard black: USB, DRM config tweaks
      c3a0496 linux-yocto/3.14: intel configuration fixes
      1ac45f7 linux-yocto/3.10: intel-common: Add preempt-rt ktype targets
      4f62599 linux-yocto/3.10: v3.10.35 and emenlow boot fixes
      4c6d49f linux-yocto/3.4: update to v3.4.85
      0c282b6 sstate: Silence warnings when switching machines
      b1cefd9 selftest: DiskMonTest: use POSIX output for df
      3c77416 gcc: Fix a race over unwind.h
      97fd8c0 vala: inherit pkgconfig
      ee4f52e perf: Fix sysroot option to CC handling
      2966593 kernelshark/trace-cmd: fix syntax error of shell
      d1c17c5 openssh: fix sshd_config_readonly creation
      b24f5e8 image.bbclass: improve sed expressions for ssh_allow_empty_password()
      db80f79 README.hardware: update with Texas Instruments Beaglebone instructions
      a7d978c beaglebone.conf: configuration updates
      47bad42 poky.conf: Update SANITY_TESTED_DISTROS
      1f42d82 edgerouter: clarify diskboot instructions
      046a9ea bitbake: toaster: Allow toaster to start without pytz
      1eb84a8 poky.conf: Update SANITY_TESTED_DISTROS
      efa4a98 bitbake: toaster: add URI search path list
      d3e5632 bitbake: toaster: sort on size in detail pages
      dc7d3d2 bitbake: toaster: hide tasks without order or outcome
      74e2f85 bitbake: toaster: regex alternation filter caused django error
      f88a343 bitbake: toaster: fix filtering query for multiple filters
      b14482e bitbake: toaster: keep number of rows across searches
      5a29328 bitbake: toaster: show unique set-in files in configvar
      4b17947 bitbake: toaster: disable 'size over total' sort
      1d631fb bitbake: toaster: do not load all available timezones
      70288db bitbake: bitbake-selftest: add tests for local fetching
      68ec4c1 bitbake: bitbake-selftest: fix help message to include command line
      b0bf001 libpam: fix 64-bit pam plugins not installed when add to 32-bit image
      bb20d3a yocto-bsp: Update templates to 3.14 kernel
      9eb5249 eglibc: __slow_ieee754_sqrt{, f} functions for ppc e6500-32b
      467b19e busybox: fix a sh link wrong
      e34ad1e python: Fix CVE-2014-1912
      398a971 libx11: fix invalid preprocessing directive errors
      d06a10a freetype: fix multilib header conflict - ftconfig.h
      b3f7195 e2fsprogs: fix multilib header conflict - ext2_types.h
      8f683bf bitbake: bitbake: knotty: Clear footer before outputting to stderr
      327ed0b bitbake: fetch2: fix traceback when a wildcard matches a directory
      991af87 bitbake: fetch2: handle wildcards correctly when recording file checksums
      5dd1d75 openssl: Upgrade to v1.0.1g
      c0ac09a cmake: Improve method for not building ccmake
      68a55c8 ref-manual: Edits to fix up how GID and UIDs are handled.
      90d52bd ref-manual: Added useradd-staticids class and edits to some variables.
      9f1c18e dev-manual, kernel-dev: Replaced routerstationpro with edgerouter.
      7f6d83a documentation: Beagleboard replaced with Beaglebone
      cdbaa32 ref-manual: New variables to support static uid and gid values.
      97d7aeb ref-manual: Edits to the image-live class description.
      d4a2458 ref-manual: Updated the bootimg class description.
      9814bdf dev-manual: Updates to the Toaster section.
      4faffb0 ref-manual: Added new migration section on BB console output.
      b36f26d ref-manual: Typo fix to CFLAGS 1.6 migration section.
      a8a0e80 ref-manual: Edits to the 1.6 migration section.
      b02932e dev-manual: Edits to "Providing the Source Code" section.
      20c1cc0 ref-manual: Removed archive* class and replaced with archiver class.
      0ff499a ref-manual: Edits to the copyleft_compliance class.
      757344c ref-manual: Edits to the PYTHON_ABI and PYTHON_PN variables.
      4644a88 ref-manual: Edits to distutils3 and setuptools3 class descriptions.
      6c8b19b ref-manual: Added setuptools3 class description.
      60041e0 ref-manual: Added distutils3 class.
      5ce6d8a ref-manual: Updates to PYTHON_ABI and PYTHON_PN variables.
      4db0d5f package.bbclass: Add CONFFILES to list of package specific variables
      38ef912 toaster.bbclass: image file is missing a "/"
      ac34639 documentation.conf (LICENSE): tiny addition
      bbc9aaf bitbake: hob: add "recipes/images/" to BBFILES when Hob is launched
      1094be0 bitbake: fetch2: avoid cache ignoring missing files
      bb66113 bitbake: fetch2: Fix bug in file checksum generation
      025021e test-dependencies.sh: Redirect stderr
      cb68ed9 systemtap: Move to current HEAD
      1bc2b2a sysvinit: fix the bootlogd init script header
      e4ec48a busybox: Specify '-nostdlib' when linking to a .o file.
      32acba5 busybox: Use CCLD
      a8ab7a1 useradd_base.bbclass: avoid the traffic crowding
      396e215 bitbake: toaster: added covered task list
      1029726 bitbake: toaster: correct package count
      9db4332 bitbake: toaster: Fixes to the build dashboard
      37e2670 bitbake: toaster: Make tables happy in Chrome
      7322ddd bitbake: toaster: Fix the empty packages alert
      9e81244 bitbake: toaster: Fix "Recent builds" links
      4707c7c bitbake: toaster: catch IndexError error in dictionary lookups
      52ed413 bitbake: toaster: Changes to help text
      6831b7a bitbake: toaster: Remove html validation errors in tasks.html
      53b781f bitbake: toasterui: save warnings from non-build context
      1afb2a2 bitbake: toasterui: avoid variable name conflict
      86aefcd bitbake: toaster: Update API
      0d39bee bitbake: toaster: link task order to right tasks page
      bf8dcb4 siteconfig: Unbreak after sstate changes some time ago
      d62302f sstate: Remove name sstate parameter
      633818c sstate: Fix an error handling the taskname
      dba6cdf README.hardware: tweak edgerouter instructions
      fa3574b README.hardware: drop routerstationpro in favour of edgerouter
      501ea83 local.conf.sample: drop routerstationpro in favour of edgerouter
      1e1f252 routerstationpro: drop
      09d5f9f ref-manual: Added PYTHON_ABI and PYTHON_PN variables to glossary.
      5d6dcdb dev-manual, ref-manual: Added notes for Systemd-based images.
      6ff92a6 dev-manual, ref-manual: Additions for making an image more secure.
      ef7f9ab ref-manual: Edits to the SDKMACHINE variable.
      35869b5 ref-manual: Updated the "x32" section.
      72747d2 ref-manual: Updates to NOISO variable.
      7b1fc30 ref-manual: Updated bad conf/distro/<distro>.conf directory.
      89e4e72 ref-manual: Added the migration section for 1.6.
      583b6a4 ref-manual: Edits to RDEPENDS variable.
      2741cd5 ref-manual: Added links for some new variables.
      4f086df ref-manual: Edits to the COPY_LIC_DIRS variable in the glossary.
      3e52a18 ref-manual: New descriptions for IMAGE_TYPEDEF and COPY_LIC_DIRS.
      f961183 ref-manual: Added COPY_LIC_MANIFEST variable to glossary.
      56c776d bitbake: cooker: Overwrite IMAGE_BASENAME to default in custom image
      0723102 bitbake: hob: fix customization of empty image recipe
      f41241c bitbake: hob: adding INHERIT += " testimage " affects image recipes list
      21f9cc2 gcc: enable multilib setup for powerpc64 arch
      828b675 util-linux: fix parallel build issue
      fffd116 SDK default deploy directory
      660c27f poky.conf: added Poky 1.6 as tested distro
      b5ebb5e poky-tiny: enable LFS for uclibc
      082a417 bitbake: toaster: fix mis-detection of targets as images
      432505d bitbake: toaster: fix help texts not showing for most tasks
      fee85f0 gtk+3: set proper FLAGS for native
      7c0ca0b coreutils: fix search paths for libstdbuf.so
      90c2817 libarchive: Add PACKAGECONFIG for lzo
      5d63aac selftest/sstatetests.py: Added 'populate_lic' to ignore_patterns
      b996f22 python: fix build error with Readline 6.3
      69a88da rootfs.py: introduce USE_DEVFS check
      5d93e04 cmake: Remove dependency on ncurses
      85783e5 cmake-native: Stop building ccmake
      84aeaa4 Revert "qt-mobility: remove /usr/lib from ld rpath-link option"
      d2c395a send-error-report: show response
      de4d7c3 gcc-target: remove infodir
      c04e085 ed: remove infodir
      71bed65 cmake: Add ugly hack from meta-qt5 to prevent cmake trying to detect qt5
      342322c sanity: testimage needs DISPLAY set only for qemu targets
      6d6d0b8 systemd: backport patch to avoid assertion failures
      d67e087 dbus: backport memory leak patch for error when listing services
      ed7afe2 dbus: backport fix for bus activation under systemd session
      cd13b76 alsa-tools: Fix build without x11
      a5775ab bitbake: user-manual-metadata.xml: Added new section on mapping functions.
      3e528d3 Make ppce300c3 tune hard-float by default
      8b0ecee eglibc_2.19: Make ppc e300c3 benefit from 603e sqrt optimizations
      1eae7d2 gdk-pixbuf: pass GDK_PIXBUF_FATAL_LOADER where relevant
      41f2f8e gdk-pixbuf: add an option so that loader errors are fatal
      a684808 libpam: fix multilib packaging issue for pam-plugins
      8b63ff3 wayland-native: disable unused macro checks to fix build issue on Centos5.x
      ae7a079 kmod: fix O_CLOEXEC not supported on old kernel
      c48aff8 openssl: Fix pod2man des.pod error on Ubuntu 12.04
      3d456fc Qemu:Arm:versatilepb: Add memory size checking
      3008b12 qemu: Add addition environment space to boot loader qemu-system-mips
      f4dc1e5 core-image-lsb: enforce pam as a needed distro feature
      1588b02 image/image-prelink/image-mklibs/sanity: Drop pointless EXPORT_FUNCTIONS
      02e455f qemux86-64: re-enable paravirt guest, bring it in sync with qemux86
      377ce42 xorg: Fix for CVE-2013-6424
      30959dd image.bbclass: add function to disable SSH DNS Lookup for Qemu
      7f14950 gcc: changed multilib options handling
      f688f6b bitbake: bitbake: cooker: mark setFeatures command as read-only
      d5a0a6b documentation: Updates to get rid of PRINC variable.
      9ba7a77 ref-manual: Updates to the IMAGE_TYPES variable description.
      163a4e5 ref-manual: Updated to PACKAGE_GROUP and addition of FEATURE_PACKAGES.
      5cf7a54 ref-manual: Added the build/tmp/work-shared directory.
      f82e035 ref-manual: Added the build/tmp/sstate-control directory
      ed997db ref-manual: Added the meta/conf/machine-sdk directory
      e81d0bd dev-manual, ref-manual: Removed meta-hob layer from docs.
      11dad29 ref-manual: Added top-level meta-selftest directory
      4638e52 bitbake: toaster: secondary sort key as table's default order
      362b71a bitbake: toaster: unbuilt package dependency formats
      6985696 bitbake: toaster: Update help text in format_vpackage_namehelp tag
      3e15609 bitbake: toaster: Match search results form to no results form
      694da9c bitbake: toaster: Increase animation duration
      c759892 bitbake: toaster: Fix the fade out animation
      bb1e3de bitbake: toaster: Small tweaks to the packages included interface
      a1e6fb2 bitbake: toaster: Remove trailing spaces from 'name'
      3719ecf bitbake: toaster: Show "No builds found" in the builds table
      7920219 bitbake: toaster: disable configvar sorts for value and files
      fd4579e bitbake: toaster: use deploy_dir var to obtain the license.manifest path
      85eb8db bitbake: toaster: Display task description
      8f791ce bitbake: toaster: fix timezone detection
      e1bfb5d bitbake: toaster: update saving sstate task data
      cd8541b bitbake: runqueue: Address issues with incomplete sstate sets
      d67f25d bitbake: runqueue: Fix sstate task dependency problems
      dee07be beaglebone: fix typo in the U-Boot config name
      a34497a meta-yocto-bsp: Bump layer version after the BSP changes
      7254dfb Drop beagleboard, replaced by beaglebone
      af1e58a local.conf.sample: Update for beagleboard -> beaglebone
      8fe1e24 beaglebone: Switch to linux-yocto 3.14
      76b1d59 beaglebone: add OE machine definition for use with linux-yocto kernels
      bd072d8 poky: add edgerouter information to README.hardware
      4226f9c yocto-bsps: edgerouter: explicitly set preferred version
      09b489c yocto-bsps: Add a new BSP to support edgerouter
      b8f2106 yocto-bsps: update reference BSPs to v3.10.34
      316e058 poky: set qemu BSPs preferred version to 3.14
      aa27260 meta-yocto-bsp: populate 3.14 bbappend
      17a18b8 linux-libc-headers: remove 3.10 recipe
      7eeaf1b libc-headers: set TC default to 3.14
      0902f1f linux-libc-headers: add 3.14 libc headers
      82e73ee linux-libc-headers: make compression format configurable
      3746a51 linux-yocto/3.14: introduce versioned recipes
      0906266 Revert "zisofs-tools-native: Add missing dependency on zlib-native"
      3972259 lib/oeqa: add a test target controller for EFI targets
      2764a40 recipes-extended: add master image for testing purposes
      a4447e3 initrdscripts: add install scripts with a second rootfs
      806e671 openssh: build without libbsd
      49f2bc4 classes/sanity: check if SDKMACHINE setting has taken effect
      79dc4f0 pseudo-1.5.1: keep install command directory mode
      15056e2 libomxil-0.9.3: fix configure unrecognised option
      1e51b5a toaster.bbclass: the license.manifest is located in DEPLOY_DIR
      edd500e sstate.bbclass: update missed sstate event
      cb0bb7c packagegroup-core-tools-testapps: Move GLTOOLS to X11GLTOOLS
      8210928 yocto-bsps: remove linux-yocto 3.8 bbappend
      4f80de9 linux-yocto/3.10: fix qemuarm build failure
      b8584fe sstatesig: Anchor inherits class tests
      790cc61 bitbake: user-manual-execution.xml: Added how BB processes curly braces.
      34f4a9d bitbake: user-manual-execution.xml: Updated "Checksum (Signatures) section.
      e7277a5 bitbake: user-manual-intro.xml: updated bitbake -h output
      5192dfe ref-manual: Edits to the "Source Directory Structure" chapter.
      e674668 ref-manual: Added placeholder sections for the "Migration" section.
      c140238 ref-manual: grammar fix to "Licenses" section.
      ace87ef ref-manual: Some link changes for "Wayland" section.
      c43c228 ref-manual: Edits to "Shared State Cache" section.
      9e19c9d ref-manual: Minor edits to "Cross-Development Toolchain Generation".
      e2e3365 ref-manual: Edits to "Yocto Project Components" section.
      ec27a78 ref-manual: Read-through edits to "Closer Look" chapter.
      4a3a747 ref-manual: Edits to the "Using" chapter.
      a4f8da5 ref-manual: Updated the "Introduction" section.
      84229e1 ref-manual: Updated the laundry list of what sections are in the manual.
      09e01be ref-manual: Removed the BitBake chapter.
      338b500 bsp-guide, kernel-dev: Added Cross-references to "BitBake" term
      df02dd8 dev-manual: WIP for YOCTO #5554.
      f1e9e33 dev-manual, ref-manual: Added error reporting tool information
      aa73618 dev-manual, ref-manual: Noting TMPDIR cannot be on NFS
      ff5b58e ref-manual, dev-manual: Point out "xterm" needed for eclipse use.
      c4f2191 xkeyboard-config: Add missing dependency on libxslt-native for xsltproc
      e8f55d2 distro_alias.inc: remove packagegroup-toolset-native
      fc49a6f bitbake: server/xmlrpc: Simlify featureset handling
      adba3ed bitbake: bin/bitbake: Only try and process an event_queue if it exists
      87fd184 bitbake: bitbake: toaster: do not trap SIGCHLD
      6448634 bitbake: prserv: Fix exit race issues
      ef28fcd bitbake: bin/bitbake/cooker: Ensure initial featureset is optimal
      f80334d bitbake: cooker: Only change self.data if it exists
      dd275f4 zisofs-tools-native: Add missing dependency on zlib-native
      1d83256 e2fsprogs: Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages
      a8d076f lttng-ust: add python to lttng-ust's RDEPENDS
      6b1d027 libpcap: add PACKAGECONFIG for libnl1
      e1876b6 syslinux.bbclass: Enable additional kernel parameters for syslinux
      23f26b5 weston : refactor to identify EGL, cairoglesv2 support
      3f0425d sstate-cache-management: rm_by_stamps - discover all suffixes like remove_duplicated does
      fec6bd7 sstate-cache-management: skip populate_lic archives when removing duplicates
      07e632a sstate-cache-management: rm_by_stamps - remove .siginfo and .done files
      42b12dc sstate-cache-management: rm_by_stamps - include signatures of .sigdata. files
      ba65fe6 wic: Extend --rootfs-dir to connect rootfs-dirs
      3c00384 wic: Report all ROOTFS_DIR artifacts
      13afd35 wic: Add option --rootfs-dir to --source
      cbee7cb wic: Use partition label to be part of rootfs filename
      550e931 wic: Add rootfs_dir argument to do_prepare_partition() method
      25d16c4 wic: Hook up RootfsPlugin plugin
      66bb67d wic: Add RootfsPlugin
      42d0824 packagegroup-core-lsb: Limit mips64 issues to qt4 packages only
      0bc2d87 libcap 2.22: fix, disable gperf detection
      7cb6515 wic: Fix bitbake_env_command for 'None' case
      b8fd50e packagegroup-toolset-native: remove it
      2f66147 core-image-sato-sdk: Drop qt4 on mips64
      8feed9d make-3.81: Fix build failures with newer makeinfo
      c565d76 linux-yocto/3.8: remove versioned recipes
      fb8b51c linux-yocto/3.10: fix drm build failure
      d00ca40 linux-yocto/3.10: update intel common meta data
      7f853aa linux-yocto/3.10: update to v3.10.34
      400f831 linux-yocto/3.10: add valleyisland io
      1b99904 linux-yocto/3.10: update to v3.10.33
      09d875e linux-yocto/3.10: update EFI configuration
      433768b linux-yocto/3.4: update mohonpeak.cfg for SATA, SMBus, LPC, WDT, crypto & highmem64g
      3019972 linux-yocto/3.10: intel-core*/common configuration updates
      5b59444 image.py: check file exists before deleting
      0f757af package_*.bbclass: Simplify addtask
      8f8e4f0 populate_sdk_*: Drop now unneeded recrdeptask flags
      af528b0 populate_sdk_base: add dependency of do_package_write_* tasks
      a56d8e9 rootfs.py: add new cleanup method
      a5994c0 package_manager.py: leave the __db.00* files in place
      6196e18 nss-3.15.1: fix CVE-2013-5605
      6a3cade nss-3.15.1: fix CVE-2013-1741
      c4c31eb libtiff: fix CVE-2013-4244
      4f326c8 libarchive: fix CVE-2013-0211
      bb3927d autoconf: new autotest/testsuite option to enable automake test result format
      95cd568 bitbake: toaster: filter tasks with cache attempts for all attempts
      c59e929 bitbake: toaster: fix dirinfo empty dir expansion
      bae133a bitbake: toaster: added file types to the Outputs column in the build
      877dcd7 bitbake: toaster: add support for empty states in pages
      14a8443 bitbake: toaster: show installed package name
      c07a294 bitbake: toaster: Fix typo in heading code
      7643ba3 bitbake: toaster: insure _get_query returns distinct records
      056fbc4 bitbake: toaster: blocks for custom/highlighted navigation and breadcrumb links
      405e190 bitbake: toaster: add Image detail and multiple targets to dashboard
      8c3eb5e packagegroup-toolset-native: Update after ocf-linux -> cryptodev-linux change
      5eceedf ocf-linux: remove recipe
      815798d openssl: replace dependency ocf-linux with cryptodev-linux
      b895ee7 cryptodev-linux: add recipe
      cbefaa3 run-postinsts: fix issue with checking IMAGE_FEATURES
      ad1447d build-appliance-image: update to head ae938eba92b2c89a9fd91161e57c5dbc594ad4ad
      e4fb1bd gummiboot: fix the installed but not shipped warning
      55de991 gummiboot: use objcopy from the env
      0e5f6e0 gummiboot: add COMPATIBLE_HOST
      e69f308 gnu-efi: fix the LIBDIR
      c4eeaa8 bitbake: knotty: Show a link to the logfile for failed setscene tasks
      6ef47ec bitbake: knotty: Split error output onto stderr
      6f29f7d bitbake: knotty: Ensure the progress bar shows on stdout
      cf97773 bitbake: msg: Add stdout/stderr filters
      18bbfc4 bitbake.conf: Adds bitbake qemu option for ppc e6500 & ppc e6500-64b.
      8c1e43c bitbake: cooker/event: Overhaul sanity test mechanism
      172095e bitbake: runqueue/siggen: Pass in commandline options to dump_sigs()
      774eb75 bitbake: bitbake: Force -S option to take a parameter
      604dd73 selftest/bbtests.py: Fixed regex and added bitbake output to test_warnings_errors
      ebfd075 lsb: fix lsb_log_msg() implementation
      61b088a image.bbclass: replace rootfs with /dev/root
      b25e90f systemd-serialgetty: update to match systemd 211
      3ae9225 git: Fix perl paths in scripts and population of the perltools package
      dc29d2a base.bbclass: Merge two ConfigParsed event handlers
      b015b64 sanity.bbclass: Update against bitbake sanity event changes
      2651e11 scripts: Update after addtion of parameter to bitbake -S
      0f77f3f base.bbclass: Run oe_import before other INHERITs
      315542d meta-skeleton: Add name attribute to SRC_URI
      7f880e2 wic: Add SD/MMC-Cards support to '--ondisk' param
      68f3a57 apt/package_mamager: Ensure WORKDIR is used for lists directory
      b503d35 package_manager: Fix apt-ftparchive index creation problems
      da09709 package_manager: Ensure we don't process directories twice
      9006f9b mmc-utils: Add user space mmc utilities for eMMC
      2614e61 base-files: do_install.sigdata: remove the depends on DATE
      f782e39 meta/conf/bitbake.conf: add STAMPCLEAN to BB_HASHBASE_WHITELIST
      8add7ae util-linux-native: fix qsort_r for CentOS 5.10
      cdf0d97 cpio rootfs build: Avoid modifying rootfs dir
      0ba7839 gnupg: CVE-2013-4576
      0abd941 gnupg: CVE-2013-4351
      f6548c5 Security Advisory - openssl - CVE-2013-6449
      61fd2e4 Security Advisory - openssl - CVE-2013-6450
      3411716 Security Advisory - openssl - CVE-2013-4353
      ae938eb local.conf.sample.extended: update it for the archiver
      39846dd bitbake: data_smart: Fix caching issue for double remove references
      7ae43dc bitbake: test/data: Add in test for append/prepend/remove override operations
      7fa5131 bitbake: toaster: format packages with size = -1
      64ba1fa bitbake: toaster: Small fixes in tasks UI
      bca174a bitbake: toaster: Fix help text typos
      b721972 bitbake: toaster: Remove commented-out code from views.py
      7d9f1e2 bitbake: toaster: Change placeholder attribute in variables table
      55f6a35 toaster.bbclass: update buildstats event data
      ae79fa3 Enable yasm in gstreamer1.0-libav by default
      6549a43 piglit: ship files with correct permissions
      7881b30 bind: remove nslookup from FILES
      895cf82 bind: fix no bind-utils package
      ffa8bbf binutils: Add fixes for binutils issue 16428
      8dd12d7 perl-native: fix path in Config.sh for sstate
      d385bf1 tcl: fix path in Config.sh for sstate
      0e58578 bitbake: runqueue: Fix sceneQueueEvent to use the correct hashes
      41ed412 bitbake: hob: fix set_extra_setting function
      22af803 bitbake: cooker: delVar in removeConfigurationVar
      843e3ec bitbake: user-manual-metadata.xml: Added varflag for vardepvalueexclude.
      37f7820 bitbake: user-manual-metadata.xml: Edits to "Basic Variable Setting"
      c0a13d2 bitbake: user-manual-metadata.xml: Sections to handle variable setting added.
      019c868 bitbake: Makefile: Added publish tag so the book can be published.
      b80943f dev-manual: Added notes saying you need to work from same branches
      b990aa8 ref-manual, yocto-project-qs: Notes and infor for buildtools issues
      752bf31 ref-manual: Updated TMPDIR description for NFS issues.
      0977097 ref-manual: Fixing whitespace.
      20a17fd dev-manual: Added more detail for using an external SCM.
      4a40d73 yocto-project-qs: Updated example toolchain command.
      4597d2a adt-manual: Fixed example bitbake command.
      ef627f8 yocto-project-qs, ref-manual: Fixed core number defaults
      32890f2 adt-manual, ref-manual: Cross-toolchain details added. New class also.
      c441f5f dev-manual, ref-manual: Changed core-image-basic to core-image-full-cmdline
      7a5cd21 ref-manual, mega-manual: Added manifest file information
      97cfb8c dev-manual: Added new summary parameter to do_split_packages list.
      52a4508 ref-manual: Edits to "Running Specific Tasks"
      e8c6097 dev-manual: Read-thru edits for "Maintaining Open Source License..."
      c70b6e8 dev-manual: Read-thru edits to "Profiling with OProfile"
      46330cd dev-manual: Read-thru edits to "Examining Builds Using the Toaster API"
      eb0a5d5 dev-manual: Read-thru edits to "Debugging with the GNU..." section.
      914b3e0 dev-manual: Read-thru edits for "Performing Automated Runtime Testing"
      128cdcf dev-manual: Read-thru edits to "Creating a Read-Only Root Filesystem"
      46a4fb2 dev-manual: Read-thru edits for "Using an External SCM"
      d8b69fb dev-manual: Read-thru edits for "Selecting an Initialization Manager"
      80e7223 dev-manual: Fixed a reference to the systemd class.
      e462a1f dev-manual: Read-thru edits for "Building Software from an External Source"
      fd2846c dev-manual: Read-thru edits to "Working With Packages"
      a4103b8 dev-manual: Read-thru edits for "Building a Tiny System"
      432138a dev-manual: Read-thru edits to "Creating Your Own Distribution"
      24ee5fa dev-manual: Added yocto-layer script note and updated kernel version
      fceba79 dev-manual: Typo fixed.
      43d93f3 dev-manual: Read-thru edits to two sections - new machine and libs
      58a7688 dev-manual: Read-thru edits to "Writing a New Recipe"
      aca4b48 dev-manual: Read-through edits to "Customizing Images".
      23da05f dev-manual: Read-through edits to "Understanding and Creating Layers".
      c7fb9a6 dev-manual: Read-through edits applied to "Models" chapter.
      ccd0e24 dev-manual: WIP - Some edits to Chapter 4 from the read-through.
      4032e1a dev-manual: Added Haswell BSP to list of BSPs in meta-intel.
      dd72756 dev-manual: Read-through edits to Chapter 3.
      cee847a dev-manual, mega-manual: Updated the Git Workflow figure.
      a61dd59 poky.ent: Fixed distro name variable to be "daisy" rather than "Daisy"
      90dfac0 dev-manual: General edits to the getting started chapter.
      2e56389 dev-manual, yocto-project-qs: Recommending 50Gbytes of free space now.
      68943bc dev-manual: Added a cross-reference link to BitBake term.
      4a6d886 dev-manual: Added cross-reference to the build system.
      bda6b1a dev-manual: Minor edits to the "Introduction" chapter.
      914b2ea adt-manual: Added a word for better grammar.
      1b9e73e poky.ent: Added "Daisy" as the DISTRO_NAME variable.
      5320b97 adt-manual: Fixed "autotools-based" to "Autotools-based".
      79ac80d adt-manual: Fixed Cross-ref target title and applied minor formatting.
      529b65a adt-manual: Fixed another instance of BitBake command.
      08531f2 adt-manual: Minor edit to default installation directory.
      8a8ae81 adt-manual: Fixed occurrences of "BitBake command".
      e1c1615 adt-manual: Added bold formatting to list leaders.
      215718f adt-manual: Minor formatting change.
      02fa765 adt-manual: Added a link to BitBake term and fixed some formatting.
      720cdab adt-manual: Edited the "Perf" bullet item.
      2f0f79c adt-manual: Added cloning poky as a way to have QEMU available.
      2edf033 adt-manual: Restructured opening organization.
      8986c2e yocto-project-qs: Edits to opening paragraph.
      0e8cb1f yocto-project-qs: Added a link to the BitBake section in ref-manual.
      4741bb0 yocto-project-qs, poky.ent: Misc fixes in the Quick Start:
      35e0265 yocto-project-qs: Added recommendation for cloning YP bits.
      65cef19 yocto-project-qs: Eliminated "don't" contraction.
      43fc5fd yocto-project-qs: Re-wording for the introductory video item.
      ca3fbbc yocto-project-qs: Fixed link to go to Build Appliance page.
      708dd32 ref-manual: New variables added and some edits as well
      2f643ad kernel-dev: New step to "Generating Configuration Files" section.
      a41113c ref-manual: Added CONFIG_INITRAMFS_SOURCE and edited INITRAMFS_IMAGE_BUNDLE variables.
      bcd9917 ref-manual: Edits to "Understanding What the Build History Contains" section.
      ad49ddd ref-manual: Edits to TOPDIR variable.
      9953555 ref-manual: Edits to the "Maintaining Build Output Quality" section.
      89de0ba ref-manual: Added BUILDHISTORY_PUSH_REPO to glossary.
      3233859 ref-manual: Added BUILDHISTORY_COMMIT_AUTHOR to glossary.
      47ca210 ref-manual: Added BUILDHISTORY_COMMIT to glossary.
      f3927f3 ref-manual: Added BUILDHISTORY_IMAGE_FILES to glossary.
      3e0d532 ref-manual: Updates to "Maintaining Build Output Quality"
      2da4610 ref-manual: Added BUILDHISTORY_SDK variable.
      98fee9b ref-manual: Edit to BUILDHISTORY_DIR_IMAGE variable.
      5f36c00 ref-manual: Added BUILDHISTORY_DIR_PACKAGE to the glossary.
      199a4b3 ref-manual: Added BUILDHISTORY_DIR_IMAGE to glossary.
      6ee63d0 ref-manual: Added BUILDHISTORY_DIR to glossary.
      4a39d82 ref-manual: Added BUILDHISTORY_FEATURES to glossary.
      81f7ff3 documentation: Fixed "Relased date" for the 1.5.1 entry
      57c0dd6 dev-manual: Added note about Project names in Eclipse.
      5e2d6a3 ref-manual: Fixed error in example for export XDG_RUNTIME_DIR
      2c92027 ref-manual: Added directfb to DISTRO_FEATURES list chapter.
      93ad02d ref-manual: Edits to PARALLEL_MAKE in the glossary.
      fdd99bc ref-manual: Added ICECC_PARALLEL_MAKE to glossary.
      478f1b7 bitbake: toaster: replace package dependency tag w/ view queries
      70f1a3d bitbake: toaster: clean exit on bb server shutdown
      1913a17 bitbake: toasterui: save missed sstate tasks
      1d20fc4 bitbake: toaster: select recipe based on PN name
      a6c3cb7 bitbake: toaster: Remove circular dependecies from packages/recipes
      da1b795 bitbake: toaster: combine ready functions
      f5d616e bitbake: toaster: add search by section to all recipe page
      9e376db bitbake: bitbake toaster: check the file_name with the content of the IMAGE_FSTYPES variable
      2d4199b bitbake: toaster: apply filter only on selected attributes
      4f44b8b bitbake: toaster: Change "0 found" to "No found"
      cf3d6bd bitbake: toaster: Update local configuration counter
      1b72110 bitbake: toaster: Add help text to filters
      259611b bitbake: toaster: Fix alignment issue in searchform
      ecfb339 bitbake: toaster: fix package size 1st sort order
      0525edb bitbake: toaster: Change objectname 'packages' to 'packages built'
      ef10636 bitbake: toaster: reset default filter for configvar page on new searches
      4f02193 bitbake: toaster: warn new filter replaces existing filter
      604d2c8 bitbake: toaster: Revert "added file types to the Outputs column in the build page"
      888ceb1 tune-ppce6500: Fixes a typo in tune config file for e6500.
      d777d4a glib-2.0-native: Fix DEPENDS
      169d67e classes/binconfig: fix indentation in python function
      5d8552e classes/staging: ensure do_populate_sysroot re-execs on changes to sysroot preprocessing funcs
      ba6caa0 buildstats: use TaskBase time for elapsed time
      bdbc158 staging: Save out provider information into the sysroot
      21169c3 archiver.bbclass: emit patch series files for original src
      4a91e14 archiver.bbclass: make it can filter the license
      39ea974 gtk-engines: move engine schemas to a dedicated package
      cd81724 gtk-engines: don't inherit gtk-icon-cache
      1f85f07 util-linux: build setpriv requires libcap-ng
      228abf2 connman: upgrade to 1.22
      9b575fd libsoup-2.4: fix compiling failed while mips-gcc optimization enabled
      db827dd acl: fix the order of expected output of getfacl
      299fbbf bitbake: hob: output filenames based on initial recipe name
      7dd4bf6 bitbake: fetch2.URI: Set username/password should not change the other
      57484d6 bitbake: fetch2.URI: Support URIs with both query strings and params
      aca2d14 bitbake: fetch2.URI: add support for query parameters
      64fdd3a bitbake: tests.fetch: Remove debug assert
      86860bb bitbake: fetch2.URI: Coerce urlparse to use netloc for all schemes
      24979a1 busybox: disable fsck.minix and mkfs.minix
      004f9be classes/image: ignore modules.* changing during multilib image construction
      9ce1f7d classes/kernel: move module postinst commands to kernel-base
      0c3d576 local.conf.sample.extended: update for the archiver
      7c0a782 gtk-engines: removed gnome inheritance
      e2d24f5 classes/image: disable pam nullok_secure with debug-tweaks
      1f44904 archiver.bbclass: move a few code to copyleft_compliance.bbclass
      2c7d20c package_rpm.bbclass: archive the source to srpm package
      cbcf5b2 archiver.bbclass: refactor it
      f0714d1 classes/archive*.bbclass: remove archive-*-source.bbclass
      3175653 bitbake: toaster: fix task elapsed time calculation
      4cdd56f bitbake: toaster: image information views
      e94f0b4 bitbake: toaster: add jquery treetable plugin
      6f5e196 bitbake: toaster: filter out setscene tasks in recipe details
      d5ff301 bitbake: toaster: Amend failed tasks behaviour
      3a36186 bitbake: toaster: Set display of "Cache attempt" column
      496365c bitbake: toaster: Remove extra space in the breadcrumb
      8936cec bitbake: toaster: Change "Package version" to "Version"
      4f812cd bitbake: toaster: Remove trailing spaces from 'name'
      c9065cb bitbake: toaster: Add link to the Toaster manual
      f191ab0 bitbake: toaster: measure task duration with server-side timestamps
      888683d bitbake: ConfHandlerr: Use full path in variable history
      99c08ee gnome-doc-utils: removed gconf inheritance
      31a19bc gsettings-desktop-schemas: removed unneeded class inheritance
      82191fa gnome-mime-data: removed gconf and gtk-icon-cache inheritance
      ac23389 gst-plugins-gl: removed gconf inheritance
      6579bf7 gnome-desktop: removed gconf inheritance
      dfb57a1 core-image-minimal: allow user to set size
      7df7404 python3: sync module dependencies from 2.7
      dd1e12a generate-manifest-3.3.py: sync descriptions with 2.7 version
      8d078be libsdl: add missing libglu dependency for openGL
      54beec1 kernel-arch.bbclass: add arm64 support to U-Boot architecture map
      68acafd runqemu: Add option for custom BIOS directory
      e8bc7a1 base-files: use /dev/root in /etc/fstab for systemd support
      e6e4e0e tclibc-uclibc: Changing assignment to conditional variable assignment
      35a49f6 pulseaudio: Upgrade 4.0 -> 5.0
      da4c46f sstate: list missing files for toaster
      4ce36a4 toaster.bbclass: read the data needed for license manifest path
      ea8640e gcc-runtime: Build libatomic
      38d669f image_types.bbclass: use 4096 instead of 8192 bytes-per-inode
      2cf83f4 buildhistory.bbclass: create proper dependency files for SDK
      0ec27e6 image.bbclass, license.bbclass: adjust the name of list_installed_packages()
      483d5a4 rootfs.py, sdk.py: adjust/create the wrappers for creating installed packages list
      d91e356 package_manager.py: create separate class for installed packages listing
      5a78852 linux-dummy: provide kernel-modules (empty) package
      93532df cogl-1.0 : Update to 1.16.2 release
      5e4ca62 gsettings-desktop-schemas: Updated to 3.10.1.bb
      af63a09 cairo: Add 'egl' and 'glesv2' PACKAGECONFIG options
      0e849f0 scripts/cleanup-workdir: Fix a comment typo
      21a3ffb e2fsprogs: return error when failed to populate fs
      d5982a2 alsa-tools: fix build when x11 and gtk+ not available
      08808c9 perf: add libexec and traceevent to packages
      fe0287c fontcache.bbclass: add fontconfig-utils runtime dependency
      e270076 genext2fs: remove it
      b3f83a2 generate-manifest-2.7.py: sync with python-2.7-manifest.inc
      6bffd21 generate-manifest-*.py: set SUMMARY instead of DESCRIPTION
      7425f3b python: add python-mmap to python-multiprocessing RDEPENDS
      77de11f x264: add perlnative to inherit
      29ee5c1 useradd{-static}: Ignore useradds on nativesdk
      49aad7d bitbake: runqueue: Remove use of waitpid on worker processes
      99913df alsa-tools: fix build when x11 and gtk+ not available
      a0c8357 sgml-common-native: fix the generation of sgml-docbook.cat
      779f593 expect: fix do_install failure on SLED 11.2
      aec1194 package_manager: Use apt-ftparchive for deb packages
      5baa4d7 openssh: Update init file to add ED25519 Key generation
      724cdda tar: add knob whether acl.h are checked
      9e10db5 gettext-0.16.1: kill target m4 macros from sysroot
      7fe34be pulseaudio: Make it compatible with systemd-209
      2c10473 Upgrade to systemd 211+
      ac4ff56 bitbake: runqueue: Revert child signal handler for now
      ea52b5e bitbake: runqueue: Don't catch all child return codes
      0150bc3 bitbake: runqueue: Really fix sigchld handling
      cfd1c4e pixbufcache: Fix librsvg-native build
      08303af autotools: Exclude variables from autotools_copy_aclocals
      e58089b bitbake: runqueue: Ensure handler does not recurse
      6bbb179 bitbake: runqueue: More carefully handle the sigchld handler
      1f16ca9 bitbake: hob: sync after image deploy
      92155fd bitbake: runqueue: Don't error if we never setup workers
      e8476a9 gettext: upgrade from 0.18.3.1 to 0.18.3.2
      bb9042a grep: upgrade from 2.16 to 2.18
      1d82897 sudo: upgrade to 1.8.9p5
      4aa61f2 alsa-tools: update to version 1.0.27
      7f035ad directfb-examples: update to 1.7.0
      a6ce5f4 directfb: update to 1.7.1
      78565c8 qmmp: update to 0.7.5
      3c70ad6 docbook-sgml-dtd-native: remove catalog file when do_clean
      5760485 boost: Pass CFLAGS, CXXFLAGS and LDFLAGS correctly into boost.build
      888447c packagegroup-core-tools-testapps: added connman tools and tests
      4c48582 packagegroup-core-tools-testapp: added 3G tools
      9f29b9f apt-native: Install apt-ftparchive
      331962f mips64-linux: set ac_cv_sizeof_ssize_t
      963374e make: add 'inherit pkgconfig'
      2195006 linux-yocto-custom: Use SRCREV_machine
      e73f0f1 lib/oe: turn oe into a namespace package
      bb18b49 intltool: Define DATADIRNAME=share for uclibc based systems
      d3ffa39 util-linux: scanf_cv_alloc_modifier changed from 'as' -> 'ms'
      7d95e81 glib-2.0: Fix localedir expectations for uclibc
      62b3851 gnutls: Link in pthread explicitly for uclibc
      60e2df2 uclibc: Remove iconv.h
      d8ebc75 uclibc: Implement clock_adjtime()
      d40ac96 bitbake: toaster: added file types to the Outputs column in the build page
      3cbe113 bitbake: toaster: Sort layers in alphabetical order
      1caad7d bitbake: toaster: Remove the data-toggle attribute
      c1f97ce bitbake: toaster: Don't show clear search button if text input field is empty
      a3ccb73 bitbake: toaster: Fix Recipe sorting in tasks table
      b2e5cab bitbake: toaster: Not using task_color tag for execution heading
      d24584f bitbake: toaster: Presentation fixes for task.html
      e3a92c1 bitbake: toaster: Shorten dependency labels
      3bc398e bitbake: toaster: Give an extra space to the caret
      f4755ed bitbake: toaster: Add no search results page
      92c98c4 bitbake: toaster: Fixing "Show all builds" link
      99f91e4 bitbake: toaster: Amend help text in package_built_detail.html
      2873103 bitbake: toaster: Small tweaks to the no results page
      d7fde8b bitbake: toaster: Replace hyphens with underscores in package name
      2ac4387 bitbake: toaster: Format package size in recipe.html
      bb7776a bitbake: toaster: Make Order column part of the minimum table
      1f83c7f bitbake: toaster: Move <tbody> outside for statement
      be778cd bitbake: toaster: improve recipe matching for native tasks
      513722d bitbake: toaster: fix target file inode type information
      e665de5 bitbake: bitbake: cooker: some IMAGE_FEATURES not recognized
      d3d3a2c bitbake: toaster: add errors and warnings listing
      1db32b0 bitbake: toaster: Add counters to filters
      5396191 bitbake: toaster: add license manifest path to database
      839f304 bitbake: toaster: populate target image file table
      a3eb7da eglibc: Update SRC_URI to point to final download location
      f7fabf1 wic: Use pseudo for ext mkfs command
      2b4a00a wic: Use mke2fs to create the ext2/3/4 image
      463cd34 Create gstreamer-1.0 package groups
      6e483e9 gnomebase: remove trailing whitespace
      9a928c5 oe-setup-builddir: small rework
      9104a32 bitbake: runqueue: Improve sigchld handler
      1960f6b populate_sdk_deb: Fix meta-toolchain-sdk with amd64 ARCH
      d6dc48f lsbtest: fix comparison bashism
      24d1724 btrfs: patch to allow for relative paths
      5ab5b77 bind: Update to 9.9.5
      f7557a1 dhcp: Update to 4.3.0
      4a4be6f util-linux: Update to 2.24.1
      deed314 populate_sdk_*.bbclass: remove old rootfs_list_installed_depends()
      6029af2 buildhistory.bbclass: Fix dependency files creation
      d1161cb bitbake: bitbake-worker: Ensure children have default sigterm handler
      e1d7a45 bitbake: bitbake: fix typo in variable name
      bf01a9a bitbake: toaster: fix 'show all' labels for tasks and variables
      7af7e85 bitbake: toaster: add 'bblayers.conf' files to local config filter
      324791a bitbake: toaster: add empty outcome support to task page
      65c298d bitbake: toaster: Fix help text for task details outcome
      6b4aedc bitbake: toaster: erase checks for stop command
      bff408a bitbake: toaster: add commands to list and delete builds
      00ca499 bitbake: toaster: write files-in-image to the database
      7a0add7 bitbake: toaster: update database schema
      5f05bdd classes: Add gummiboot class
      9d04183 bootimg/grub-efi.bbclass: allow using a different class for EFI images
      de18567 recipes-bsp: Add gummiboot recipe
      b588a24 recipes-bsp: add gnu-efi recipe
      798877e mtd-utils: Update version to include fixes after 1.5.0
      7a8f3c7 e2fsprogs: fix cross compilation problem
      614faa6 .templateconf: New file for customized template defaults
      5662ab6 scripts/oe-setup-builddir: Keep track of TEMPLATECONF setting
      61e8fdb oe-init-build-env: Improve script sourcing detection.
      cdf4473 oeqa/utils/qemurunner: search for login string in the entire boot log
      724b83d oeqa/targetcontrol: fix loading a controller using a class name
      517bc16 oeqa/targetcontrol: allow a custom port for SimpleRemoteTarget
      6d85ec3 diffutils: enable ptest support
      fe81406 xf86-video-intel: add recipe for 2.99.910, remove the git one
      a3f0852 classes/sstate: don't overwrite buildhistory vardepsexclude
      ec8490a dmidecode: add powerpc to compatible host
      abb1bde libsdl: bump PR
      30f8ec5 kernel-yocto: replace '=' with '+='
      1db8eb4 ptest: Don't enable ptest for nativesdk and cross-canadian packages
      b130d75 eglibc: Fix build for FSL ppc/fpu
      a511b25 ltp: Don't link against libfl
      3beb482 package_deb: Map TARGET_ARCH x86_64 to DPKG_ARCH amd64
      678cca4 oeqa/utils/qemurunner: use the right kill call so we don't send SIGTERM to bitbake-worker
      5f81d9d bitbake: runqueue: Use SIGCHLD instead of polling waitpid
      324969e bitbake: server/process: Optimise latency when finishing idle functions
      5dcc20b bitbake: server/process: Drop unnecessary exit delay
      efdc159 bitbake: server/process: Use a pipe for quit events instead of Event()
      a445e03 bitbake: knotty: Remove latency when exiting
      75b9f93 bitbake: knotty: Add missing continue statement for runQueueExitWait event
      aadfea6 bitbake: providers/runqueue/taskdata: Optimise logger.debug calls
      0b4ae1c bitbake: cooker: Handle SIGTERM more gracefully
      6f3a537 bitbake: server/process: Deal more gracefully with SIGTERM
      8fbe218 bitbake: server/process: Use the setFeatures command on the server instead of a manger
      d51bf8d bitbake: cooker/command: Add setFeatures command
      b28f007 bitbake: runqueue.py: Gracefully handle a missing worker process
      bb335f9 bitbake: runqueue.py: Handle worker disappearing gracefully
      1568879 bitbake: bitbake-worker: Gracefully handle SIGTERM
      a7bc031 bitbake: knotty: Deal with exceptions not resetting terminal configuration
      da6926b bitbake: user-manual: Review edits applied throughout from Paul Eggleton.
      40ab940 bitbake: user-manual: Review edits applied from Paul Eggleton.
      96294ee bitbake: user-manual: removed SVK references - all types.
      ead6001 bitbake: user-manual-ref-variables.xml: Edits to BB_GENERATE_MIRROR_TARBALLS variable
      c390221 bitbake: user-manual-metadata.xml: Added BB_ORIGENV example.
      74d2a10 bitbake: user-manual-metadata.xml: Grammar fix.
      197e7e3 bitbake: user-manual-execution.xml: Review edits for "Execution" chapter.
      c509510 bitbake: user-manual: Review edits from Richard (second draft)
      4cd882b bitbake: user-manual: Added "Hello World" Appendix.
      9b3e31e bitbake: user-manual-fetching.xml: Re-write of the Fetching chapter.
      cd0c067 bitbake: user-manual-metadata.xml: Title change, sections lifted.
      b82b3d2 bitbake: user-manual-fetching.xml: Removed a link.
      3801023 bitbake: user-manual-execution.xml: Review edits applied.
      9996f31 bitbake: user-manual-intro.xml: Review edits to Introduction chapter.
      0c5bf41 bitbake: user-manual-execution.xml: Draft of "Execution" chapter
      013c9d9 bitbake: user-manual-intro.xml: Added sections
      117726c bitbake: user-manual-bitbakecommand.xml: Added anchor tag for the chapter.
      f3caa2b bitbake: user-manual-fetching.xml: Re-write of "File Download Support" chapter.
      b4b3bf5 bitbake: user-manual: Added new chapter to cover BB execution.
      34bcd96 bitbake: user-manual-intro.xml: Added an introduction to the manual.
      8aaff25 bitbake: user-manual-ref-variables.xml: Added a note qualifying the variables.
      0510569 bitbake: user-manual-metadata.xml: WIP - Some edits in the checksum area.
      1d9c02e bitbake: user-manual-metadata.xml: Rewrite "Accessing Datastore Variables Using Python"
      666a7b0 bitbake: user-manual-metadata.xml: Re-write the "Dependencies" section.
      bfafc2f bitbake: user-manual-metadata.xml: Re-write of "Variants - Class Extension Mechanism" section.
      3940d59 bitbake: user-manual-ref-variables.xml: Added BBVERSIONS variable.
      233d644 bitbake: user-manual-metadata.xml: Re-write of "Events" section.
      c0239ff bitbake: user-manual-metadata.xml: General cleanup to "Parsing and Execution"
      80127f4 bitbake: user-manual-metadata.xml: Edits to "Variable Flags" section
      ae96cbb bitbake: user-manual-metadata.xml: Rewrite of the "Tasks" section.
      faaca84 bitbake: user-manual-metadata.xml: Rewrite of the "Functions" section.
      d022ec3 bitbake: user-manual-ref-variables.xml: Edits to SRC_URI.
      6f8f51f bitbake: user-manual-ref-variables.xml: Edits to BBCLASSEXTEND.
      1e305ec bitbake: user-manual-metadata.xml: Edits to "Sharing Functionality"
      dc42d88 bitbake: user-manual-metadata.xml: Add bare bones of a scheduler section
      624e59f bitbake: user-manual-metadata.xml: Add details about general variables used by BitBake
      bd23241 bitbake: user-manual-metadata.xml: Add details about environment variables used by BitBake
      d327013 bitbake: toasterui: fix task identification
      f3294d8 bitbake: toaster: fix issues in the build table
      3f16624 bitbake: toasterui: fix status update on failed sstate tasks
      24f0617 bitbake: toaster: update database schema
      0bad725 bitbake: toaster: Move long content toggle to main.js
      4717749 bitbake: toaster: implement the configuration pagedreyna/configure-detail-view
      31d4bf8 bitbake: toaster: View detailed information about a task
      2bd19cd bitbake: toaster: Bug fix in reload page with parameters
      7661585 bitbake: toaster: Fix breadcrumb date format in detail pages
      48a93d6 bitbake: toaster: Sort packages and dependencies in recipe.html
      5a5e7c0 bitbake: toaster: Change popover headings in recipes table
      5462bd0 bitbake: toaster: Change help text for Section
      f0dce42 bitbake: toaster: Hide the applied filter tooltip on click
      e01f790 bitbake: toaster: Add .muted class to disabled checkboxes
      33203ce bitbake: toaster: Set the right styles for definition lists
      fd52dfd bitbake: toaster: Set correct string for missed sstate attempts
      a686734 bitbake: toaster: Remove inline styles in h1
      438578e bitbake: toaster: extend Tasks to include Time, Disk IO, and CPU Usage
      93aa4ab bitbake: toasterui: add asserts on expected values
      0daa189 bitbake: toasterui: task data structure in toasterui
      1660519 bitbake: bb/ui: store_dependency_information optimization
      06f9059 bitbake: toaster: array-assignment fix from Chome
      6fc2462 bitbake: toaster: mark dependency packages
      3d0bb41 bitbake: toasterui: adding new task outcome empty
      7008a24 bitbake: toastergui: fix task executed status display
      4ae5981 bitbake: fetch2/wget: Fix downloadfilename functionality
      aacc381 toaster.bbclass: read list of files in image
      abe417e classes/uboot-config: ignore doc varflag
      26b65aa documentation.conf: sync with the Yocto Project reference manual
      3384659 documentation.conf: drop obsolete variables
      cd1195b opkg/dpkg: remove the postinstalls
      5159ddc run-postinsts: use it for opkg/dpkg too
      635c08c grub-efi: add oe's kernel name to the conf file
      f16fe3b grub git: add oe's kernel name to the conf file
      155b010 grub 2.00: add oe's kernel name to the conf file
      f9c7936 do_rootfs: Add PACKAGE_FEED_URIS as a vardep
      7af3eb8 do_rootfs: Added PACKAGE_FEED_URIS functionality
      ff8d8fb package.py: use subprocess.Popen for rpmdeps call
      d31d2e8 insane: Special case kernel modules for x32 targets
      01e5d7b package_manager.py: make list_installed() list pkg dependencies too
      45bbd21 dhcp-client: fix invoke dhclient-script failed on Read-only file system
      41917e8 grub-efi: use autotools-brokensep
      2de0100 ncurses: use lnr instead of python code
      1412dda scripts: add lnr (link relative)
      a8dc6ae insane: check packages for absolute symlinks to the tmpdir
      d152d03 oe-selftest: force some values in local.conf for _sstatetests_noauto.py
      f5bb53a oe-selftest: optimize code in _sstatetests_noauto.py module
      9c7477e consolekit: fix console-kit-log-system-start.service startup
      c5c99de nfs-utils: run rpc.statd as rpcuser:rpcuser instead of rpcuser:root
      fa7d335 rpcbind: add rpc user and run rpcbind daemon with rpc user
      370717d perf: don't use oe.path.relative
      baa8b03 gcc-cross: don't use oe.path.relative
      b4455d8 lib/oe: drop custom implementation of oe.path.relative
      eb1e41e pango: Fix postinst by adding missing qemu-native dependency
      30b5a6e libgcc: make sure symlinks are created in a valid directory
      8d4c4d1 python-numpy: fix build for qemumips and qemuppc
      06ecf39 gstreamer: Fix valgrind determism problem in the same way as gstreamer 0.10
      fcbb05c Upgrade to systemd-stable v208
      229bcde classes/buildhistory: fix task signatures changing
      0f96a83 bitbake.conf: add new vardepvalueexclude varflag to BB_SIGNATURE_EXCLUDE_FLAGS
      14a1971 opkg-utils: Update to latest git master
      7217f92 gcc: Add upstream fix for gcc bug 58595
      755aaad lttng-ust: Disable doc/examples in the build
      b465c0c lttng-modules: Fix 3.14 bio tracepoints
      7a97440 lttng-modules: Exclude arm
      c065103 lttng-ust: Add version 2.4.0
      46959f1 lttng-tools: Add version 2.4.0
      89f30af lttng-modules: Add version 2.4.0
      7056054 js: remove
      c7f0d76 zaurusd: remove
      b65041b meta-yocto/conf/distro/include/*: update image/packagegroup entries
      6304180 poky-tiny.conf: update for rename of core-image-basic
      4b293da e2fsprogs: populate-extfs.sh: remove it
      5809ce0 image_types.bbclass: use mke2fs -d to create the ext2/3/4 image
      fb980f7 e2fsprogs: enable the "-d" related patches
      b7afd10 e2fsprogs: mke2fs: update the manual for the -d option
      8f0ef72 e2fsprogs: debugfs: use the functions in misc/create_inode.c
      b489b94 e2fsprogs: mke2fs: handle hardlinks
      9074906 e2fsprogs: mke2fs: add an option: -d root-directory
      8b1553e e2fsprogs: mke2fs: set owner/mode/time for the inode
      bc5d73d e2fsprogs: mke2fs: create directory
      243cc2b e2fsprogs: mke2fs: copy regular file
      ad2f1c3 e2fsprogs: mke2fs: create symlink
      c93421a e2fsprogs: mke2fs: create special file
      d8409f8 e2fsprogs: mke2fs: copy files recursively
      6779ab6 e2fsprogs: mke2fs: add the ability to copy files from a given directory
      c859853 kernel-yocto: fix diffconfig/kernel_configme breakage
      e8c99b3 kernel-yocto: Disable ANSI escape codes from git branch
      a820b3f image.py, rootfs.py, package_manager.py: redirect stderr to stdout when calling check_output()
      7b70586 wayland: Add target sysroot scanner m4 macro
      b7f1cca layer.conf: update LAYERVERSION_core for core-image-full-cmdline
      d14090a Rename PACKAGE_GROUP variable to FEATURE_PACKAGES
      874ab5a classes/image: support package-management in IMAGE_FEATURES
      91c372f core-image-basic / packagegroup-core-basic: rename to *-full-cmdline
      2f9bf7b PR bumps to remove PRINC use in meta-fsl-arm
      e955446 bitbake: runqueue: Fix typo
      003d317 bitbake: data: add vardepvalueexclude varflag
      a01af02 recipes: bump PRs
      1dc068c base: Show PRINC value in the warning message
      a1e5348 gnutls: update regex
      f57b3b7 base.bbclass: Deprecate the PRINC logic
      338e97e build-appliance-image: upgraded to commit 54c2e993ec129563c7ae9f3fdee74ab60da28698
      8053b21 mc: Add 'inherit pkgconfig'
      f683023 oe-selftest: add test for image manifest file creation
      79024ff gnutls: fix failure during do_compile
      f75c7fb gnutls: Fixed bug that prevented the rejection of v1 intermediate CA certificates.
      4988a8c gnutls: CVE-2014-0092 correct return codes
      4df2d01 security_flags: Update to correctly link X modules
      b1a75ba sanity.bbclass: support wildcards in SANITY_TESTED_DISTROS
      593aef7 parted: add patch to handle deprecated readline function
      da4c775 readline: drop readline-only-enable-meta-key-for-a-single-call-read.patch
      eddaf70 readline: update configure-fix.patch
      ad0b28b readline: upgrade to 6.3
      3b56aa9 ppp: drop if_pppol2tp.h patches
      6fe2315 ppp: drop enable-ipv6.patch
      3bd5c23 ppp: upgrade to 2.4.6
      5da3ba5 bash: update build-tests.patch
      a163269 bash: upgrade to 4.3
      f874ac6 mtdev: upgrade to 1.1.5
      97289f7 package_manager.py: RpmPM: don't add smart channel if already added
      61b8503 Revert "lib/oe/package_manager.py: RpmPM: fix issue with multilib builds"
      1d2a6da gstreamer: Fix valgrind header detection
      2973c12 sstate: Ensure SSTATEPOSTINSTFUNCS is accounted for in signatures
      56636dd image.bbclass: add BAD_RECOMMENDATIONS/NO_RECOMMENDATIONS rootfs vardeps
      f51294d testimage: add task level lock
      8615d57 sstate-cache-management.sh: Don't use echo -n
      99183f9 sstate-cache-management.sh: Allow to remove old .siginfo and .done files for all tasks
      6bfa52a sstate-cache-management: improve shown numbers of removed files
      8ae183d bitbake.conf: Drop -fpermissive
      c2a17dc oprofile: Partially fix separate builddir support
      12d613f alsa-tools/autotools: Ensure that aclocal files can be present with AUTOTOOLS_COPYACLOCAL variable
      b924b49 autotools: Limit aclocal files to those in dependencies
      b2d55fa openjade: Fix configure assumptions about file moves
      f03d46f bzip: Add extra files as a specific task
      f039550 Revert "ncurses: use ln -r to generate relative symlink"
      54c2e99 bsps: update H/W reference boards to v3.10.32
      9688673 bsps: update to 3.10.28
      151eaca bitbake: fetch2: Drop svk fetcher
      e955def bitbake: codeparser: Fix var_execs to append to execs, not references
      69b4614 bitbake: fetch/wget: Separate out download and checkstatus functions
      5f0e3a8 bitbake: fetch/wget: Start to clean up command construction
      6265744 bitbake: wget: Drop usage of old style *COMMAND variables
      c0bdd18 bitbake: fetch/svk: Drop usage of old style *COMMAND variable and MKTEMPDIRCMD
      c547149 bitbake: fetch/perforce: Drop usage of old style *COMMAND variable and MKTEMPDIRCMD
      1aab9c7 bitbake: fetch/git: Separate out an ls-remote function
      4b048ac ltp: Work around parallel make race
      7d949e5 python-native: remove unused and duplicated sitecustomize.py
      2163893 oeqa/runtime/dmesg: Ignore DMA timeout errors
      f363c36 ncurses: use ln -r to generate relative symlink
      e6e5f64 wpa-supplicant: upgrade to 2.1
      0d47ab7 dpkg: Use bzip2-replacement-native
      6fab87e oe-selftest: Fix test_sstate_cache_management_script*
      0c6ee42 dropbear: upgrade to 2014.63
      5f4e1a9 chrpath: upgrade to 0.16
      5419357 augeas: upgrade to 1.2.0
      8c244c6 cmake: upgrade to 2.8.12.2
      147e5ae ethtool: upgrade to 3.13
      1964da1 openssh: upgrade to 6.5p1
      8f36e1e poky.conf: add CentOS 6.5 to SANITY_TESTED_DISTROS
      d6596f5 linux-yocto-dev: bump to v3.14-rc4
      c2895ed bitbake: tests: add test for gitsm fetcher
      0dd3a1b bitbake: tests: add missing import
      2f8be92 bitbake: bitbake-selftest: enable specifying tests to run on command line
      957c9a8 bitbake: fetch2: fix fetching git submodules with git 1.7.9.x or older
      519f0a5 meta-hob: Drop as no longer needed
      81f4dd6 bitbake: hob: append bbfiles to bblayers.conf instead of local.conf
      2557667 bitbake: hob: remove the code that adds hob layer to bblayers
      ed19ed0 bitbake: hob: create a base hob image used to create custom images
      5105603 bitbake: build: filter out expanded empty strings for lockfiles flag
      59be48d hob-image: Drop as no longer needed by bitbake
      069de52 autotools-brokensep: Mark recipes with broken separate build dir support
      5436de5 python3: Fix make race
      3f0e3b5 python3: Fix QA warning
      ce43612 libomxil: Fix link issue for gst-omx
      bbe9cb7 python: Backport CVE-2013-1752 fix from upstream
      617819a weston: fix build without wayland in distro_features
      415e039 dpkg: Fix dpkg-native dependency on target xz
      96f40b4 webkit-gtk: Fix separate builddir support
      7d9f9ec man-pages: Update to 3.60
      c7d9a07 linux-yocto/3.10: integrate latest LTSI changes
      967fca6 linux-yocto/3.4: update to v3.4.82 and latest LTSI
      771803e linux-yocto/3.10: update to v3.10.32
      bd2665a kernel-yocto: always checkout machine branch when existing validate_branches
      83b20f8 gcc: Enable SPE & AltiVec generation on powepc*linux target.
      9744e0f oeqa/targetcontrol: make BaseTarget an abstract class
      a18cd65 oe-selftest: Fix for test_rm_old_image
      6a606f9 libnotify: don't use gnome.bbclass
      ae59f6f qt-mobility: fix metaobjectbuilder build errors
      b367545 mailx: fix the path to sendmail interface
      643d3ab libnotify: Fix separate build dir support
      1c592a8 telepathy-mission-control: upgrade to 5.16.1
      116c1b5 telepathy-glib: upgrade to 0.23.2
      44c690e bluez5: upgrade to 5.15
      172d150 dbus: proper error handler should be given after send_negotiate_unix_fd failed
      4259e6e uboot-config.bbclass: Skip the package if no valid configuration is found
      8a33c5d python3: Fix race condition at high parallelism factor
      5c6d9a1 adt_installer: fix issue with x86_64
      8d13b43 core-image-minimal-initramfs: Use PACKAGE_INSTALL instead of IMAGE_INSTALL
      d2f5f2b systemd: sed installed file instead of original
      49cdb68 base-passwd: sed installed file instead of original
      370b2d8 base-files: sed installed file instead of original
      d9d6f01 initrdscripts: Add rootimage option
      ad30740 base: Remove pointless createCopy/update_data calls
      5ab9d7e security-flags: Avoid lttng-tools issue on arm
      4f976b8 security-flags: Deal with powerpc build issues
      8117e01 security_flags: disable PIE flags for cups builds
      e47afff runqemu: Use readlink instead of realpath
      a76ac78 dpkg-compiler.m4: remove -Wvla (fix build on CentOS 5.8)
      da93a41 dpkg: fix a link problem for dpkg-native on CentOS 5.8
      f66f4b0 grub: exclude .pc from POTFILES.in (fix build on CentOS 5.8)
      9a2717f sqlite: rename to match upstream versioning
      3ab2b7f oeqa/targetcontrol: properly get the host ip
      16d271c package_manager.py: create index files for all backends in PACKAGE_CLASSES
      72576e2 bitbake: hob: replace the use of hob-toolchain with populate_sdk task
      fe4b1ca meta-hob: remove hob-toolchain since this is not needed anymore
      38057c4 sqlite3: Update to 3080301
      824cc75 package_manager.py: correctly handle empty opkg-query-helper.py output
      1571cf6 poky-lsb.conf: fix the include path for security_flags
      b3f1353 poky: Drop seperatebuilddir.inc, its included in the core now
      bf33e93 distro/defaultsetup: Add seperatebuildddir.inc
      05978b0 pango: upgrade to 1.36.2
      bff8e35 curl: upgrade to 7.35.0
      e4ef6bb sstate: Drop 'SafeDep' code from setscene validation function
      4584968 package: Drop do_package_write task
      9161a6f documentation.conf: add a few missing task descriptions
      e4d1779 classes/utility-tasks: make do_listtasks a little more friendly
      ae12658 classes/package_tar: fix conflicts with package_deb / package_ipk
      d7eb0f5 classes/sstate: fix taints being undone on execution of sstate tasks
      6189096 lib/oe/rootfs: Fix LDCONFIGDEPEND check
      a1faa7d bitbake: fetch2: Fix mirror repo tarball creation
      dd43700 bitbake: runqueue: Catch ValueError from pickle.loads
      f5a3444 bitbake: ast: Fix support for anonymous methods in wildcard .bbappend files
      2b7edd5 lz4: fix CC
      6a708c3 x246: Disable Altivec asm when SPE is enabled.
      8d7dd9a image_types.bbclass: fix cpio IMAGE_CMD to preserve working directory
      6ffc156 manifest.py: remove redundant import line
      3ccc90c rootfs.py: tweak _multilib_sanity_test for ipk incremental image generation
      ec87d0c rootfs.py: support BAD_RECOMMENDATIONS for ipk incremental image generation
      1d4462d rootfs.py: support ipk incremental image generation
      af9e8e9 package_manager.py: support ipk incremental image generation
      f4de839 manifest.py: add create_full for OpkgManifest class
      363b7c9 psmisc: Update to 22.21
      d48b9c9 libglade: don't use gnome.bbclass
      425dc69 runqemu: Ensure ROOTFS path is absolute
      dffa543 insserv: enable ptest support
      4590a00 gtk+3: upgrade to 3.10.7
      b8c50fb git: update to 1.9.0 release
      40f3e48 openssh: enable PAM at runtime based on DISTRO_FEATURES
      27b81ef update-rc.d.bbclass: fix inhibit check
      df520a6 uclibc: Add new functionality needed for systemd 209
      dc9f7d7 valgrind: integration of regression tests to ptest
      bb0c269 wic: Make exec_native_command() fail if a command isn't found
      8e894d1 wic: Fix exec_native_cmd() path
      be98ee8 image-vmdk.bbclass: Don't force syslinux timeout
      8e08ff4 opkg: Upgrade to v0.2.1
      b88321a recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issues (part 2)
      7c75e86 package_manager.py: Fix $i -> %s in bb.note
      e15bec0 libpcre: enable ptest support
      d32189a opkg: Fix add-exclude.patch
      00e503a gstreamer1.0-plugins-good: removed dependency on gconf
      27a4be0 gstreamer1.0-libav: upgrade to 1.2.3
      bfd5fa4 gstreamer1.0-plugins-bad: upgrade to 1.2.3
      f616647 gstreamer1.0-plugins-ugly: upgrade to 1.2.3
      36f9ea8 gstreamer1.0-plugins-good: upgrade to 1.2.3
      5b1018a gstreamer1.0-plugins-base: upgrade to 1.2.3
      0ce3a21 gstreamer1.0: upgrade to 1.2.3
      80b1ddc libvorbis: upgrade to 1.3.4
      bac8905 populate_sdk_*.bbclass: remove left over bash routines
      7e595a5 buildhistory.bbclass: fix creation of installed packages list
      1988f71 package_manager.py: fix installed package list creation for Opkg/Dpkg
      84210fd lib/oe/image.py: add image dependency mechanism
      f866b2e image*.bbclass, bootimg.bbclass: add image type dependencies
      6664826 avahi: handle SO_REUSEPORT not being available
      0bdf56f mesa: upgrade to 9.2.5
      e49eff1 libxkbcommon: Add PACKAGECONFIG for x11
      bc124da image_types: minor, inline CPIO_TOUCH_INIT()
      4166062 cml1.bbclass: Add diffconfig task to cml1
      07e59b5 kernel-yocto: Add do_diffconfig task
      ccb0a58 lighttpd: introduce /etc/lighttpd.d subdir for config file includes
      39b98e4 runqemu-export-rootfs: Fix missing # in comment
      5456200 image_types.bbclass: Fix tar IMAGE_CMD to not change directories
      3f9334b uclibc: Update to git tip
      a8daee2 binutils: ld-is-gold should not affect native and crosssdk recipes
      f5205c5 icu: Disable the default LDFLAGSICUDT for target compile
      f9b100e rootfs.py: Check for LDCONFIGDEPEND being empty string
      2e7dd29 eglibc: Upgrade from 2.18 -> 2.19
      07f49c3 valgrind: Add glibc 2.19 awareness
      9f77ba3 Revert "lib/oe/image.py: fix working directory"
      ac499f0 dev-manual: Fixed code block example for ARCHIVER.
      deb3859 bitbake: toaster: implement package summary page
      77eeb42 bitbake: toaster: implement recipe summary page
      994236e bitbake: toaster: Make popovers mutually exclusive
      49a81f0 bitbake: toaster: Make popovers scrollable
      ec79df9 bitbake: toaster: Make all targets links to the build dashboard
      877f87b bitbake: toaster: Select a radio button by default in Filter Dialog
      f8f448e bitbake: toaster: Fix for task_color tag
      155302a bitbake: toaster: Apply error style to cell links
      2e3fee7 bitbake: toaster: Make "Edit columns" multiselect
      97c81e0 bitbake: toaster: fix javascript for table filters
      4157c38 bitbake: toaster: Add clear filter button to filter tooltips
      985017a bitbake: toaster: Clean up main.js
      b4416e3 bitbake: toaster: Clean up default.css
      620553d bitbake: toaster: Implementation of package detail views
      4763437 bitbake: toaster: Added sorting to other columns in All tasks table
      6f38844 bitbake: toaster: Fix builds view filter options to match changes in filter dialog
      fd86e0e bitbake: toaster: Filter Dialog fix to display filter options as radio buttons
      2b2d3d6 bitbake: toaster: Removed unused 'disabled' css class in Filter dialog
      3f49597 lib/oe/image.py: fix working directory
      d66b3d8 bitbake-prserv-tool: make help text show .conf suffix
      46bc59d runqemu: add ability to skip using an existing tap device
      b448cf7 openssl: Fix build on uclibc
      94ba459 usbutils: Patch to detect iconv support
      c33c645 rpm: fix a endian incompatible error in generating tag
      0008cd6 bitbake: build: fix handling of task override for tasks with underscores in their names
      a56bd81 bitbake: parse: make vars_from_file return None for non-recipes
      e469b0a matchbox-keyboard: daemonize launch
      b582957 classes/populate_sdk_base: optimise task dependencies
      77a53c5 classes/populate_sdk_base: fix race condition with do_rootfs
      8dff4af eglibc-locale: add eglibc-gconv to PACKAGES_DYNAMIC
      9d2594e bitbake.conf: add BBINCLUDED and BB_INVALIDCONF to config hash whitelist
      8664a2a recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issues
      e7d41d3 wayland: upgrade to 1.4.0
      c8cf900 weston: upgrade to 1.4.0
      a204c1e package.bbclass: do_split_packages should always return something.
      8a0a958 nspr: Update to 4.10.3
      b388acd libcheck: Update to 0.9.12
      6168aff libxkbcommon: Update to 0.3.2
      f73b951 man-pages: Update to 3.56
      168d50e help2man: Update to 1.44.1
      2d05f57 classes/cpan-base: fix signatures changing when perl is in sysroot
      ef15760 diffstat: enable ptest support
      0f03282 attr: enable ptest support
      29a7e79 acl: enable ptest support
      4dcd9d6 lib/oe/package_manager: Make empty package directories non-fatal
      088642f adt-installer: Disable multilibs
      3221d97 bitbake: runqueue: Fix silly variable overlap
      155f8a4 package_manager.py: move multilib prefix list computation function to RpmIndexer
      4b967d9 linux-yocto/3.10: enable CONFIG_FHANDLE for standard and preempt-rt kernels
      9be7acc linux-yocto/3.10: add minnow-io feature to LTSI
      3fefbe3 linux-yocto/3.10: arbitrary write with CONFIG_X86_X32 (CVE-2014-0038)
      088677a linux-yocto/3.10: update to v3.10.28
      94a9df2 systemtap_git: update to newer version to fix a build issue
      b38c7cb socat: upgrade to 1.7.2.3
      0db0bb6 image_types: sum.jffs2 is replaced by jffs2.sum
      aed1f0c image_types bbclass: use compression framework for jffs2 sum images
      b563b3b flex: enable ptest support
      e089580 flex: upgrade to 2.5.38
      cb0fe9b flac: upgrade to 1.3.0
      da0a4c7 report-error.bbclass: new class to save build information when errors occur
      4cc0a43 package_*.bbclass: remove references to the old bash indexing routines
      56a866b package-index.bb: use the new python indexing routines
      a0a0450 package_manager.py, rootfs.py, sdk.py: add Indexer class
      aed96f6 systemd: Refresh patches for uclibc
      b60ed2d bitbake: runqueue: Ensure we do run 'masked' setscene tasks if specified as targets
      a2a20ad runqemu: enforce right CPU type for qemux86/x86-64
      6a6cdad buildhistory.bbclass: create wrapper functions around buildhistory_get_sdk_installed
      f8593b6 hwatdetect: Fix build failures from undeclared INC_PR
      ee151ed lib/oe/rootfs.py: fix RPM multilib issue
      abf22be Revert "nss: avoid to use the hardcode kernel version"
      937a12d kernel.bbclass, base.bbclass: Fix support for old kernel configuration
      adc2172 initscripts: fix syntax error in postinsts
      01268c3 nss: avoid to use the hardcode kernel version
      e091548 (image|rootfs_ipk).bbclass, rootfs.py: ipk multilib fixes
      0fc98a6 puzzles: upgrade to r10116
      d5909eb busybox-syslog: add more comments to systemd configuration file
      4794dee sysstat: upgrade to 10.2.1
      716557a package: Remove the before do_build constraint of the do_package task
      4db39d2 meta/recipes: Remove virtclass references
      3d0dccd oeqa/runtime: smart: don't run in auto mode when rpm is not the pm
      bfed4c0 harfbuzz: upgrade to 0.9.26
      5bffece telepathy-mission-control: typo in connectivity switch
      b70a10c systemd-serialgetty: Update to match version in recent systemd
      7b317cd initscripts: mask initscripts from systemd
      92cad72 curl: fix https certificate problems
      3273473 systemd: Enable building microhttpd via PACKAGECONFIG
      f7b44fe gmp: add configure.ac patch to append user provided compilation flags
      8d17c39 sstate: Exclude SSTATE_EXTRAPATH from checksums
      4021080 classes/buildhistory: avoid buildhistory triggering rebuilds (again)
      93a4de6 rt-tests: version bump to 0.87
      f60f802 license.bbclass: Dont create a manifest when using BUILD_IMAGES_FROM_FEEDS
      9c61b63 bitbake: user-manual-metadata.xml: Edits to the "Sharing Functionality" section.
      d110f55 bitbake: user-manual-metadata.xml: Edits to "Conditional Syntax (Overrides)"
      decc756 bitbake: user-manual-metadata.xml: Edits to "Defining Pure Python Functions"
      2fc9281 bitbake: user-manual-metadata.xml: Edits through syntax section
      a2e5746 bitbake: user-manual-intro.xml: General edits to Introduction chapter.
      3cdf800 bitbake: user-manual-metadata.xml: Added "Checksums (Signatures)" section.
      89058e1 bitbake: user-manual-ref-variables.xml: Review edits to several variables in glossary.
      ddcd91c bitbake: user-manual-ref-variables.xml: Added 11 new variables to glossary.
      081d31c bitbake: user-manual-ref-variables.xml: Edits to FILESPATH.
      825366d bitbake: user-manual-ref-variables.xml: Added 6 new variables to glossary:
      5f59a85 bitbake: user-manual-ref-variables.xml: Edits to PREFERRED_PROVIDER.
      658d885 bitbake: user-manual-ref-variables.xml: Added PREFERRED_PROVIDERS to glossary.
      dac581d bitbake: user-manual-ref-variables.xml: Added FAKEROOT* variables to glossary.
      606e2cb bitbake: user-manual-ref-variables.xml: Added BB* variables to glossary.
      799ba9a poky.conf: Add Debian-7.4 to SANITY_TESTED_DISTROS
      287efe1 useradd-staticids: Adjust USERADD_ERROR_DYNAMIC condition and error message
      39d9414 useradd-staticids: Fix groupadd when --user-group is selected
      a146d50 ref-manual: Edits to OEROOT variable.
      3e54f28 ref-manual: Added link to SDKPATH variable.
      f670e3a ref-manual: Edits to ROOT_HOME
      f084e33 ref-manual: Added ROOT_HOME to glossary.
      776c33e ref-manual: Added SDKPATH to glossary.
      ec0f9cf ref-manual: Updates to BB_NUMBER_THREADS and PARALLEL_MAKE.
      beb54ff ref-manual: Adds x11 to Distro Feature list.
      5518885 linux-yocto: Use PACKAGE_ARCH in build dir
      ab9c345 linux-yocto/3.10: add powermanagement config to 32 bit common-pc
      897d13a linux-yocto/3.10: integrate LTSI
      afc4431 package.bbclass: fix strip and split logic
      e9c1191 python-smartpm: really ignore conflicts during install with --attempt
      f962396 conf/bitbake.conf: default HOMEPAGE to blank instead of unknown
      2882b13 testimage: fail if no package manifest is found
      6d0f1d3 oeqa/utils: targetbuild: take proxy into account
      2bdc00f kernel: use oldnoconfig before yes '' | make oldconfig
      b6bfcaa kernel: stop using -exec rm for deleting files
      6bf21ce systemd: Fix misc journald memory bugs
      410a3e1 bitbake: runqueue: Fix setscene hard dependency problems
      b2c7cc7 image.py, package_manager.py, rootfs.py: dump command output on error
      12f47c2 lib/oe/package_manager.py: RpmPM: fix issue with multilib builds
      847591e lib/oe/package_manager.py: check that package list is not empty
      f4fa44c rootfs.py, package_manager.py, sdk.py: Fix building from feeds feature for opkg
      ab8cbf3 lib/oe/package_manager.py: OpkgPM, bad recommendation handling change
      8af5565 lib/oe/package_manager.py: do not use stamps
      d3a3b87 lib/oe/rootfs.py: OpkgRootfs, fix issue in _get_delayed_postinsts()
      365b779 lib/oe/package_manager.py: OpkgPM/DpkgPM fixes
      b76f240 lib/oe/image.py: fix image size calculation routine
      ce12c1b lib/oe/package_manager.py: DpkgPM, use lock on deploy dir
      a150272 scripts/postinst-intercepts: do not redirect errors to /dev/null
      38ffed4 lib/oe/rootfs.py: warn the user if intercept hooks fail
      65a2869 lib/oe/package_manager.py: RpmPM fixes
      4a6596d lib/oe/package_manager.py: moving global SCRIPTLET_FORMAT and DB_CONFIG_CONTENT to RpmPM
      c8f41d7 package_manger.py/rootfs.py: rename save_rpmpostinist with save_rpmpostinst
      9d3c187 populate_sdk_rpm.bbclass: remove old shell code
      ed89fd2 lib/oe/rootfs.py: fix invoking _run_intercepts failed
      9c71ee0 lib/oe/package_manager.py: fix invoking rpm save_rpmpostinist failed
      4df92c6 lib/oe/rootfs.py: fix invoking rpm _handle_intercept_failure failed
      62c625e Cleanup rootfs_rpm,package_rpm bbclass files
      4d8982a image.bbclass/populate_sdk_base.bbclass: shift position of sdk complementary install definition
      ee175b5 lib/oe/sdk.py: support RpmRootfs
      e28b78a license.bbclass: fix license_create_manifest failed
      1a1ba04 image.bbclass/license.bbclass: ajustment list_installed_packages invoking
      f5d35ab lib/oe/image.py: fix get rootfs_extra_space failed
      3bc7a4f rootfs.py: strip kernel-abiversion useless readline
      a49d9f8 rootfs.py: fix uninstall uneeded pkgs failed
      9efc87a lib/oe/rootfs.py: Tweak the rootfs removing operation
      f02cf46 lib/oe/rootfs.py: support RpmRootfs
      c8103fb lib/oe/package_manager.py: support RpmPM
      dff8a59 lib/oe/manifest.py: add rpm image manifest creation
      cb13771 populate_sdk_(deb|ipk).bbclass: remove old shell code
      e5a1642 image.bbclass: change POPULATE_SDK_POST_TARGET_COMMAND
      039ba41 populate_sdk_base.bbclass: activate the new python routines
      09c508a lib/oe/sdk.py: add SDK class
      080ce63 lib/oe/package_manager.py: fixes for dpkg backend
      0b47dc4 lib/oe/rootfs.py: use Manifest.INSTALL_ORDER
      b91e800 lib/oe/manifest.py: create manifests for SDK too
      aaa92a6 image.bbclass, lib/oe/rootfs.py: remove intercept_scripts directory
      f52391a Cleanup image,rootfs_ipk,package_ipk bbclass files
      31906d8 lib/oe/rootfs.py: add support for opkg backend
      ed83ace lib/oe/package_manager.py: add support for opkg backend
      2979098 lib/oe/package_manager.py: use the bitbake APT_ARGS variable
      1b3e7f0 lib/oe/package_manager.py: add deploy dir locking mechanism
      2ead36f lib/oe/manifest.py: create global variables for package types
      ab14336 package_(deb|ipk).bbclass: remove the stamp when creating package from cache
      fdd40ce oe/manifest.py: Add manifest creation for opkg
      7fc9bda Activate the new python rootfs/image creation routines
      85cc53a lib/oe/rootfs.py: add new library for rootfs creation
      e1bb8a6 lib/oe/package_manager.py: add new package management library
      5d34962 lib/oe/manifest.py: add library for image manifest creation
      8cfe555 lib/oe/image.py: add new image creation library
      7b84097 lib/oe/utils.py: add pre/post process helper function
      095bb00 bitbake: bitbake: build.py: create separate function for shell trap creation code
      5232ba8 useradd.bbclass: Add ability to select a static uid/gid automatically
      edbf9ef python-pycurl: upgrade to 7.19.3
      3bfb713 xserver-xorg: upgrade to 1.15.0
      a493de4 xf86-video-intel: add compat patch for xorg >= 1.14.99.2
      824d7a5 presentproto_git.bb: add recipe
      214bf91 xf86-input-synaptics: upgrade to 1.7.3
      2a5d40d libmpc: upgrade to 1.0.2
      a57f2be xkeyboard-config: upgrade to 2.11
      bafd0c1 libdrm: upgrade to 2.4.52
      a1cc996 xtrans: upgrade to 1.3.3
      c51f1b1 xcb-util-wm: upgrade to 0.4.0
      21e0bd7 gdb: upgrade to 7.6.2
      0ab75b9 xextproto: upgrade to 7.3.0
      fa0c091 nasm: upgrade to 2.11
      9203c87 binconfig: mangle ${base_libdir}
      4bc6982 useradd.bbclass: Add ability to select a static uid/gid automatically
      72288dd useradd.bbclass: Fix build time install issues
      ac656fb scripts/oe-selftest: return based on the test results
      ccb256e minicom: updated download link
      ed2f7a2 gdk-pixbuf: enable ptest
      3ec94b6 gnome-desktop-testing: upgrade to 2014.1
      df634f3 wic: Honor --size for --source partititions
      8d008aa jpeg and directfb: cosmetic, fix perms for patches
      a1240a5 rootfs_deb: Fix whitespace issue
      9776dbd systemtap: add aarch64 support
      d7c0e00 oeqa/utils: targetbuild: don't use bb.fetch anymore
      4354cb2 lib/oeqa: add module for running tests outside of the build system
      731acba testimage: add ability to export tests
      da1331b classes/populate_sdk_base: remove nostamp from do_populate_sdk
      3a42fa6 bluez5: upgrade to 5.14
      7496c64 sbc: upgrade to 1.2
      3c9b3ef ossp-uuid: Use alternative source mirror
      b1d29ef openssh: drag in required PAM modules.
      231634d openssh: package sshd PAM config inside openssh-sshd package
      4a85e26 binutils: Add backports to resolve systemd (from git) breakage
      c7ee4de systemd-compat-units: Handle nfs scripts
      3a590e8 build-appliance-image: Update to poky commit b37dd451a52622d5b570183a81583cc34c2ff555
      d4a1eec package_regex.inc: fix a minor typo
      d4456f5 pcmanfm: apply a patch to the source, not a generated file
      b075ddb distcc: rename systemd service to distcc
      bc7a5b9 glib-2.0: fix race in parallel builds
      4217302 systemd: add a hard dependency on udev=$EXTENDPKGV
      fa1b8ae iproute2: split out package for tc
      45ccb49 systemd-compat-units: don't mask dbus, the recipe does this itself
      3ca2ae1 dbus: mask the dbus-1 init script if using systemd
      618931e classes/buildhistory: write out files in UTF-8 format
      4e9eb77 sstate: Improve funciton checksums
      707cdcf bitbake: data: Account for pre/postfunc functions when calculating dependencies
      82f9c2b wic: Hook up --debug option
      94b805f wic: Hook up BootimgEFIPlugin and BootimgPcbiosPlugin plugins
      e663d2f wic: Add BootimgEFIPlugin and BootimgPcbiosPlugin
      73ce090 wic: Add SourcePlugin class
      363488f wic: Add wic-specific bootloader subclass
      3cb9301 wic: Create and use new functions for getting bitbake variables
      534d9ba wic: Move some common items to oe.misc
      1ddc105 binutils: Package additional file when using ld-is-gold
      c8962ab oeqa/runtime/systemd: remove race in settle()
      6b7b9ea tcl-native: Depend on zlib-native
      76f52a8 insane: Fix python function whitespace changes
      220f4f5 classes/buildhistory: fix expansion of escape sequences
      b37dd45 rootfs_ipk: Ensure that BAD_RECOMMENDATIONS are honoured for all architectures
      6d989d0 lttng-ust: Move lttng-gen-tp to ${PN}-bin
      cc169c9 image.bbclass: Also uninstall update-alternatives and shadow for read-only-rootfs
      88a6b2b base-passwd: Remove unnecessary DEPENDS
      9341575 wireless-tools: Upgrade 29 -> 30.pre9
      0deebd1 libcgroup: Add bison-native and flex-native in depends
      c99622e lib/oeqa: allow multiple layers to provide their own TEST_TARGET class
      6e59874 glib-2.0: fix handling of skipped tests
      152679d meta/recipes-core/base-passwd/base-passwd/noshadow.patch: Split it into two parts
      b96375b libpng: upgrade to 1.6.8
      d4b11e8 binutils: Upgrade to 2.24
      a42f846 nss: Add nativesdk to BBCLASSEXTEND and bugfix
      092afbc nspr: Added nativesdk to BBCLASSEXTEND
      0b30e6e nativesdk-packagegroup-sdk-host: Adding nativesdk-postinst-intercept to SDK
      8f76b91 postinst-intercept: New recipe to include postinstall intercepts in nativesdk
      ad9b3e2 python-setuptools: Remove its provided by python-distribute
      aacfd00 python-distribute: Add recipes for python2 and python3
      6a539a7 python_2.7.3.bb: Inherit python-dir
      1c8869b python3: Add target and native recipes
      3f57c71 distutils: Introduce PYTHON_ABI variable
      0221af0 classes: Add distutils for python3
      8314590 classes/distutils: Introduce PYTHON_PN
      867b1ee package_rpm.bbclass: Trigger the regexp on exact keyword match
      962ea3d python3native.bbclass: Add python3 abstraction class
      c1a3286d python-3.3-manifest: Add python3 manifest file
      31a48f4 generate-manifest-3.3.py: Add script to generate python 3.3 manifests
      358dd84 sstate-cache-management.sh: don't remove all packagedata sstate archives
      7010358 sstate-cache-management.sh: Fix available architectures
      6d295ce sstate-cache-management.sh: Show total number of files when showing how many will be deleted
      a397dec sstate-cache-management.sh: Fix rm_by_stamps() to work after SSTATE_SWSPEC change
      a8a7e7b sstate-cache-management.sh: Fix remove_duplicated() to work after SSTATE_SWSPEC change
      731a745 scripts/cp-noerror: Avoid a race
      48bcbc3 meta-yocto: rename busybox's bbappend file to match the current version
      f7e6513 Revert "poky-tiny: Assume pkgconfig is provided"
      b214684 apmd.service: Fix typo (not mandatory EnvironmentFile prefix)
      7538e25 minicom: fix for multilib and x32 build crash
      a1dff02 oeqa/runtime: syslog: update --help test
      5baa8be procps: make the 'watch' command register to /bin/watch
      95ff97e coreutils: move 'stat' to base_bindir_progs
      d22f12c meta-skeleton: rename busybox's bbappend file
      b1ea345 busybox: upgrade to stable 1.22.1
      4720817 sanity.bbclass: check that TMPDIR is not located on nfs
      3ab4a2b sysvinit: add initscripts-functions to RDEPENDS
      021129a update-rc.d: automatically rdepend on initscripts-funtions
      85b3ba9 Revert "Add missing RDEPENDS of initscripts-functions"
      c2bb0ce parted: enable ptest support
      7c66dcc curl:Fix multilib header conflict - curl/curlbuild.h
      e65422f Add Cortex A7 support for NEONv2 & FPv4
      c914e27 mdadm: fix build on qemumips64
      1712cd6 e2fsprogs:fix build native package error
      1dd7fd6 oeqa/utils: sshcontrol: rewrite the SSHControl class
      e54c1ad quilt: add ac_cv_path_BASH to CACHED_CONFIGUREVARS also for native
      81325a4 ltp: fix ffsb ftbfs on cross-compiled environment
      815261a ltp: fix comment to refer to oe-core instead of poky
      7f06b03 ltp: update ffsb-6.0-rc2 license file path
      2cb8a4e ltp: drop do_unpack_append/do_extract_tarball
      2752118 ltp: fix style using oe-stylize (no changes in the content of the recipe itself)
      2e09b7c ltp: update SRC_REV to LTP 20140115 release
      0031db1 kernel.bbclass: Fix empty modules directory QA issue
      4a8ddd8 syslinux: fix booting memtest86+ using pxelinux regression
      1ae1b28 unfs3: Fix compile regression from unfs3 port
      d93620b bitbake: runqueue: Fix race against tasks sharing stamp files
      5e6db9d gcc: Include patch scheduled for GCC 4.8.3 to fix epilogue on ARM
      964a590 libtool: Set CONFIG_SHELL for nativesdk
      56c21bd db: Fix libtool linking against local libstdc++.so
      600dcd9 cogl: Place the patch in the correct directory
      28ba0fb toaster.bbclass: save original package name
      c31a045 documentation.conf: update task descriptions
      3f8f70b package.bbclass: Show which files require given dependency in debug output
      ee045ee package.bbclass: Don't search for providers of PRIVATE_LIBS
      5f4fdf8 cogl: kms: include necessary header for size_t
      d4e57a7 unzip: Pass LDFLAGS to the linker
      a2cefa0 oeqa/runtime: smart: fix adding channels
      db1a2a6 oeqa/runtime: drop restartTarget method
      245ee16 qemu: Allow building without X11 support
      8ef4a3c unfs3: Fix dependencies and allow target builds
      321cd5a pkgconfig: Drop glibconfig from SRC_URI to unbreak builds after previous commit
      9f6cd59 pkgconfig: remove out-dated configure options and dependencies
      ced097e python-numpy: don't search host directories for libraries
      9532004 scripts/runqemu-internal: use -cpu core2duo for qemux86-64
      82893ff oeqa/runtime: rpm: fix finding the test rpm file
      bfa46b6 bitbake: user-manual: Fix issue with previous revert
      14778a8 bitbake: Revert "usermanual: Updated CC License to version 3.0"
      37f6013 udev: fix typo
      6eaf5b8 packagegroup-core-standalone-sdk-target: Add qemuwrapper-cross to target sysroot
      7bbaf8b cml1.bbclass: Fix return code handling in do_menuconfig()
      58df7bb wpa-supplicant: Add dependency on openssl
      af1a44a multilib.bbclass: fix Multilib QA Issue
      f328a9d buildhistory.bbclass: Improve robustness in image file listing
      d955d6a bitbake: siggen.py: fix the SignatureGenerator()
      30bfec0 bitbake: runqueue: Simplify pointless len() usage
      9a46332 bitbake: hob: No need for enable_proxy and same_proxy in conf file
      914e50e bitbake: hob: Don't always save proxy values in conf file
      d246112 bitbake: hob: don't display interruptions as fails
      1b6e11c bitbake: hob: unsetting busy cursor after hitting Stop button
      14e548d bitbake: bitbake: hob: check if parser has attribute 'shutdown'
      f43c2d8 bitbake: hob: change error_msg for CommandFailed event
      3c5b683 bitbake: cooker: Add option of specifying indvidual tasks for targets
      b3bb841 lib/oeqa: sshcontrol: Allow alternate port for SSHControl
      51cccb7 combo-layer: Make directories only if they don't exisit yet
      bede5a4 lz4: actually install things
      933f6d4 rpcbind: fixes crash during start
      2f4bddc tiff: flesh out PACKAGECONFIG
      464c120 oe-selftest: New tests for sstate relocation
      a329371 scons bbclass: enable parallel make
      2fedfdc runqemu, runqemu-internal: Allow slirp for NFS and KVM use
      96b24e7 runqemu-export-rootfs: update for unfs3
      57d269a unfs-server: Remove unfs-server recipe and patches
      8dd861d runqemu: Use the newer unfs3 for serving user space nfs
      cac76ff unfs3, unfs-server: Replace all instances of unfs-server with unfs3
      162dd38 unfs3: Add a NFSv3 user mode server for use with runqemu
      b3bb9c7 dpkg: use systemd service for first boot configuration
      1ec04bb image.bbclass: fix paths to run-postinsts
      4186d78 systemd-compat-units: remove run-postints service
      79f2bb4 run-postinsts: Add systemd service file
      78484bf run-postinsts: remove the init script after a clean start-up
      8b576ac sanity.bbclass: check required perl modules
      ffecae7 linux-firmware: split out ATI/AMD Radeon firmware
      a565ebd feature-arm-thumb: Fix missing t2 suffix for armv7a MACHINEs
      76ea30f opkg-utils: Add RPROVIDES/RREPLACES/RCONFLICTS to fix upgrade-path
      24fc116 connman: upgrade to 1.21
      2eacc87 minicom: upgrade to 2.7
      624c648 libpcap: upgrade to 1.5.3
      6a7a210 neard: upgrade to 0.14
      17e6df6 initscripts: define failure/success/warning/pass functions
      e1780a2 gawk: enable ptest support
      1f45bc3 libcgroup: Update to 0.41
      e111e7e lsbinitscripts: Update to 9.52
      909486e lib/oe/patch.py: Prefer "git am" over "git apply" when applying git patches
      56236e7 cmake: Fix freetype detection
      f805cff speex: configure in float or fixed mode based on TARGET_FPU
      492240a alsa-utils: Add PACKAGECONFIG for udev
      66055fb package_{ipk, deb, rpm}.bbclass: support additional user-defined metadata
      be77f31 package.bbclass: add getter of additional metadata
      c467a01 at: add systemd support
      7c098b4 distcc: add systemd support
      dbfcfbf openssh: fixes for systemd
      ab2e677 dropbear: add systemd unit files
      330e5eb apr-util: enable ptest support
      8a30237 apr: enable ptest support
      519ec0e systemd: fix ptest to make it able to run on target
      5612e26 yocto-bsp: Add core2 and corei7 tune choice to x86_64
      279af93 yocto-bsp: Update substrate to use the new x86 tune files
      cb2b9b5 genericx86: Use require instead of include
      0e0c9ed genericx86: Use new x86 tune files
      9d66f32 genericx86-64: Use the core2-64 tune
      a5b13d4 genericx86: Use the core2 tune file
      ecb9813 local.conf.sample: Add automatic defaults for BB_NUMBER_THREADS and PARALLEL_MAKE
      ff1bdc1 doc: Update profile-manual to use new core2_32 tune name
      78bd3a1 eglibc-ld.inc: Update the inc file to match the new x86 tune
      9261d58 qemux86_64: Use the core2-64 tune
      a9e7868 tune: README: Typographical corrections
      776a335 tune: README: Document best practice
      e010be1 tune: README: Whitespace cleanup
      beac8c5 tune: Remove tune-x86_64.inc
      dff3daa tune-corei7: Add support for cpu-type corei7
      bf3cb2c tune: Make 32b or 64b explicit in tune name for core2
      4fdfeeb tune-core2: Only add the current ARCH to PACKAGE_EXTRA_ARCHS
      31d3449 tune-core2: Replace -mtune=generic with -mtune=core2
      3a39071 i586: Only add the current tune to PACKAGE_EXTRA_ARCHS
      939fec6 x86: Replace ia32 with x86 when referring to the generic architecture
      7217730 utils: Add a cpu_count wrapper function
      5280192 bitbake: user-manual-ref-variables.xml: Added 10 new variables to the glossary.
      6201d18 bitbake: user-manual-ref-variables.xml: Fixed references to "Build Directory".
      37ab088 bitbake: user-manual-ref-variables.xml: Editing pass.
      d51fb53 bitbake: template/titlepage.templates.xml: Suppress Title Text.
      4fb4928 bitbake: user-manual-customization.xsl: Updated param list to pass
      9dcd603 bitbake: user-manual-metadata.xml: Renamed section tag
      e501280 bitbake: user-manual-ref-variavbles.xml: Added new glossary chapter.
      bd41405 bitbake: user-manual-bitbakecommand: Various edits/cleanups
      5cce95c bitbake: user-manual-bitbakecommand: Standardise on section tags, not example
      2375f55 bitbake: user-manual-bitbakecommand: Replace screen tags with literallayout
      64f66d7 bitbake: user-manual-bitbakecommand: Reform whitespace
      32304ba bitbake: user-manual-bitbakecommand: Update help text output with that from bitbake master
      1669f39 bitbake: user-manual-fetching: Editing pass over the manual chapter
      123b978 bitbake: user-manual-fetching: Change varname/emphasis tags to filename
      0de491b bitbake: user-manual-fetching: Change screen -> literallayout
      d0c16f9 bitbake: user-manual-fetching: Change the file whitespace
      552d54f bitbake: user-manual-metadata: Clean up task documentation
      ac576f4 bitbake: user-manual-metadata: Clean up task flag section
      7b99bc0 bitbake: user-manual-metadata: Expand parsing process docuemtnation
      d6b8f74 bitbake: user-manual-metadata: Add section about layers
      76072ea bitbake: user-manual-metadata: Add section about INHERIT
      ab18cca bitbake: user-manual-metadata: Add section about running tasks and the environment
      8705fe2 bitbake: user-manual-metadata: Rework section about shell/python functions
      908fdb5 bitbake: user-manual-metadata: Add section about data store operations
      c676bf8 bitbake: user-manual-metadata: Add lists of common events
      c8892fc bitbake: user-manual-metadata: Editing pass over the manual chapter
      98b41e4 bitbake: user-manual-metadata: Use filename tags instead of literal and varname tags
      a0f3328 bitbake: user-manual-metadata: Replace screen tags with literallayout tags
      0e90d0f bitbake: user-manual-metadata: Update whitespace (no content changes)
      4dd8a0d bitbake: user-manual-metadata: Reorder sections to more logical order
      633db4f bitbake: user-manual-metadata: Add section ids for most sections
      437791a bitbake: user-manual-hello.xml: Added new chapter for "Hello World Example"
      1b08402 bitbake: user-manual.xml: Cleanup on the title page.
      3a9593d bitbake: user-manual-intro.xml: Re-write of BitBake introduction.
      a713dad bitbake: user-manual-intro: Various minor cleanups/improvements
      5b60a81 bitbake: user-manual-intro: Add obtaining bitbake and summary sections
      e925730 bitbake: user-manual-intro.xml: Added "Concepts" section.
      2038b85 bitbake: user-manual-intro: Update/improve whitespace
      2ee7747 bitbake: user-manual-intro: Expand introduction and fix spelling mistakes
      7c98419 bitbake: documentation: Add README based off the YP docs one
      a43f1b2 bitbake: gitignore: Update for recent docs changes
      bfa18b5 bitbake: user-manual: Separate out chapters into individual files
      034e490 bitbake: user-manual: Import YP Docs templates for usermanual improvements
      eeb4c71 bitbake: usermanual: Renamed manual dir to user-manual to be consistent.
      afac3d8 bitbake: usermanual: Updated CC License to version 3.0
      e5b3918 bitbake: toaster: fix package data gathering
      9677275 bitbake: toaster: fix builds page CSS and functionality
      594eeeb bitbake: toaster: Set .error styles for tables
      47d1923 bitbake: toaster: All Tasks Feature with sorting and filtering
      84b2390 bitbake: toaster: Implementation of recipe detail views
      b45defd bitbake: toaster: Implementation of base build details page
      05a684f bitbake: toaster: Added custom filter tags for use in templates.
      87776ca bitbake: toaster: Base table fixes for header text, sort icon and filter icon
      4acdf8a bitbake: toaster: Base html fix to set the page title
      dfd7a8a bitbake: toaster: settings remove duplicate entry
      baaab36 bitbake: toaster: Add initial tests
      b0b1acb bitbake: toaster: Toaster GUI Build and Dashboard pages fixes
      d27c7f2 bitbake: toaster: add jquery cookie plugin
      15e5290 bitbake: toaster: add vim modelines for .py files
      731a0ac bitbake: toaster: update Task classification fields
      3e1dbed bitbake: toaster: update Simple UI references to avoid conflict
      43a3f47 bitbake: runqueue: Only attempt to print closest matching task if there is a match
      9a4855b bitbake: fetch2/wget: Check downloaded file isn't zero size
      1a9226f libtool-cross/native: Force usage of bash due to sstate inconsistencies
      d11d782 Revert "e2fsprogs/populate-extfs.sh: fix a problem on dash"
      e40123a boot-directdisk: fix the support of vmdk
      7b171ed pybootchartgui: Add option -T to allways use the full time
      57c93e3 pybootchartgui: Adopt the width of the index in split output files
      9d492a4 pybootchartgui: Simplify adding processes to the trace
      ea27845 pybootchartgui: Correct the legend
      34a5d1e pybootchartgui: Make the -s option work again
      ff49d8e libtool: remove the unrecognized configure option
      42e122d cmake.bbclass: fix note when warning about deprecated variables
      1b0d621 adt_installer: do not install rootfs if target is not selected
      e9fae95 lib/oeqa: sshcontrol: fix false timeout failures
      a29d270 gdk-pixbuf: use PACKAGECONFIG to control loaders with external dependencies
      1e162c0 gdk-pixbuf: don't forcibly disable GIO sniffing, use PACKAGECONFIG.
      d59809c gdk-pixbuf: upgrade to 2.30.3
      eda6733 libxcb: upgrade to 1.10
      022e31f xcb-proto: upgrade to 1.10
      00b6157 glproto: upgrade to 1.4.17
      6e70474 poky.ent: Fixed broken OE_LISTS_URL.
      0fa2144 dev-manual: Updated the section that describes finding source code.
      76240de ref-manual: Updated the TCMODE variable.
      29b2fb6 ref-manual: Updated the nativesdk class to have correct class.
      350aeeb ref-manual: Updated native and nativesdk classes.
      a8261e9 ref-manual: Small wording change to WORKDIR variable description.
      96e3b42 ref-manual: Updated the WORKDIR variable description.
      0829757 dev-manual: Another small fix to the EXTENDPE definition.
      f477d27 dev-manual: Small fix to EXTENDPE definition in "Writing a New Recipe"
      3528ab3 dev-manual: Review edits to "Writing a New Recipe" section.
      b27a930 dev-manual: Added review comments to "Writing a New Recipe" section.
      5837061 poky.ent: Updated lists.linuxtogo.org with lists.openembedded.org
      52a17c7 mega-manual, dev-manual: Updated the recipe flow figure.
      ff4d949 dev-manual: Minor re-wording to introduce recipe flow diagram.
      ad54092 dev-manual: Edits to the "Writing a New Recipe" section.
      6a2456a ref-manual: Fixed cross-reference anchor name.
      3916613 ref-manual: Fixed cross-reference anchor name.
      e987fa8 dev-manual: Edits to the "Writing a New Recipe" section.
      a66675e ref-manual: Added note about curly brace parsing to BitBake chapter.
      c113777 ref-manual: Edits to TCLIBC variable.
      f0dff11 dev-manual: Edits to "Examples" and "Post-Installation" sections.
      b0fd1c3 dev-manual: Edits to "Testing" section.
      0d9959a dev-manual: Edits to "Packaging" section.
      a3224b8 dev-manual: Edits to "Enabling System Services" section.
      ab001ce dev-manual: Edits to "Installing" section.
      b6c0bae dev-manual: Edits to "Compilation" section.
      814e071 dev-manual: Edits to "Configuring the Recipe" section.
      7856430 dev-manual: Edits to the "Licensing" section.
      658761c ref-manual: Edits to the SPDXLICENSEMAP variable.
      6d65a98 dev-manual: Edits to "Unpacking Code" section.
      a1cb6db dev-manual: Edits to "Fetching Code" section.
      32d6960 dev-manual: Edits to "Running a Build on the Recipe"
      0e03166 dev-manual: Edits to "Storing and Naming the Recipe"
      8657f00 dev-manual: Edits to "Locate a Base Recipe" section.
      8eb6e7f dev-manual: Edits to "Locate a Base Recipe" section.
      1105b46 poky.conf: Remove Debian Squeeze from SANITY_TESTED_DISTROS
      a452c02 poky.conf: add Debian 7.3 to SANITY_TESTED_DISTROS
      a6c6659 sstate.bbclass: remove previous version's stamp
      4b62d9f e2fsprogs/populate-extfs.sh: fix a problem on dash
      0205603 linux-firmware: package Marvell SD8797 firmware
      ed9dca6 guile: don't use the identifier 'noreturn'
      c81d3ad bitbake: fetch2/git: Dereference unresolved tags with ls-remote
      d21c153 bitbake: fetch2/git: Anchor names when using ls-remote
      594c2e0 bitbake: fetch2: Improve invalid SRCREV error message
      453eb54 bitbake: fetch2: Sanity check SRCREV matches rev/tag parameter
      721d3d6 bitbake: fetch2: Clean up srcrev_internal_helper
      1180ec3 package.bbclass: show warning when package is providing already provided shlib
      bd938fe package.bbclass: move reading shlibs providers to separate function
      ea94e0f icecc: use exact match in blacklists, re-start with empty system_package_blacklist
      033671d icecc: Fix allarch and native recipes having different signatures
      cb714e1 icecc: use bb.utils.which also for 'as'
      a7b97cb icecc: Don't replace non-empty PARALLEL_MAKE with empty ICECC_PARALLEL_MAKE
      94802fd allarch: Set empty TARGET_PREFIX and TARGET_FPU
      9abc002 sstatesig: include native/cross/nativesdk deps in target signatures
      b908cac poky-tiny.conf: Add PACKAGECONFIG to disable opkg-utils python dependencies
      e0d8e2c linux-yocto-bsps: update reference BSPs to v3.10.25
      f3dbfbf opkg-utils: Remove strange PACKAGES native override
      e612e83 opkg-utils: Add basic PACKAGECONFIG for python dependencies
      6e15d32 glib-2.0: add explicit build dependency on DBus when ptest is enabled
      c97d01d oe-selftest: Patch sstate tests to work with new sstate-cache naming and content
      13c016e tcl: fix the TCL_INCLUDE_SPEC
      6644dac opkg/opkg-utils/chkconfig: Clean up u-a-cworth references
      11cff94 update-alternatives: We now use u-a in nativesdk so make sure the dependency is present
      6ed41e2 linux-yocto-dev: bump version to 3.13+
      bf7383d lib/oeqa: allow a layer to provide it's own TEST_TARGET class
      650ee5e x11vnc: fix CAPS_LOCK issues
      fa9f89c weston: depend on drm for 'launch' packageconfig enabled
      c76bf26 opkg: No longer PROVIDES update-alternatives
      ab5bea7 default-providers: Change update-alternatives provider to opkg-utils
      6de6281 opkg-utils: Upgrade to latest git HEAD
      cac6f81 wpa-supplicant-2.0: don't exit in pkg_postinst
      e036f2a glib-2.0: fix mapped file ptest
      49eaa0f glib-2.0: fix the dbus-appinfo test when running outside of X
      6dcc4e7 bitbake: fetch2/__init__.py: let try_mirror_url return correct value
      5e5a7fc bitbake: SignatureGenerator: Add empty implementation for dump_sigs
      7b580cd bitbake: fetch2/gitsm: Use ud.basecmd instead of hardcoding git
      a99fa6d bitbake: fetch2: Don't allow '/' in user:pass, fix branch containing '@'
      19c75e9 bitbake: siggen: Remove fsync that is causing performance issues
      cfd1520 oe-selftest: separated the SStateBase and SStateTests in different modules
      9229f25 oe-selftest: renamed sstate.py module to sstatetests.py
      31b8c56 oe-selftest: New object SStateBase cut off from SStateTests.
      f1f0787 util-linux: add reset.1 manpage in update-alternatives
      e917b07 initrdscripts: add $CMDLINE to init-live switch_root
      e4319b6 package_rpm: Fix a race with package_deb/package_ipk
      fd291d0 alsa-lib: remove hard-coded /usr/include in dev package
      527ad1c linux-firmware: add firmware for additional iwlwifi devices
      f6e170f nativesdk-packagegroup-sdk-host: reverse inherit order
      63cde72 allarch.bbclass: set SDK_ARCH and SDK_CC_ARCH to "none"
      e665db7 glib: add missing dependencies for ptest
      e927fdf weston: cleanup mesa depends
      e7f8537 linux-yocto/3.10: mohonpeak bsp config and scc files
      a166c2e linux-yocto/3.10: update to 3.10.25
      5d90065 linux-yocto/3.10: update meta data for media fragments
      cea75f9 ltp: fix makefile race
      375ac72 dbus-ptest: fix incorrect option name
      97d7e86 systemd-compat-units: remove dnsmasq from sysv disabled list
      21b4548 shutdown-desktop: use poweroff for the Exec field in the shutdown.desktop
      f5b5edd dbus-ptest: disable systemd
      e4c23f7 dropbear: Refresh pam patch so it applies against recent version
      253a58c eglibc-locale: Fix multilib builds to depend on the correct binutils
      ede5dbf python-nose: don't install as an Egg
      9209641 eglibc-locale: Fix previous dependency change to properly work in nativesdk case
      aafc91a python-nose: Add BBCLASSEXTEND for native/nativesdk
      8069a88 harfbuzz: Move ancillary binaries to ${PN}-bin
      e26908e security_flags: db can't use pie flags from gcc for security build
      cfa396b packagegroup-core-tools-testapps: add Piglit
      a61beff piglit: add (from meta-oe)
      971c2e0 waffle: add (from meta-oe)
      4ec9929 python-numpy: add (from meta-oe)
      7282635 python-nose: add (from meta-oe)
      d410a12 python-mako: add (from meta-oe)
      18e62b8 cmake: specify all install paths
      6d339b8 separatebuilddir: Drop cmake lines since cmake class has this as default now
      a4bcb3f grub-efi: remove configure patch, simply seed the cache
      5ccdc91 alsa-tools: fix the AUTOMAKE_DIR
      66d59b3 nativesdk-packagegroup-sdk-host: Cleanup strange darwin override
      8699cd4 ptest: d.keys() is slow, use a list instead
      a0bbc06 eglibc-locale: Fix depends on binutils
      b223b53 make: Disable floating guile dependency
      47d9fa8 image_types bbclass: add support for tar.lz4 and cpio.lz4
      2fa4364 kernel.bbclass: add support for LZ4 initramfs files
      21551f6 distrodata bbclass: add support for lz4 archives
      ff5a3e9 base bbclass: add support for lz4 compressed archives
      f6d3fca lz4: add r112
      d6ed40f cmake: default to out-of-tree builds
      3c6fde0 separatebuilddir: build libproxy and taglib out of the source tree
      6aafc52 cmake: respect ${S} and ${B}
      d4ad8f7 grub git: update to latest git
      90e8429 libproxy: Update to 0.4.11
      a90fb7b libacpi: Fix GNU_HASH problem
      a8a6ccb libidn: disable C# directly
      5fc79e3 sudo: upgrade to 1.8.9p1
      e13cb5a man-pages: upgrade to 3.56
      ec7ad9a cups: upgrade to 1.7.1
      616e5de util-linux: Add fstrim utility
      0c68bcf libsdl2: upgrade to 2.0.1
      64a7cce cdrtools-native: upgrade to 3.01a20
      9c1c4ce chrpath: upgrade to 0.15
      6c93994 dropbear: upgrade to 2013.62
      ad6f3ea ptest.bblass: Fix package QA issues when disabled
      f543a8e systemd-compat-units: do not mask available services
      af5e693 dbus: Remove stray semicolon from SRC_URI
      cc8170f oeqa/runtime/systemd: wait for services to start/fail
      1b63617 bitbake: toaster: Toaster GUI, generic search, filter and order
      5482409 bitbake: toaster: Build dashboard implementation
      2251426 bitbake: toaster: Create the base page navigation structure
      c2fc6ca bitbake: toaster: update static media for Toaster GUI
      47621ec bitbake: toaster: clone Simple UI as base for Toaster GUI
      8172f24 terminal.bbclass: do not export PS1
      fef8709 package: Keep global pkgfiles[] up to date when snapping library symlinks
      7ef0f55 binutils: Also add autoconf-native to DEPENDS
      8b0be3f kernel-module-split: Remove extraneous call to depmod from module postinst
      21c5cb7 libsoup: Remove libproxy from DEPENDS
      96f7bd5 grub: add PACKAGECONFIG for device-mapper
      54ee387 qemu: Remove stray .git files after unpacking
      7be3064 busybox: lineedit: initialize delptr
      b4f7995 shadow: set correct entries for pseudo terminals in /etc/securetty
      41d7758 beecrypt: add ptest support
      2b70203 busybox: enable SEAMLESS_XZ by default
      e823383 libxfont: upgrade to 1.4.7
      d863ae2 tcl: enable ptest support
      a8a711c libsoup-2.4: upgrade to 2.45.3
      afa7db3 libtasn1: upgrade to 3.4
      37a0775 qemu: upgrade to 1.7.0
      ae1ca61 netbase: upgrade to 5.2
      753814a lighttpd: add www/{logs,var} symlinks
      8d8bcc4 libarchive: Upgrade to v3.1.2
      0509a60 base-passwd: upgrade to 3.5.29
      6ee5d95 bitbake: fetch2/gitannex: Fix function arguments to match bitbake master
      854daab bitbake: gitannex: Add missing file from previous commit
      a2f5a61 adt-manual: Deleted mis-leading sentence from configure section.
      6a6a05a poky.ent, ref-manual: Updated list of Fedora packages
      3517a76 dev-manual: Edits to the "Post-Installation Scripts" section.
      777601b ref-manual: Edits to KERNEL_SRC and KERNEL_PATH variables.
      1cd9f2c dev-manual: Updated the LIC_FILES_CHKSUM example.
      7e71031 ref-manual: Added new INITRAMFS_IMAGE variable description.
      1e8ba08 ref-manual: Edits to the INITRAMFS_IMAGE_BUNDLE variable.
      11d24f4 ref-manual: Added INITRAMFS_IMAGE_BUNDLE variable description.
      c4bcaa3 bitbake: bitbake: fetch2/git: add description for nobranch
      2bd4477 bitbake: bitbake: gitannex.py: Add Git Annex support
      e93a345 sstate: add do_package to the noexec list in setscene_depvalid
      100c883 bitbake: bitbake: fetch2/git: add nobranch option for SRC_URI to skip SHA validating for branch
      1d3a139 bitbake: bitbake/lib/bb/build.py: fix the task flags cleandirs
      4722965 bitbake: bitbake: usermanual.xml: fix a typo
      6c294f0 bitbake: toaster: add two-stage commit startup logic
      18d486c base.bbclass: pull in file-native for src.rpm
      22764d3 sstate: Add optimizing logic for crosssdk setscene dependencies
      7aa3b95 gstreamer1.0-plugins-good: upgrade to 1.2.2
      cbd34ce gstreamer1.0-plugins-base: upgrade to 1.2.2
      894c882 gstreamer1.0: upgrade to 1.2.2
      df7b151 bluez5: upgrade to 5.13
      de2f743 ofono: upgrade to 1.14
      745ff50 gstreamer1.0-libav: upgrade to 1.2.2
      ccb8493 gstreamer1.0-plugins-ugly: upgrade to 1.2.2
      89c3875 gstreamer1.0-plugins-bad: upgrade to 1.2.2
      0faeea0 screen: update debian patchset to version 4.0.3-14
      5ef95e1 guile: fix the depends for target recipes
      e7fcf1b python: explicitly disable bluetooth.h check
      031d2ea xf86-video-modesetting: update to 0.8.1
      b1bf8f7 grub: add git version
      2acd617 kmod: Update to Rev 16 via git
      741a894 libpthread-stubs: should set ALLOW_EMPTY
      26a3116 grep: upgrade to 2.16
      16080a3 Add missing RDEPENDS of initscripts-functions
      acaf650 initscripts: split the functions script into a separate package
      f4ae439 Revert "gconf.bbclass: remove --disable-schemas-install"
      2ee78e3 upstream_tracking.inc: remove outdated glib-2.0 entry
      23f2902 db : Include C++ binding library in Berkeley DB recipe.
      0343546 quilt: enable ptest support
      bcacd18 lib/oeqa/runtime: add test for python
      3b0601a util-linux: remove non PN based -dev packages
      12c181f libpcre: upgrade to 8.34
      5b711eb kconfig-frontends: fix the incorrect depends on gperf
      9a60c5e valgrind: rrecommend libc6-dbg on all architectures
      81e1514 cdrtools-native: remove unused FILESPATH
      33b9961 make: upgrade to 4.0
      0cfb1e7 autogen-native: upgrade to 5.18.2
      484727e autoconf: remove path_prog_fixes.patch
      9c1d1dd automake: upgrade to 1.14
      fc8931b logrotate: two minor fixes
      907c8ce logrotate: upgrade to 3.8.7
      6328170 e2fsprogs: upgrade to 1.42.9
      5ddb7d4 mime.bbclass: remove the --disable-update-mimedb
      31fe1b6 gconf.bbclass: remove --disable-schemas-install
      acfd890 enchant: fix unrecognised option
      6a02acb texinfo: Update to 5.2
      663dad6 coreutils: upgrade to 8.22
      e65fc0e curl: upgrade to 7.34.0
      6fd9efc gdbm: upgrade to 1.11
      fce8545 security_flags: add the rest of the grub-efi related packages
      655b432 image.bbclass: add ability to set systemd default target
      19254bd oe-selftest: New tests for sstate related operations
      f33c990 maintainers.inc: reassign e2fsprogs
      f4e85ca bitbake: bitbake/lib/bb/cooker.py: remove a duplicated self.data
      17aa506 classes/package: set SUMMARY in do_split_packages()
      6c6ae2a bitbake.conf: add full stop to default DESCRIPTION
      3bf4f68 enchant: tidy up recipe
      eaf4639 qmmp: add SUMMARY and tweak DESCRIPTION
      8a59b94 alsa-utils: add missing individual package SUMMARY values
      cb4500a Tweak SUMMARY
      a22ee50 Update after toplevel LICENSE file checksum change
      4bd0d31 ref-manual: Added more detail to BB_GENERATE_MIRROR_TARBALLS variable.
      eb77bc6 profile-manual: Updated output from build env script.
      ee0d303 dev-manual, mega-manual: Updated the recipe creation figure.
      9cf6979 dev-manual: Removed left-over notes from "Unpacking Code" section.
      05adf62 dev-manual: Changed "Compiling the Recipe" section to "Compilation"
      58a4753 ref-manual: Updated FAQ entry cross-reference.
      34c6547 dev-manual: Removed section on excluding a package from the build.
      daa6066 dev-manual: Final merging of recipe stuff.
      71460e5 dev-manual: Integrated Hello World section into new writing recipe section
      3ad993d dev-manual: Completed first pass of review feedback.
      9f51f11 dev-manual: Completed the "Fetching" and "Configuration" sections.
      fac99a4 dev-manual: First complete draft of the "Writing a New Recipe" section.
      3b908ee dev-manual: Re-wrote the installation part of "Writing a Recipe"
      b55ffe7 dev-manual: Updates to "Writing a Recipe" section.
      4abc384 dev-manual: Some review edits to the new writing a recipe section.
      1e83889 dev-manual: Some development text for fetching source
      5a3296c dev-manual: Put into place a rough draft of the "Writing Recipe" section
      1bd23c8 dev-manual, mega-manual, Makefile: Added new recipe creation flow figure.
      2cd87c8 ref-manual: Edits to LICENSE variable. Added SPDXLICENSEMAP variable.
      d06cd4c ref-manual: Fixed typo in ICECC_DISABLED.
      61597c4 ref-manual: Edits to the icecc class.
      d2c89c7 ref-manual: Added new ICECC_DISABLED variable description.
      efedaf9 ref-manual: Updated the FAQ entry for how to use an external toolchain.
      5dd83ad ref-manual: Updated the TCMODE variable description.
      2c9475e bitbake: bitbake: fetcher2: clean(): remove the .patch.done
      d8d4b0e bitbake: bitbake: fetcher2: git.py: clean(): remove the .tar.gz.done
      d305a05 bitbake: bitbake: replace 3 spaces with 4
      3814e34 e2fsprogs: silence debugfs
      da9b4fa wipe-sysroot: explain what is being deleted, and check for arguments
      5165328 dbus: enable API entry point checks
      d43adee dbus: use PACKAGECONFIG for X11 and systemd
      ace1981 libxcb: don't hard-code package splitting
      417f8c8 libxcb: don't disable parallel building
      b8a3fb2 README: fix DISTRO = "" reference
      ef91193 Fix license notices for OE-Core
      4d093fe tzcode: Update to 2013i
      ec52326 tzdata: Update to 2013i
      6b04483 byacc: upgrade to 20140101
      db7caba systemtap: Add --enable-prologues to configuration
      3de579c meta/lib/oe/terminal.py: Don't pass non-supported '--disable-factory' flag to gnome-terminal
      7774bdf kmod: fix zlib dependency
      6710c39 test-dependencies.sh: avoid showing misleading error messages
      19fc2ed git: upgrade to 1.8.5.2
      52b9309 make: remove the obsolete SCCS.patch
      4e1b958 poky: Add Fedora-20 to supported distros list
      7579e19 quilt: upgrade to 0.61
      1cca163 glib-2.0: add EXTRA_OECONF for uclibc
      77fec45 tcl: Fix ${bindir}/tclsh symlink
      e27f7d4 python: fix unrecognised options: --without-cxx --with-cyclic-gc
      6ea42c0 sqlite: remove unrecognised options: --enable-tempstore
      a3c5d82 maintainers.inc: reassign tzcode-native
      5e80a34 upstream_tracking.inc: update entries
      b1f3da9 eglibc: Remove older version 2.17
      eae5422 gcc: Drop 4.7.2 version since 4.8 is stable now
      87f74ca bitbake.conf: set a default for MACHINE_FEATURES
      8ae3f22 pciutils: tidy up recipe
      16a4390 opkg-utils: tidy up recipe
      c81dd87 guilt-native: tidy up recipe
      7dabe7b enchant: tidy up recipe
      e49389a stat: tidy up recipe
      b5edd1e adt-installer: tweak DESCRIPTION and add SUMMARY and HOMEPAGE
      c5135e4 core-image-lsb: fix DESCRIPTION
      35352b7 binutils: add/tweak SUMMARY
      94dd065 icecc-create-env-native: add SUMMARY and tweak DESCRIPTION
      f92ed88 gmp: set SUMMARY and DESCRIPTION
      a326200 xf86-video-modesetting: set SUMMARY and DESCRIPTION
      2e3396f xf86-video-fbdev: set SUMMARY and DESCRIPTION
      5d7d2ae xf86-input-vmmouse: set SUMMARY and DESCRIPTION
      a011d8a qt4: set SUMMARY and tweak DESCRIPTION
      9f8f4fd Basic recipe formatting fixes
      2de5f44 linux-dummy: set reasonable DESCRIPTION
      bc16384 linux-dummy: set LICENSE to GPLv2 to avoid license warning
      1b50dbc gawk: set reasonable SUMMARY and DESCRIPTION
      535ebc9 xev: add proper SUMMARY and DESCRIPTION
      40cbb12 libunique: fix HOMEPAGE and touch up DESCRIPTION
      0c5366d bash: update HOMEPAGE
      aee67ee startup-notification: fix HOMEPAGE
      d6a19b0 lame: update HOMEPAGE
      8e5a11d libsamplerate0: add HOMEPAGE
      7c39630 telepathy-mission-control: fix HOMEPAGE
      a231a0f gettext: set reasonable SUMMARY and DESCRIPTION
      e792f54 Add missing SUMMARY values
      cec8b23 Replace one-line DESCRIPTION with SUMMARY
      63819fb Replace OpenedHand Bugzilla in BUGTRACKER
      3575aee Drop empty/invalid BUGTRACKER values
      3f0a760 speex: fix SRC_URI to use PV instead of hardcoding the version
      64ffe91 mesa-demos: fix unrecognised options
      cce0371 ghostscript: remove unrecognised option
      27f3190 wget: remove unrecognised option
      41b9a11 cups: remove unrecognised option
      c49a693 enchant: fix unrecognised option
      1d146a8 bluez-hcidump: remove unrecognised options
      098fdf6 gstreamer1.0: remove unrecognised options
      ac9e080 gstreamer1.0: remove unrecognised options
      728f1c7 gstreamer: fix unrecognised options
      54fe057 libid3tag: remove unrecognised option
      8830498 dpkg: fix/remove unrecognised options
      7267aa9 tremor: remove unrecognised option
      aec6bc9 alsa-lib: remove unrecognised options
      c7aa5bb flac: remove unrecognised options
      005af45 bitbake: fetch2: avoid printing "no checksum" error message twice
      1edb126 bitbake: fetch2: fail checksum validation if SRC_URI checksums set to ""
      85ac394 openssl: use PACKAGECONFIG to disable perl bits
      405c322 toaster.bbclass: fix crash on buildstats collection
      2ccdb82 valgrind: upgrade to 3.9.0
      63fb358 classes/insane: restore printing LIC_FILES_CHKSUM checksum if not specified
      8ee784e libav: add libpostproc to PROVIDES (for 0.8.x version only)
      325fb2b sstate: Use datastore copies due to data changes persisting
      6aa4de3 externalsrc: Fix deltask usage
      3946917 terminal: Exclude BB_ORIGENV from the signatures
      08a8c90 yocto-bsp: Add missing interfaces file for qemu BSP templates
      3ada51f sstate/sstatesig: Add populate_lic to list of arch invariant sstate tasks
      9a1705e9 bitbake.conf: Exclude WORKDIR changes from sstate checksums
      e5ee1b8 sstate: Convert to use ':' as a filename sperator and use SSTATE_SWSPEC globally
      8685b5c libcap: Allow rebuilds to work correctly
      a69ccc5 beecrypt: Allow PACKAGECONFIG to be overridden
      0a57d5b harfbuzz: Allow PACKAGECONFIG to be overridden
      553fa36 nfs-utils: modify the boot sequence of the init script
      dd50c4d runqemu: Allow user to set -vga option with qemuparams
      963b69b testimage: include traceback when loading a test fails
      b24f217 lib/oeqa/runtime: rewrite the systemd test module
      7c1c3d1 oe-selftest: added buildhistory buildtime tests in module buildoptions.py
      6fe6a91 oe-selftest: New test module for OE scripts.
      8379990 oe-selftest: New BuildhistoryBase object for buildhistory testing.
      f703027 conf-notes: remove meta-toolchain-sdk references
      c28a4a0 libtirpc: upgrade to 0.2.4
      bd3fed5 sstatesig: Correctly handle matches spanning stamps and sstatedir
      c61fe39 sstatesig: Update for the removal of sstate-name
      b6b6d92 sstatesig: Ensure we return all matches for find_sigdata
      d32d08f ptest: Disable for native recipes
      f857b62 ptest: Fix dependency/ordering issue
      64bb800 externalsrc: Use deltask API
      14471d2 native: Use deltask to remove tasks which have no purpose
      2c7276c sanity.conf: Require bitbake 1.21.1 as a minumum version for deltask functionality
      8bbaed4 bitbake: Update to version 1.21.1 for master
      0b5476a bitbake: siggen: Fix reversed difference output
      eebe65c bitbake: runqueue: Further extend bitbake -S output to view signature differences
      a4457cf bitbake: siggen: When printing signatures recursively, limit the output
      6d2f344 bitbake: runqueue: Fix data being written into siginfo/sigdata files
      bc1e359 meta-toolchain-sdk: Remove references from meta-yocto
      2961b58 security_flags: more relocation issues
      6e6613e dbus-ptest: Fix SRC_URI checksums
      848961e bitbake: runqueue: Add output for -S option for listing the changepoints compared with an sstate cache
      52ef6c2 bitbake: bb.fetch2.git: reuse basecmd attribute
      498de04 bitbake: fetch2/git: Improve handling of unresolved names verses branches
      ba82035 bitbake: build/ast: Create strong task add/del API in bb.build
      8a82a38 bitbake: ast/BBHandler/build: Add support for removing tasks (deltask)
      0f20411 Minicom depends on libiconv
      1047f68 systemd-compat-units: drop machineid.service
      3d6d5d7 systemd: delete files that end up in /var/volatile
      402308c systemd: pass --root in prerm if running on host
      3d2c33c dbus: upgrade to 1.6.18
      7e17255 buildhistory: be quiet when garbage collecting the git repo
      2a58f76 useradd.bbclass: add dependency on base-files
      480bf03 sstate: Get rid of crazy name mapping
      7935ae2 sstate/gcc: Fix shared workdir handling for siginfo files
      88f0166 sstate: Write out siginfo files for non-sstate tasks
      ebc7f3a pango: remove no update reason because it was updated
      0af8bd9 openssl.inc: Install c_rehash utility with openssl
      e1e59b6 pointercal-xinput: Mark as SIGGEN_EXCLUDERECIPES_ABISAFE
      8a8a0c3 gcc-4.7/gcc: disable sdt from configure.ac to keep compatibility with configure
      fd0d15f gcc-4.8/libstdc++-v3: disable sdt
      cc93237 libsoup-2.4: add intltool-native to DEPENDS
      d9da9cb grub: move xz to DEPENDS list from RDEPENDS list
      1a0a0ea scripts/contrib: Add graph-tool
      f773d90 bluez4: use legacy pygobject instead of gobject-introspection
      8e21e3e bluez4: Install the test script
      6284998 libpcap: upgrade to 1.5.2
      4ed07c5 man-pages: upgrade to 3.55
      0957eb6 lsbtest: add ppc64 support
      b35283c LSB_Test.sh: update locales
      d71314b LSB_Test.sh: check ldconfig before update cache
      b34cc27 LSB_Test.sh: update rpm platform file when enable multilib
      f939b6c lsb: update directory of install_initd and remove_initd
      9daa1de qemu/local.conf.sample: Add sdl PACKAGECONFIG
      cd5d65a insane: handle recursive configures when checking for unknown configure options
      8babb8f busybox: get rid of nested functions in find
      e230b44 pulseaudio: only package consolekit module when x11 is enabled
      31f94de git: leverage upstream relocation support
      4274ee5 libdrm: use RRECOMMENDS for libdrm-drivers
      36632ed xz: make the LICENSE info more accurate
      e2c2b5b nativesdk: Set LIBCOVERRIDE to a value
      1dcbf30 gcc-crosssdk.inc: Fix missing dependencies (such as libmpc-native)
      36fe775 useradd-example: add example for setting clear text password
      c38fee2 image.bbclass: fix for zap_root_password
      7b58b5f shadow-native: allow for setting password in clear text
      1034518 image.bbclass: default USE_DEVFS to '1'
      2b70a38 btrfs-tools: Update to 3.12
      599eed2 lib/oeqa/runtime: systemd failure case improvements
      bf595ca init-ifupdown: adjust priority of networking to fix system freeze problem
      ab0c7af ltp: Use patch generated without -M
      ab80273 gstreamer1.0-plugins-base: fix missing rprovides
      447e4cf glib-2.0: upgrade to 2.38.2
      e70fb78 rpcbind: upgrade to 0.2.1
      9409039 bluez5: upgrade to 5.12
      6bc2df5 oe-selftest: Add track_for_cleanup method to be used in cleanup tasks
      90fa0fd oe-selftest: implement add_command_to_tearDown method
      46215bd rpcbind: fix init status and exit code
      9b43c57 libgcrypt: fix compile error with '-O2' in sysroot path
      0101c26 cpan_build bbclass: do not install module into /usr/share
      22dec67 perl: remove sysroot path leakage into packaged files
      1cc8a01 distutils bbclass: delete site.py*
      66a5f8d linux-libc-headers: fix MIPS klibc build error
      4bb18c4 linux-yocto-dev: allow static SRCREVs via include
      db4961b udev: Add ptest
      b8e3996 iproute2: upgrade to 3.12.0
      81b0b7e iptables: upgrade to 1.4.21
      a48f701 cracklib: upgrade to 2.9.1
      4abb031 dpkg: upgrade to 1.17.4
      b7be318 xorg-lib: remove explicit --enable-malloc0returnsnull
      c5b3851 util-macros: upgrade to 1.18.0
      eef85f8 site: add xorg_cv_malloc0_returns_null
      a90ad43 libav: Use "BP" and "libav" patch directory
      c0d28b4 xinetd: add status of init.d command
      b53a011 systemd-systemctl: Add preset capability
      e0d4865 grub-efi: allow compilation without large model support
      40b73e4 grub-efi: change to generate EFI image in target package
      8275e0f ref-manual: Fixed the reference to the script for icecc class.
      797a919 ref-manual: Reverted a patch that had added sdk-pms
      f932163 ref-manual: Added module and module-base classes.
      68fbbd1 shadow: change to use SHA512 password encryption
      79e2bbd local.conf.sample.extended: restore some edits
      d4327cb distro_alias.inc: drop external-*
      bf71844 bitbake: data_smart: Fix hash corruption issue
      7a345c3 maintainers.inc: update the the maintainers
      ba8506e local.conf.extended: Bring into sync with OE-Core
      2b38832 gdb-7.6.1: fix cygwin check in configure script
      6b124ff sato-icon-theme: simplify icon-name-mapping lookup
      07ce029 external-sourcery-toolchain: remove
      b1b0c31 classes/module_strip: remove
      bfec6b1 ref-manual: Removed "work" from the SDK_DEPLOY directory.
      0f32d39 ref-manual: Edit to SDK_DEPLOY removing "temporary" from directory.
      9548726 ref-manual: Edits to gnomebase class.
      0091385 ref-manual: Edits to setuptools class.
      26556a0 ref-manual: Minor edits to rootfs* class.
      62e7ade ref-manual: Edits to GTKIMMODULES_PACKAGES variable.
      9feb721 ref-manual: Added new SDK_DEPLOY variable description.
      caf0dd0 ref-manual: Added more info to distrodata class.
      b080c99 ref-manual: Added more info to gnomebase class.
      c6d4c6a ref-manual: Fixed some broken cross-references.
      98a70d8 ref-manual: Fixed double word error in EXTRA_QMAKEVARS_PRE variable.
      44dd2fe ref-manual: Fixed double word in EXTRA_QMAKEVARS_POST variable.
      d605e81 ref-manual: Edits to QMAKE_PROFILES variable.
      d60f9b7 ref-manual: Fixed typo in PACKAGE_CLASSES variable.
      80ce249 ref-manual: Edits to the IMAGE_PKGTYPE variable.
      a545c85 ref-manual: Edits to PIXBUF_PACKAGES variable.
      1762d18 ref-manual: Edits to the icecc class.
      a711ebe ref-manual: Edits to GTKIMMODULES_PACKAGES variable.
      3f81865 ref-manual: Edits to FONT_PACKAGES variable.
      16626c3 ref-manual: Edits to the terminal class.
      483fc48 ref-manual: Edits to the systemd class.
      7853e3b ref-manual: Edits to the setuptools class.
      6e91d5d ref-manual: Edits to the rootfs* class.
      d76301b ref-manual: Edits to pixbufcache and pythonnative classes.
      caf6752 ref-manual: Edits to the PIXBUF_PACKAGES variable.
      4e83d80 ref-manual: Edits to the package_tar class.
      51781b1 ref-manual: Updated the PACKAGE_CLASSES variable description.
      18e1e8d ref-manual: Edits to PACKAGE_CLASSES variable.
      b330c97 ref-manual: Edits to SYSTEMD_PACKAGES and SYSTEMD_SERVICES.
      1c8b4dd ref-manual: Edits to the EXTRA_OESCONS variable.
      489a438 ref-manual: Edits to the QMAKE_PROFILES variable.
      9cfdf98 ref-manual: Edits to the EXTRA_QMAKEVARS_* variables.
      8370e8f ref-manual: Edits to the SDK_DIR and SDK_OUTPUT variables.
      56852f8 ref-manual: Edits to IMAGE_PKGTYPE variable.
      1378121 ref-manual: More edits to PIXBUF_PACKAGES variable.
      a2b7a7c ref-manual: Edits to PIXBUF_PACKAGES variable.
      b152cfc ref-manual: Edits to INHERIT_DISTRO variable.
      704c24c ref-manual: Updates to ICECC_USER_PACKAGE_BL and _WL variable.
      b361db0 ref-manual: Edits to icecc class and removal of three variables.
      88fb980 ref-manual: Minor edits to GTKIMMODULES_PACKAGES variable.
      f779511 ref-manual: Minor edits to FONT_PACKAGES variable.
      e0a456c ref-manual: Edits to SYSTEMD* variables.
      348cec5 ref-manual: Added some references to variables in the useradd class.
      b972f4b ref-manual: Review edits from "I" through "Z" classes.
      b74db1f ref-manual: Fixed link back to own-mirrors class.
      3b17557 ref-manual: Changed Gobject to GObject.
      a6f4ea7 ref-manual: Edits to classes "I" through "K"
      3a9d776 ref-manual: Review edits to classes "E" through "G"
      3224ec9 ref-manual: Added new DEPLOYDIR variable.
      644fdc4 ref-manual: Edits to bugzilla and deploy class.
      55a5058 ref-manual: Review edits to the "C" and "D" classes.
      bc6b005 ref-manual: Review edits to classes A through B
      6b58ab3 ref-manual: Scrubbed the comment list of undocumented classes.
      113077b ref-manual: Removed the section "Other Classes"
      79ba3e4 ref-manual: Re-ordered externalsrc class into the "C"'s
      de7ead9 ref-manual: Edits to externalsrc class.
      36a9f7e ref-manual: Edits to useradd class.
      1411329 ref-manual: Edits to update-rc.d class.
      76a5d86 ref-manual: Edits to update-alternatives class.
      58e3323 ref-manual: Re-ordered the classes that start with "U"
      759c88f ref-manual: Edits to testimage class.
      73ddfa2 ref-manual: Re-ordered classes that start with "T"
      b43c26f ref-manual: Edits to siteinfo class.
      4cdb34b ref-manual: Edits to sanity class.
      cca4368 ref-manual: Re-ordered classes that start with "S".
      bf7b6cf ref-manual: Edits to rootfs* class.
      cd1581b ref-manual: Edits to rm_work class.
      035caad ref-manual: Edits to classes-qt4* classes.
      749f0c4 ref-manual: Edits to qmake* classes.
      8847fd3 ref-manual: Edits to pkgconfig class.
      53d0bde ref-manual: Edits to populate-sdk classes.
      e0152fc ref-manual: Edits to packageinfo class.
      f6826dd ref-manual: Edits to packagegroup class.
      f1668bf ref-manual: Edits to packagedata class.
      b027c7e ref-manual: Edits to package_tar class.
      efa1700 ref-manual: Edits to package_rpm class.
      01929d0 ref-manual: Edits to package_ipk class.
      91b192c ref-manual: Edits to package_deb class.
      06e1bfa ref-manual: Edits to package class.
      08b634e ref-manual: Re-ordered classes that start with "P".
      4688e76 ref-manual: Edits to ownmirrors class.
      5ec09e0 ref-manual: Edits to oelint class.
      2cc4dab ref-manual: Edits to nativesdk class.
      951abfd ref-manual: Edits to native class.
      aa7ba78 ref-manual: Edits to multilib classes.
      52e3e79 ref-manual: Edits to mirrors class.
      60f6c85 ref-manual: Edits to mime class.
      95aa8bc ref-manual: Edits to metadata_scm class.
      a17963f ref-manual: Edits to meta class.
      d13d216 ref-manual: Edits to logging class.
      5059d55 ref-manual: Edits to linux-kernel-base class.
      fb25e08 ref-manual: Edits to license class.
      94392c4 ref-manual: Edits to lib_package class.
      2d557b6 ref-manual: Re-ordered classes that start with "L".
      ca4fe92 ref-manual: Edits to kernel-yocto class.
      eff9beb ref-manuals: Edits to kernel-module-split class.
      7e69f3b ref-manual: Edits to kernel-arch class.
      98e3d01 ref-manual: Edits to kernel class.
      2610e84 ref-manual: Re-ordered classes that start with "K".
      1450b54 ref-manual: Edits to insserve class.
      19b37bd ref-manual: Edits to insane class.
      80980ef ref-manual: Edits to image-vmdk class.
      cbecea8 ref-manual: Edits to the image-swab class.
      d704c53 ref-manual: Edits to image-prelink class.
      564dd5f ref-manuals: Edits to image-mklibs class.
      b19ba2d ref-manual: Edits to image-live class.
      476a229 ref-manual: Edits to image_types_uboot class.
      2b22c18 ref-manual: Edits to image_types class.
      4c162b5 ref-manual: Edits to image class.
      4ba8247 ref-manual: Edits to icecc class and re-order of "I" classes.
      9d5ab21 ref-manual: Edits to gzipnative class.
      8f09c72 ref-manual: Edits to gtk-immodules-cache class.
      551ae6a ref-manual: Edits to gtk-icon-cache class.
      7ca6bbd ref-manual: Edits to gtk-doc class.
      9eabe58 ref-manual: Edits to gsettings class.
      d1e046a ref-manual: Edits to grub-efi class.
      e5f9f17 ref-manual: Edits to gnomebase class.
      52abfce ref-manual: Edits to gnome class.
      464730e ref-manual: Edits to gettext class.
      87330b3 ref-manual: Edits to gconf class.
      07d0b04 ref-manual: Edits to fontcache class.
      05f51e4 ref-manual: Edits to extrausers class.
      cfa459e ref-manual: Edits to distutils class.
      ec4a49b ref-manual: Edits to distrodata class.
      a0f8777 ref-manual: Edits to distro_features_check class.
      a0d9e0f ref-manual: Edits to devshell class.
      de84432 ref-manual: Edits to deploy class.
      d7ec755 ref-manual: Edits to debian class.
      32559a6 ref-manual: Re-ordered the classes that start with "D".
      b281360 ref-manual: Edits to crosssdk class.
      cdf3ca0 ref-manual: Edits to cross-canadian class.
      ad81c79 ref-manual: Edits to cross class.
      83c7c68 ref-manual: Edits to core-image class.
      588bfe9 ref-manual: Edits to the copyleft_compliance class.
      20f5384 ref-manual: Edits to cmake class.
      7a3bf66 ref-manual: Edits to clutter class.
      5967e69 ref-manual: Edits to chrpath class.
      950dcd1 ref-manual: Edits to ccache class.
      f8c5fa0 ref-manual: Edits to the cpan class.
      91b8eff ref-manual: Re-ordered the classes that start with "C"
      618fb69 ref-manual: Edits to buildstats class.
      32f8cfa ref-manual: Edits to buildhistory class.
      306650e ref-manual: Edits to bugzilla class.
      774c7a7 ref-manual: Edits to bootimg class.
      e63b4f2 ref-manual: Edits to boot-directdisk class.
      1b7bf35 ref-manual: Edits to the blacklist class.
      13b4fc5 ref-manual: Edits to binconfig class.
      3fae906 ref-manual: Edits to the bin_package class.
      d28082c ref-manual: Edits to base class.
      4c7ff47 ref-manual: Edits to autotools class.
      9506911 ref-manual: Edits to archive* classes.
      889bb38 ref-manual: Added waf class.
      654411e ref-manual: Added vala class.
      aa9c2a1 ref-manual: Added utils class.
      5fafc2d ref-manual: Added utility-tasks class.
      9307442 ref-manual: Added uboot-config class.
      31d0e41 ref-manual: Added typecheck class.
      bfc10cf ref-manual: Added toolchain-scripts class.
      9af661f ref-manual: Added toaster class.
      b4fd227 ref-manual: Added tinderclient class.
      376eb53 ref-manual: Added terminal class.
      3623ba9 ref-manual: Added systemd class and three variables:
      c35962a ref-manual: Added syslinux class and many variables.
      944ee7f ref-manual: Added the staging class.
      59e0a53 ref-manual: Added sstate class.
      4253671 ref-manual: Added spdx class.
      1287cff ref-manual: Added siteconfig class.
      cd3f2e6 ref-manual: Added sip class.
      16b628c ref-manual: Added setuptools class and edits to distutils class.
      4c3eece ref-manual: Added sdl class.
      39eaf30 ref-manual: Added scons class and EXTRA_OESCONS variable.
      00652a8 ref-manual: Added relocatable class.
      e30988b ref-manual: Added qt4* classes.
      12c1680 ref-manual: Added qmake* class and three variables.
      08f89d7 ref-manual: Added qemu class.
      cde35ec ref-manual: Added pythonnative class.
      aedf61f ref-manual: Added python-dir class.
      ec256c0 ref-manual: Added ptest class.
      31b5f49 dev-manual: Updated the "Working with a PR Service" section.
      4f2fb32 ref-manual: Added prserv class and PRSERV_HOST variable.
      b5a77f0 ref-manual: Added primport class.
      77f8692 ref-manual: Added prexport class.
      61edbfc ref-manual: Added populate_sdk_* class and some new variables.
      e665692 ref-manual: Added populate_sdk class.
      56429d3 ref-manual: Added pixbufcache class and PIXBUF_PACKAGES variable.
      4ec758a ref-manual: Added the perlnative class.
      14603f6 ref-manual: Added the patch class.
      c981a85 ref-manual: Edits to the packageinfo class.
      3a7ba51 ref-manual: Added the packageinfo class.
      a758f31 ref-manual: Improved on package* class.
      5b0367f ref-manual: Added the packagedata class.
      ccca482 ref-manual: Added the ownmirrors class and the SOURCE_MIRROR_URL variable.
      5c63b7a ref-manual: Added the oelint class.
      d29666f ref-manual: Added the nativesdk class.
      4fb42f3 ref-manual: Added the native class.
      d754ddc bitbake: process: Add timeout to select call
      4398019 libmatchbox: use PACKAGECONFIG
      8bbd508 libmatchbox: fix libpng detection
      c66ff8b icu: CVE-2013-2924
      42cb2c9 acpid: CVE-2011-1159
      bd477cd xinetd: CVE-2013-4342
      d1cb9ec libtiff: CVE-2013-4243
      3e46414 libtiff: CVE-2013-4232
      6e89d26 libtiff: fix CVE-2013-1960
      e7d1921 libav: Add v9.10
      b9e1f11 buildhistory.bbclass: Specify lang in decoding strings
      4848a52 ltp: set PREFERRED_PROVIDER and rename runtests_noltp.sh script
      209eba7 multilib: Ensure we map the SYSTEMD_PACKAGES variable
      5119975 meta/*: remove unnecessary patches
      2b428f4 connman: upgrade to 1.20
      0cfc4ea harfbuzz: upgrade to 0.9.25
      c16467d freetype: upgrade to 2.5.2
      2a3119e makedevs: Add trace option and fix permissions on files if they already exist
      7b2be60 makedevs: Respect LDFLAGS
      8760307 binutils: Add embedspu to standard binutils package
      47d2089 libxcb: fix rebuild when MACHINE changes
      62e8b4c distro-tracking: remove GMAE package groups
      e3b9923 bitbake: hob: after adding a layer, hob do not parse the configuration
      3f61189 bitbake: toaster: Add more information for tasks in Simple UI
      192583a bitbake: toaster: add pagination to the Simple UI
      415ebb7 bitbake: toaster: migrate orm models to South
      81ebce0 bitbake: toaster: update to Django 1.5
      5ab8545 bitbake: toasterui: do not link non-image targets
      bb70ade bitbake: toasterui: fix version numbers for no PE specified
      54d0e30 bitbake: toaster: change package storage model
      f812098 bitbake: toaster: update build stats reading
      ea307bb bitbake: toaster: move layer information reading code
      6cbc83f bitbake: toaster: remove Author field in SimpleUI
      7d24b00 bitbake: toaster: Analysis API variablehistory update
      340c35e toaster.bbclass: read package and image information
      5145b5a toaster.bbclass: read build stats
      8ee7b08 toaster.bbclass: read layer information
      853f5db nativesdk.bbclass: support nativesdk to override with the PACKAGES_DYNAMIC statement
      fc0bb31 runqemu: remove core-image-* whitelist
      cb9136d xorg-lib-common.inc: use REQUIRED_DISTRO_FEATURES variable
      85bfdda documentation.conf: update for new image testing variables
      40b173c buildhistory.bbclass/image.bbclass: remove obsolete codes
      ded655a boost: Move files -> boost
      5a018ee boost: updating to 1.55.0
      1907b10 syslinux: add ability to compile with nativesdk
      3439665 mtools: add ability to compile with nativesdk
      d9dba45 nspr: Update to 4.10.2
      93729f6 libxkbcommon: Update to 0.3.2
      38dcefd file: Update to 5.16
      adde744 acl: Update to 2.2.52
      2ef65cc license.bbclass: fix copying license directories failed
      fc0a1aa perf: Disable warnings as errors for kernels 3.1+
      5debfa1 nfs-utils: explicitly rdepend on bash
      c0e048d nfs-utils: separate package as Debain style
      fedd84f shadow: remove reference to locale env files from login and su
      1fd93bd qemu: add bash and python to qemu's RDEPENDS
      8f98bb3 libidn: enable TLD
      5a83652 grub: add explicit dependency on bison-native
      22beb58 boot-directdisk: add the support of vmdk
      80a9a79 .gitignore: Add meta-yocto-imported
      4aac8d8 bitbake: data: Ensure we add the contains keys in a particular order
      b7ff099 linux-libc-headers-yocto: Drop old 3.4+git version
      184038b bitbake: fetch2/git: Ensure check is made in the correct directory
      121dcd3 linux-yocto/*: restore branch designations
      14c2326 python-imaging: fix compilation with Freetype 2.5.1
      2b898fe python: Add missing RDEPENDS for python-unittest
      66f28a9 tcl: fix tclConfig.sh to point to the correct private headers
      5301c59 bitbake: toaster: exclude "set in documentation.conf" from variable history
      2bd4c2b bitbake: hob: changes to INHERIT var should use "append" operation
      f19546e bitbake: fetch2/git: Add sanity check to ensure we really did fetch the correct revisions
      4bac6a8 mx/lttng-*: Fix git branch references
      0b962a5 fstests: update to git master
      67212c2 matchbox-keyboard: Use the branchname the revision is on
      7310d23 prelink: Set the branch name correctly for the revision we're using
      017f22c meta-yocto-bsp: Drop gmae bbappends to match OE-Core
      2b99084 cogl-1.0: explicitly disable cairo
      8dee338 lib/oeqa/runtime: output more logging from systemd when services have failed
      5c58ba9 lib/oeqa/runtime: print connman status if connman failed to start
      271c98a nativesdk-packagegroup-sdk-host: Added nativesdk-smartpm
      5c69ae2 classes/buildhistory: fix reading of package-specific values from pkgdata
      b2a9b91 gmae: remove GMAE toolchain and packagegroups
      df1505e update-rc.d: process symlinks recursively
      77c4f15 pulseaudio: fix RDEPENDS traversal for consolekit
      abbc345 init-live.sh: remove the '-c /dev/console' for switch_root
      e2e6756 libav: Update to v0.8.9
      77c1320 rpm: Fixed Q&A Errors in netivesdk-rpm
      aa61c61 freetype: upgrade to 2.5.1
      472e6c4 xserver: remove unrecognised options
      d8efb8d pixman: upgrade to 0.32.4
      7df2cfc libxft: fix Freetype header inclusion
      b9f9c29 pango: upgrade to 1.36.1
      d8fa465 libarchive: add SUMMARY and fix HOMEPAGE
      41f1731 openssh: remove unrecognised configure option
      a6c2f3f gpgme: remove pth handling
      aa40209 icecc-create-env-native: Drop FILESPATH, document PATCHTOOL
      c295fe6 cpan-base: Add vardepvalue to get_perl_version function
      f750d65 icecc.bbclass: Fix whitespace, improve comment
      cae2315 bitbake.conf/native.bbclass: Use FC instead of F77 for fortran
      5bde5d9 gcc: Allow fortran to build successfully in 4.8
      a67654e lib/oeqa/selftest: add tests for PR service
      347cc15 lib/oeqa/selftest: buildoptions: small fixes for some tests
      6ab56c5 classes/recipes: More optimal DISTRO_FEATURES references
      82233cd eglibc-options: Rewrite so it benefits from bitbake's contains handling
      f17a693 lib/oeqa/selftest/base, scripts/oe-selftest: fix wrong remove path and do a complete cleanup at the end
      c3c2cc4 qt4: fixed dependency on icu
      3456bd3 gstreamer1.0-plugins-bad: add PACKAGECONFIG for librsvg
      2ab24b1 gstreamer1.0-plugins-bad: respect directfb DISTRO_FEATURE
      ecba848 security_flags: Add entry for openssl
      ec80166 attr: Add patch tracking details
      c8d1aa0 gst-plugins-good: Fix configure option
      f21a3a4 leafpad: Fix configure flags
      50be1a1 libxkbfile: Remove obsolete configure option
      c51730a bitbake: Hob: check if warnings are related to package build
      0a5fdfb bitbake: hob: fix package property dialog for changes to FILES_INFO
      27ae687 bitbake: hob: name package files list variables appropriately
      8a02406 bitbake: lib/bb/ui: handle PKGSIZE change to bytes
      d1e6664 bitbake: cooker/command/hob: Cleanup configuration init/reset functions and commands
      b8f0963 bitbake: hob: Use BASEDATASTORE_TRACKING feature
      eba506b bitbake: codeparser/data_smart: Optimise parsing speed
      b4b1c90 ptest: ensure do_install_ptest_base task runs in fakeroot context
      65535bf populate_sdk: verify executable or dynamically linked library
      44b2cf5 qemu: handle CLOEXEC/NONBLOCK if unavailable on host
      4eab9d0 cairo: add/use packageconfig for valgrind support
      1bc64ba python, python-native: fix PARALLEL_MAKEINST failure
      82e373f quota: apply patch to obey tcp-wrappers config
      3c94bfe subversion: fix build problem when sysroot contains '-D' or '-I'
      6cdecac image-mklibs: ensure sysroot is correctly set when calling gcc
      4653302 Don't set DESCRIPTION to the same value as SUMMARY
      0954dde dropbear: set SUMMARY instead of DESCRIPTION
      79db9ae eee-acpi-scripts: tidy up recipe
      9dfcab3 alsa-utils-alsaconf: tidy up path setting
      35a0825 squashfs-tools: set SUMMARY instead of DESCRIPTION
      4e53364 squashfs-tools: drop FILESPATHPKG
      17e3dc2 lib/oeqa: targetcontrol.py: add abstraction for running tests on different targets
      b4d9b42 testimage: use the new targetcontrol.py module for running tests
      fd2d165 kmod: avoid parallel-tests
      68d40e2 python: do not replace ccache in the middle of a path
      d4398d4 lib/oeqa: use the new manifest file for determining if a package is installed
      1611b47 lib/oeqa/selftest: add test modules for expected bitbake output and bitbake-layers
      f8ee108 lib/oeqa/selftest: buildoptions.py: add simple image build tests
      b9afc0d meta-selftest: create a new test layer to be used by oe-selftest script
      645dd61 scripts/oe-selftest: script to run builds as unittest against bitbake or various scripts
      1fa51bf classes/buildhistory: do git garbage collection after committing
      d51b3f3 classes/buildhistory: reduce parsing time
      cdfef97 classes/buildhistory: improve collection of package info
      0cb38ee classes/buildhistory: add additional variables to image information
      1c37266 classes/buildhistory: drop cruft from old SRCREV tracking implementation
      c36c198 classes/package: write PE and PKGE out to pkgdata
      f4e9140 classes/package: record PKGSIZE as total file size in pkgdata
      4a75e83 classes/package: fix FILES_INFO serialisation in pkgdata
      a6450a9 ref-manual: Added the multilib* class.
      ab2744b ref-manual: Added the mirrors class.
      80342f0 ref-manual: Added the mime class.
      0e9e1b2 ref-manual: Added the metadata_scm class.
      6fb5661 ref-manual: Added the meta class.
      926eb4b ref-manual: Added the logging class.
      86c58a5 ref-manual: Edits to license class added INHERIT_DISTRO variable.
      b465168 ref-manual: Added the license class.
      abbc253 ref-manual: Added the linux-kernel-base class.
      96ed7b9 ref-manual: Added the lib_package class.
      842461e ref-manual: Added the kernel-yocto class.
      11589c4 ref-manual: Added kernel module split class.
      ed17902 ref-manual: Added kernel-arch class.
      c3fd5f9 ref-manual: Added the insserve class.
      8033de8 ref-manual: Added the image_types_uboot class.
      67ecb81 ref-manual: Edits to image_types class.
      a6a3c79 ref-manual: Added the image-types class.
      8cdc2d5 ref-manual: Added the image-swab class.
      89a3793 ref-manual: Added image-mklibs and image-prelink classes.
      6b1b052 ref-manual: Added image-vmdk class.
      5f20fb8 ref-manual: Added image-live class and updated IMAGE_FSTYPES variable.
      bd0ab4e ref-manual: Added image-empty.bbclass to undocumented class list.
      5ac2e26 ref-manual: Removed image-empty.bbclass from undocumented list.
      223bfdc ref-manual: Placed the ICECC_CC variable as entry point for "I" variables.
      cd83080 ref-manual: Added icecc class and several ICECC_* variables.
      172cf55 ref-manual: Edits to the GRUB_GFXSERIAL variable.
      b503308 ref-manual: Added gzipnative class.
      11c3ed6 ref-manual: Added the gtk-immodules-cache class and GTKIMMODULES_PACKAGES variable.
      02af524 ref-manual: Added gtk-icon-cache class.
      694a171 ref-manual: Added gtk-doc class.
      8d1637d ref-manual: Added gsettings class.
      28a6b52 ref-manual: Added grub-efi class and supporting variables.
      04d8460 ref-manual: Fixed class name gtext to gettext.
      93267b7 ref-manual: Added gnome, gnomebase, gtk-icon-cache, and mime classes
      65d7a93 ref-manual: Addedt gtext class.
      8a5a6c3 ref-manual: Added gconf class.
      d2d4feb ref-manual: Added fontcache class and FONT_PACKAGES variable.
      3780240 ref-manual: Added extrausers class and EXTRA_USERS_PARAMS variable.
      f7d0456 ref-manual: Added classes_distro_features class.
      d68f52f ref-manual: Added distrodata class.
      0423bb6 ref-manual: Added deploy class.
      b1c1016 ref-manual: Added crosssdk class.
      3aa57fe ref-manual: Added cross-canadian class.
      b82ff9a ref-manual: Added cross class.
      539351a ref-manual: Added core-image class.
      b91a667 ref-manual: Added the copyleft_compliance class.
      3361d01 ref-manual: Added the cml1 class.
      8853195 ref-manual: Added the cmake class.
      79bff74 ref-manual: Added the clutter class.
      70b503d ref-manual: Added the chrpath class.
      1ad623c ref-manual: Added the ccache class.
      09ac6b5 ref-manual: Added BUILDSTATS_BASE variable description.
      daa589d ref-manual: Added the buildstats class.
      c33bbac ref-manual: Added the buildhistory class.
      6531d22 ref-manual: Added bugzilla class.
      5f6fc88 ref-manual: Added boot-directdisk class.
      ace0b23 ref-manual: Added ROOTFS, NOHDD, and NOISO variable descriptions.
      2e4a20d ref-manual: Upper-cased the term "ram".
      74df25f ref-manual: Added INITRD variable to the glossary.
      77f2a85 ref-manual: Added bootimg class description.
      ff7f5da ref-manual: Added PNBLACKLIST variable to the glossary.
      f8ac486 ref-manual: Added blacklist class description.
      72562c4 ref-manual: Added bin_package.bbclass description.
      fb72b61 ref-manual: Removed binconfig class from undocumented list.
      ba57c9d ref-manual: Removed archive* type classes from the undocumented list.
      0f7a5e2 ref-manual: Added allarch class description.
      9a6d7e0 ref-manual: Updated the introduction text for Classes chapter.
      0922d3c ref-manual: add usage NOTE to IMAGE_FSTYPES
      63b2091 dev-manual: ksize.py and dirsize.py live in scripts/tiny
      4cbf28c dev-manual: Add a reference to poky-bleeding distro
      053d78d dev-manual: Documentation: More minor tweaks to dev manual for clarity
      5156a38 dev-manual: Updated how to remove package management requirements
      19e6f3f dev-manual: Changed wording of BBMASK example
      b288fa4 dev-manual: Added note about naming your distribution
      134c76e dev-manual: Re-worded menuconfig preparation
      fe154e4 dev-manual: Re-ordered sections for customizing an image.
      8275b92 ref-manual: Updates and additions to variable glossary:
      47e7abc dev-manual: Number of minor tweaks to Dev Manual, Chapter 5.
      4f7c366 ref-manual: Added new REQUIRED_DISTRO_FEATURES variable description.
      acf9a04 ref-manual: Added new CONFLICT_DISTRO_FEATURES variable description.
      031f188 ref-manual: Slight grammar edits.
      3cd9b7e ref-manual: Edits to the COMBINED_FEATURES variable.
      9a8d0ea ref-manual: Updated the intro text to "Distro Features" section.
      bbd193d ref-manual: Some edits to the DISTRO_FEATURES variable.
      7496f80 ref-manual: Updated the DISTRO variable description.
      63de643 ref-manual: Edits to the DISTRO_FEATURES variable.
      cf04241 ref-manual: re-ordered distro features and machine features sub-sections.
      d856388 dev-manual, ref-manual: Updated some section titles.
      302c2af ref-manual: Changed depends.dot filename to pn-depends.dot.
      e4d0b54 ref-manual: Added the pn-buildlist file to list of files
      936cc69 ref-manual: Cleaned up some instances of the term "working directory"
      ee30c8b ref-manual: fixed typo
      89fc8b8 ref-manual: Updated to *_FEATURES variables.
      b2d0ff1 ref-manual: Review edits applied to UBOOT_LOCALVERSION variable.
      341a685 ref-manual: Edits to the UBOOT_LOCALVERSION variable.
      a880e6b ref-manual: Fixed typo in the UBOOT_CONFIG variable.
      e6df367 ref-manual: Added new variable UBOOT_MAKE_TARGET.
      a729e89 ref-manual: Added new UBOOT_SUFFIX variable description.
      412abae ref-manual: Added new variable UBOOT_LOCALDEFINITION
      ab4f352 ref-manual: Fixed misc. formatting by removing blank lines.
      a18b4e3 ref-manual: Fixed typo.
      f99c70c ref-manual: Reset the top "U" entry for glossary to UBOOT_CONFIG.
      a16e9a20 ref-manual: Added glossary entry for UBOOT_CONFIG variable.
      96b948a ref-manual: Expanded CLASSOVERRIDE variable example description.
      21dde6f dev-manual: Updated EXTRA_IMAGE_FEATURES operater for read-only-rootfs example
      0e65e79 dev-manual: Added "Task" term.
      85e4bb6 dev-manual: Changed "Tasks" term into "Package Groups" term.
      17ac9ee dev-manual: updated the ptest section
      e83292a ref-manual: Added core-image-weston and core-image-directfb
      755e23e dev-manual: Re-worded the "Customizing Images Using Custom .bb Files"
      c95eca6 ref-manual: New glossary entries
      cac929e ref-manual: Added other argument values to set variable
      33c2d81 ref-manual: Fixed a typo.
      b156232 profile-manual: Edits from Robert P. J. Day
      46ac6c6 profile-manual: Review edits from Robert P. J. Day
      bbc820e profile-manual: Small typo fixed.
      f4d8358 dev-manual: More minor tweaks to development manual.
      2e44a48 dev manual: Minor tweaks to first part of ch 5, dev-manual.
      c65a2f1 dev-manual: Some minor tweaks to ch 4, development manual:
      d054a45 dev-manual: Small number of tweaks to ch 3, development manual.
      60e8b44 dev-manual: A few tweaks to Ch2 of dev-manual
      6ac98af dev-manual: Updated Build Directory term
      8831272 dev-manual: Reworded sentence for meta-intel setup
      c241806 ref-manual: Removed FAQ entry about running on RHEL/CentOS 5.1.
      33778bb ref-manual: Updated the FAQ entry about old Python version
      dd6b2ef documentation: Scrubbed use of directory names
      30d7f52 ref-manual: Tweaks to the structure chapter.
      830c2df ref-manual: Removed the pseudodone section in the build structure
      0290219 ref-manual: Updated the description for oe-init-build-env-memres
      437bf60 ref-manual: Tweaks to a patch from Robert P. J. Day
      c354dc6 ref-manual: Various tweaks/fixes for ch4. ref manual
      cebf481 ref-manual: Updated bitbake/ section to remove wrapper script
      c1f030f ref-manual: Couple innocuuous tweaks to migration chapter.
      4a52822 ref-manual: Updates to "Variables" and "Building with No Dependencies"
      f16706d ref-manual: re-wrote the "Invalidating Shared State" section
      1c19d66 ref-manual: Updates to the FEED_DEPLOYDIR_BASE_URI variable.
      90f80a7 dev-manual: Added a link for the FEED_DEPLOYDIR_BASE_URI variable
      81a7812 ref-manual: Added FEED_DEPLOYDIR_BASE_URI variable description
      a8388ac ref-manual: Small number of fixes to Ch1 of ref-manual
      ae7c4d5 ref-manual: Pedonic tweaks to ref manual usingpoky.xml
      2a8596d ref-manual: Grammar and typo edits to "Closer Look" section.
      f3c4d68 dev-manual: package add using facilities in oe-core only.
      c35d59f yocto-project-qs: Removed out-of-date links to distro requirement info
      5823041 ref-manual: Removed out-of-date links in supported distros section.
      5e715c5 ref-manual: Formatted "Caution" boxes
      52ff43b poky.ent: Added gcc-multilib as an essential package
      26b104b ref-manual: Patch for various fixes to glossary
      b88c833 ref-manual: Edits to INITSCRIPT_NAME variable.
      3abf9be ref-manual: Edits to the BBLAYERS_NON_REMOVABLE variable.
      38853cf babeltrace: correct PV variable
      da88c5f classes/icecc: fix typos in header comments
      baf7765 linux-dummy: catch up with image.bbclass changes
      a17ffbd bitbake: hob: fix rotating progress icon animation
      35c2590 bitbake: imagedetailspage: Fix crash with more than 15 layers
      a67fde0 bitbake: bitbake.lock: Add host:port to bitbake.lock for memres server
      6ff9c9e bitbake: bitbake, xmlrpc.py: Implement memory resident auto port configuration/restart
      0bea372 bitbake: bitbake: Add --status-only option
      72e650d oe-init-build-env-memres: Add auto port functionality
      644a1a2 oe-init-build-env: Allow startup with and without memres
      a6b55d9 gcc-cross-canadian: Fix fortran build
      a9d8f36 eglibc-initial.inc: Drop duplicate include
      fabdf2f bitbake: hob: disable layer drag and drop outside the containing widget
      f5f3ef7 bitbake: parse/ConfHander/BBHandler/utils: Fix cache dependency bugs
      ea03ed0 qt4-x11-free: depend on ICU
      8337aa3 sqlite3: Fix configure option warning
      51d3285 util-linux: Remove obsolete configure options
      04e3487 linux-yocto/3.10: -rt, ebtables and e1000 fixes
      8bd91ec linux-yocto/3.4: update to v3.4.69
      5745f59 linux/yocto-3.10: merge v3.10.19
      63fbeba webkit/midori: block to build webkit on mips64 with libn32 ABI
      44c6911 alsa-state: add status command
      813aafe apmd: add status command
      cb8e55c ppp: add status command
      3c182d2 busybox: add busybox_git.bb recipe
      ef71b02 linux-firmware: Remove bash scripts from target package
      7cfee36 hdparm: make wiper appear before hdparm in PACKAGES
      39bd9fb libsdl: Clean up configure option QA warnings
      2a135de adt_installer: Fix missing autogen.sh error
      f81aa8d lsb: de-bash scripts to remove bash dependency
      32c5d84 image.bbclass: Depend on virtual/kernel:do_deploy
      369772c poky: Add Ubuntu-13.10 to supported distros list
      92f984d local.conf.sample: Fix typo
      7b9f4b2 base/gcc-common: Ensure umask setting is consistent for shared workdir
      80d522a sstatesig.py: Fix image regeneration issue
      f91a3f4 bitbake: cooker: Fix support for wildcards in bbappend filenames
      79fbb1f base.bbclass: Set umask 022 also for do_unpack task
      d340d29 xinput-calibrator: add formfactor to RDEPENDS
      977d623 module-base: Fix misleading comment
      3f5e982 Revert "kernel: restore scripts in the sysroot"
      3ee3d3a rpcbind: Fix rpcbind restart failure when rpcbind is not running
      15bff74 elfutils: fix the condition check before remove eu-objdump
      bd9f9ab libav: install libraries to right directory when multilib is enabled
      75cc532 weston: upgrade to 1.3.1
      6fcb960 chrpath: Improve crazy code
      572a8eb icecc: Disable icecc for allarch recipes
      1897cce cronie: fix init.d/crond status return value
      ebe51c7 tcf-agent: add init.d/tcf-agent status command
      013a828 zlib: Add ptest
      f609852 tcl: fix version string and make recipe multilib build compatible
      2e62e82 file: remove useless patches
      5bfd377 clutter-1.0: upgrade to 1.16.2
      48e1961 librsvg: upgrade to 2.40.1
      4a4b36f fontconfig: upgrade to 2.11.0
      b732052 pango: upgrade to 1.32.6
      b03b338 libdrm: upgrade to 2.4.49
      463e56f bitbake: crumbs/builder.py: Fix typo for indefinite article
      32adaac libpng: set reasonable SUMMARY
      a88271e xproto: upgrade to 7.0.25
      a0e515f git: upgrade to 1.8.4.4
      4661094 libxcb: upgrade to 1.9.3
      3be9e24 xcb-proto: upgrade to 1.9
      63335c8 powertop: upgrade to 2.5
      9e74676 tar: upgrade to 1.27.1
      bab3142 python-setuptools: upgrade to 1.4
      87e1cca xtrans: upgrade to 1.3.2
      d652549 systemtap: upgrade to 2.4
      8bec473 libav: use CCLD as ld
      a216cc1 libpng: upgrade to 1.6.7
      e3c4124 coreutils 6.9: fix coreutils.texi
      82ff33f bitbake: Hob: force notebook refresh
      a10301f bitbake: data/codeparser: Improve handling of contains functions
      d061692 bitbake: bitbake: Share BB_TASKDEPDATA with tasks
      4c69970 bitbake: runqueue: Optimise next_buildable_task()
      3ca58c7 bitbake: codeparser: Drop unneeded variable separation
      960e305 classes/image: write image manifest
      bbbd6fc harfbuzz: Add PACKAGECONFIG for icu
      5048f59 beecrypt: Add PACKAGECONFIG for cplusplus
      bd93f10 poky: enable unknown-configure-option QA test as a warning
      1e084f9 qemu: add PACKAGECONFIG for vnc, libcurl, nss, uuid, curses, gtk+, libcap-ng
      937663b bzip2: Remove stange copy line, automake does this for us anyway
      381cd84 linux-firmware: add missing linux-firmware-iwlwifi-7260-7 package
      447a057 sanity: Use random filename for maximum path length test
      181875b sanity: Don't hard code value of ENAMETOOLONG
      d62ced4 bluez4: added dependency on 'libsndfile1'
      a6c4868 avahi: add leading space to RRECOMMENDS append
      2eccff7 webkit/midori: fix COMPATIBLE_HOST
      2d5b4af x264: install libraries to right directory when enable multilib
      f5e7c84 attr: attr_2.4.47 release tarball missing configure.ac
      0aef540 bitbake: fetch2: Correct a few calls to latest_revision()
      64372fa bitbake: bitbake: fetch2: Remove the unused urldata from the git fetcher.
      b1c15cb bitbake: data: Fix output inconsistencies for emit_var
      6ddb9bf bitbake: perforce: Fix path subdirectory issues
      4ca910d bitbake: bitbake-layers: avoid loading configuration when not needed
      300b6f7 bitbake: HOB: Show warnings in Issues tab
      381d592 bitbake: cooker: add support for using % as a wildcard in bbappend filename
      bc267ef bitbake: runqueue/bitbake-worker: Fix dry run fakeroot issues
      02a697c adt-installer: Switch from svn to tarball release for opkg
      b62bdbd metadata_scm: Avoid crashing on new svn version layouts
      6e8a4ef kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race
      33db10a Revert "kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux"
      9814cbf kconfig-frontends: add python to kconfig-frontends's RDEPENDS
      2b79088 initscripts: remove erroneous call to /etc/default/rcS in mountnfs.sh
      27fb21d pciutils: upgrade to 3.2.1
      d796b64 libsoup-2.4: upgrade to 2.44.2
      dffdf30 lighttpd: upgrade to 1.4.33
      62c50ee syslinux: use cross toolchain to compile
      e9802e3 util-linux: Package readprofile into it's own package
      4b6db00 security_flags: grub-efi-natve does not build with flags enabled
      c536fe2 librsvg: move gdk-pixbuf-native dependency
      6734f82 opkg: Don't use update-alternatives
      9339da2 opkg: Add PACKAGECONFIG options
      4fe0af5 opkg: Update to version 0.2.0
      0dc6c96 json-c: do rm -f on config.status before do_configure
      bc6a3cf gettext-minimal-native/iconv.m4: remove the test to convert euc-jp
      33c97ee rootfs_*.bbclass: List which post-install scripts can not be run
      739fba1 package_rpm.bbclass: Replace -linux-gnun32 with -linux.* in RPM platform file
      074a0ab gst-ffmpeg: fix CVE-2013-3674
      05e9f1f acpid: fix acpid break down
      637ad2f acpid: fix acpid boot error
      6a3a4ba base.bbclass: Fix incorrect setting of multilib PREFERRED_PROVIDER_virtual_pkg
      6a8307c poky.conf: enable ptest distro feature
      9d7f8e2 bitbake: fetch2: Stop passing around the pointless url parameter
      4acc732 bitbake: fetch2: Clean up some url parameters to functions
      fda7b7b ethtool: Fix ptest compile
      e031a05 buildhistory/distrodata: Adapt to updated fetcher API
      0d39f33 packagegroup-core-tools-profile: add systemd-analyze
      afe82ef oeqa/connman: disable unique test
      b4a0164 gcc: Upgrade to 4.8.2
      fd32fcb ia32-base: Remove cpio and ext3 defaults
      5968a7b matcbox-keyboard: bump SRCREV
      d60b4ff yocto-bsp: Add missing format specifier in bblayers error message
      2674ad5 genericx86-common.inc: add eee-acpi-scripts to MACHINE_EXTRA_RRECOMMENDS
      725fae6 bitbake: toasterui: fix typo
      e19ee57 bitbake: bitbake: cooker, toaster: mark interrupted builds as failed
      10717e5 bitbake: build.py: add single-quotes around already-expanded directory name
      852ba6c librsvg: upgrade to 2.40.0
      b60666e kconfig-frontends: upgrade to 3.12.0.0
      b2ff2d2 weston: remove reference to gles in PACKAGECONFIG
      ef3b0b5 json-glib: upgrade to 0.16.2
      42f1d64 sysvinit: use ALTERNATIVE to manage sulogin
      c2cbe0f gstreamer1.0: upgrade to 1.2.0
      7865ce6 util-linux: collect libs for related libxx-dev package
      551fcea license.bbclass: fix missing of license files on ubuntu build host
      489b5d0 liburcu: upgrade to 0.8.1
      e0d0a4e at-spi2-core: upgrade to 2.10.2
      f1cdef5 libjson: update to 0.11 and rename to json-c
      a053eff btrfs-tools: Update to git HEAD
      a50da2d image_types: newer btrfs.mkfs needs an empty file to build the disk in
      c5227cb telepathy-idle: upgrade to 0.2.0
      ae70c20 kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux
      4cf2d7c xorg-driver: fix qa issue while multilib enabled - contains Xorg driver but no xorg-abi
      6af097c bitbake.conf: Remove obsolete/unused MIRROR cruft
      f61e62c qemu: explicitly disable xen support
      fe25744 initscripts: add missing dmesg.sh to run-level S
      66fd6c4 kernel.bbclass: Use lzma not lzmash for decompressing
      3a8b73f systemd: Fix packaging of pam config files.
      27acf4f ia32-base.inc: remove eee-acpi-scripts from MACHINE_EXTRA_RRECOMMENDS
      17c155b icecc: Use bb.utils.which instead of calling which
      f2ed8fa distrodata.bbclass: Add fetch2 handlers to svn case in checkpkg
      1c0c6dc dbus: Don't depend on dbus-ptest-ptest for the nativesdk-dbus package
      5666f8c boost: Add patch to avoid undefined references to boost::atomic::lockpool::get_lock_for()
      8d2b5f3 lttng-modules: Update to 2.3.3 version
      7ef7e55 lttng-tools: Update to version 2.3.1
      ea7aba7 lttng-ust: Update to version 2.3.1
      182dc38 util-linux: Fix QA warnings about ALTERNATIVES
      bcdda02 udev: remove extra -dev/-dbg packages
      66a3db6 qemu-helper-native: remove unneeded FILESEXTRAPATH
      94aa8d8 squashfs-tools: remove FILESEXTRAPATH and move patches directory
      b609f91 libpcre: Cleanup FILESPATH
      e3ff4a2 grub: add xz RDEPENDS
      3cc043d lib32-qt4-examples: fix QA warnings and INSANE_SKIP not work
      9a6ee8b flex: fix m4 issue on target
      b74b235 expect: Add recipe
      7579458 libnl: Fix random segfaults due to memory corruption
      5505bde tcl: Install header into 8.6 instead of PN-PV in user/include
      1ef7240 mdadm: flag __SANE_USERSPACE_TYPES__ to include int-ll64.h for powerpc64
      943f4c1 kernel-grub.bbclass: support /boot area within root partition
      dc80eea sysvinit: fix problem in switching runlevels
      20efe19 libcheck: upgrade to 0.9.11
      0079588 sysstat: upgrade to 10.2.0
      bf7d135 bitbake: runqueue: Fix hole in setsceneverify skipped task logic
      215dab8 bitbake: fetch2: Fix handling of SCM mirrors in MIRRORS
      9ccfe66 bitbake: git: Use git branch for ancestor checks
      e15893a bitbake: serv.py: Give pr-server up to 5 seconds to commit data
      2354250 bitbake: git: Use merge-base instead of log for testing if a commit is present
      e45d735 python: Fix ptest not working problems
      f9729f4 sysvinit: unmount the psplash lazyily
      b0281b3 pybootchartgui: Add option --minutes to show time in minutes
      8c26891 pybootchartgui: Add a color for the package_write_* tasks
      85fca34 pybootchartgui: Reorder the legend to match the task execution order
      d5f88f0 pybootchartgui: Make bars without a specified color white
      46c4585 pybootchartgui: Make "Show more" show all processes
      65d4384 pybootchartgui: Draw a lot less ticks
      80cce56 pybootchartgui: Disable options that do not make sense
      730e350 pybootchartgui: No need to do a double list comprehension over files
      c10abc7 pybootchartgui: Avoid having overlapping process bars
      94caf6f pybootchartgui: Use correct header height
      2020eb2 pybootchartgui: Correct the X offset for the chart
      1a539bb pybootchartgui: Set the initial state of "Show more" correctly
      cacd502 pybootchartgui: Make the horizontal scaling stay within bounds
      d0e513d pybootchartgui: Import pybootchartgui 0.14.5
      a52c9b9 mtdev: upgrade to 1.1.4
      a95fcec libxrandr: upgrade to 1.4.1
      be49e20 gdk-pixbuf: upgrade to 2.30.1
      51feb29 nfs-utils: Add new option to disable nfsidmap and PACKAGECONFIG for that
      9a9a597 lttng-tools: Fixes incorrect path of ptest cases
      bba44c6 packagegroup-core-boot: Drop build-time dependency on virtual/kernel
      646a3b5 ofono: upgrade to 1.13
      36255d4 buildhistory_analysis: fix error when comparing image contents
      d7ccfc7 kernel.bbclass: fix hardlink test
      db7f8d4 kernel.bbclass: test for hardlinks before installing
      9fdd8ad bitbake: cooker, toaster: variable definition tracking
      5108437 bitbake: toaster: task with outcome 2 (sstate), should have sstate_result!=0
      6f01250 bitbake: hob/hoblistmodel: check if vals of packages/recipes names are not None
      ad65846 bitbake: cooker: warn if user specifies a target listed in ASSUME_PROVIDED
      859b631 bitbake: hob: refresh tables when the user is redirected to Edit packages
      5f98364 bitbake: toaster: fix path to buildstats file
      533cf81 bitbake: toasterui: mark failed sceneQueue tasks as failed
      9f1e696 bitbake: toaster: remove author field
      2445b31 bitbake: toaster: fix tasks showing as NoExec
      e1e1ee5 linux-yocto/3.10: meta: ARM: OMAP3: Add USB PHY driver for Beagleboard
      1893d15 poky.conf: add Debian 7.2 to SANITY_TESTED_DISTROS
      8babbd1 meta-yocto-bsp: update SRCREVs for 3.10.17 and beagleboard fixes
      779dec9 linux-yocto-rt/3.10: fix ntp merge issue
      89c986c linux-yocto/3.10: meta: ARM: OMAP3: Add USB PHY driver for Beagleboard
      de5f4ff classes/license: use "1" to set boolean variables
      152a1b5 classes/pkg_metainfo: remove
      a6e3916 classes/pkg_distribute: remove
      5f6ccc6 systemd: fix comments
      8865681 classes/license: fix comments
      920be20 gtk-immodules-cache: fix error message to use correct names
      d1d26a2 bitbake.conf: remove CPU_FEATURES defaults
      c028dcd classes/sanity: validate SDKMACHINE value
      0b15220 bitbake.conf: remove BOOTSTRAP_EXTRA_* variable defaults
      8692eeb classes/insane: improve LIC_FILES_CHKSUM messages
      6f54fa2 scripts/create-recipe: fix handling of --help
      9c27561 perl: perl-ptest.inc polutes package dependencies when ptest not enabled
      bfc55b9 classes/image-empty: remove
      931cf6e staging: Use hardlinking for sysroot_stage_dir
      ea92671 bitbake: cooker: replace "w" file opening mode with "a" mode
      8c53410 bitbake: toaster: convert build_package size to bytes to keep consistence
      b9d8104 bitbake: newbb.vim: fix spelling
      520f953 binutils: Add gnu-config-native to DEPENDS
      790b75f insane, license: Trap MalformedUrl exceptions when parsing LIC_FILES_CHKSUM
      3635f1f autogen-native: remove the unnecessary RDEPENDS
      b66f3dc Revert "glib-2.0: Specify libiconv when building on uclibc"
      40b3030 bitbake.conf: Default DISTRO to nodistro
      442e2e7 e2fsprogs: fix tests/f_extent_oobounds
      1c52c87 core-image-weston: add SSH and hwcodecs to the image
      78c6e69 icecc: Fix race condition when packaging toolchain
      0dbd545 icecc: Add package whitelist
      19c65b2 icecc: Support shell evaluation of KERNEL_CC
      d283bfd icecc: Enable icecc also for install step
      be18197 icecc: Add dummy python version of set_icecc_env
      54f52bc icecc: Add blacklist vars to BB_HASHBASE_WHITELIST
      280a492 icecc: Reduce verbosity with empty PARALLEL_MAKE
      79272eb icecc: Log reason in error cases
      9f56718 qemu: use PACKAGECONFIG to address xfsprogs dependency
      27c2cbb vala: cleanup DEPENDS
      64194d5 wpa-supplicant: enable CONFIG_CTRL_IFACE_DBUS_NEW
      f0aa0c2 packagegroup-core-basic: define VIRTUAL-RUNTIME_syslog
      e2ea549 gcc-common: Enable building multiarch mips gcc
      c7a80e4 systemd: Upgrade 206 -> 208
      a678456 elfutils: remove eu-objdump if it does not work
      0a08dc7 mklibs: add dependency on dpkg-native
      6eb26f7 image-mklibs: Fix grep pattern when mklibs collects executables in rootfs
      f312582 weston-init: use /run instead of /var/run
      7fd8919 openssh: upgrade to 6.4p1
      e6b7180 ethtool: upgrade to 3.12.1
      54651f4 nfs-utils: upgrade to 1.2.9
      2ba62cc cmake: upgrade to 2.8.12.1
      5540693 clutter-gtk-1.0: upgrade to 1.4.4
      feba094 freetype: upgrade to 2.5.0.1
      65ca5cb syslinux: add APPEND to dependency list
      df564c4 kernel: Use hardlinks for do_populate_sysroot for speed
      db5d127 glib-2.0: move more logic to the .inc
      c393536 lib/oe/path: Fixup handling of .* files in top level paths for copyhardlinktree()
      8a07a17 lib/oe/path: Fix performance issue got copyhardlinktree()
      5e73287 kernel: Use hardlinks during do_install for speed
      4fdc3d7 kbd: Fix stdarg related errors on uclibc
      4feed78 liburcu: upgrade to 0.8.0
      32c1180 xserver-xorg: upgrade to 1.14.4
      bd53283 avahi: fix avahi status command error prompt
      4412197 weston-init: start weston on a new VT
      f648488 weston: upgrade to 1.3.0
      5177812 wayland: upgrade to 1.3.0
      18ada13 clutter: upgrade
      ae03f31 cogl: upgrade to 1.16.0
      7c3986e cross-canadian: Let cross-canadian packages build for uclibc
      67a7ac1 bitbake: HOB: HIG compliant message dialogs
      34eb004 bitbake: depexp: Improve wording on requirements
      437e916 orc: version 0.4.18 migrated from meta-oe
      b9a660f binutils: remove embedspu
      217a8de nspr: Update to 4.10.1
      41f55f4 kbd: upgrade to 2.0.1
      8a03d59 sysvinit: adjust boot sequence and remove hack from udev
      f7140dc bootlogd: create log file if not present
      1e16634 lib/oeqa/utils: sshcontrol: make timeout depend on output
      26559c5 lib/oe/sstatesig: Ensure packagegroups don't continually rebuild
      3a5ab77 ppp: Fix compilation errors in Makefile
      530c87b eglibc_2.17.bb: accept make versions 4.0 and greater
      3a162de eglibc_2.18.bb: accept make versions 4.0 and greater
      2544359 makedevs: several fixes
      575dc3b sqlite3: Add support for column metadata API
      43cce83 binutils: Drop binutils-symlinks
      77ff02f binutils: Use alternatives for the binutils-symlinks package.
      d6cc7c8 toolchain-scripts/meta-environment: Further cleanup code duplication
      0331fc2 package_deb/package_ipk: Cleanup control file handling/races
      1eefcf0 package_rpm: Remove need for locking
      d5a1538 toolchain-scripts: Drop darwin8 code
      e52020e toolchain-scripts/meta-environment: Merge toolchain_create_sdk_env_script and the for_installer variant
      5810d54 extrausers.bbclass: avoid infinite loop
      3e6b57f mdadm: Disable the RUN_DIR check
      ec57d68 zisofs-tools-native: add missing DEPENDS on zlib-native
      59818a2 zisofs-tools-native: fix meta fields
      16d18ef python-pycurl: upgrade to 7.19.0.2
      b353269 diffstat: upgrade to 1.58
      aaa4b6e xz: upgrade to 5.1.3alpha
      039b8ec git: upgrade to 1.8.4.2
      a2e3baa xtrans: upgrade to 1.3.0
      4bffa07 xf86-input-keyboard: upgrade to 1.8.0
      1c3a35f python-setuptools: upgrade to 1.1.7
      e9ec153 linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
      6a3e200 qemu: upgrade to 1.6.1
      1096136 ppp: Add two structures in if_pppol2tp.h
      ef942e3 eglibc-locale: Does not create {localedir} if the toolchain has no files under it
      19aeca1 lib/oeqa: add oeTest superclass
      90c709d iproute2: de-bash its scripts to remove the bash dependency
      a530781 kernel.bbclass: Delay rm_work to run after do_bundle_initramfs
      8f84cc9 package.bbclass: Fix split_and_strip_files when file has single quote (')
      e82320a db: Fix build with high PARALLEL_MAKE
      57498ce bitbake: toaster: fix target package information
      9160f37 bitbake: toaster: enable required classes in the toaster startup script
      8cbd1ce bitbake: toaster: add variable description for prefixed/suffixed variables
      16067d5 bitbake: toaster: server shutdown on terminal exit
      af32d95 bitbake: toaster: fix timezone settings
      0087db6 bitbake: cooker: do not recreate recipecache in buildfile mode
      85b9194 bitbake: build, toaster: record proper task type
      a670859 bitbake: cooker: add data to the dependency tree dump
      f04a321 bitbake: toaster: fixes for null values from events
      d870d3e toaster: add class to dump toaster-tracked data
      fcce65d documentation.conf: update contents
      4d7639e image_types: Improve dependency handling between types (and use for sum.jffs2)
      baf005b linux-yocto/3.10: common-pc: add missing dependencies for BRCMSMAC
      dd361f0 linux-yocto/3.8: add crystalforest bsp legacy block drivers configurations
      1fe7bca linux-yocto/3.10: haswell-wc and crystalforest support
      a23c7e9 linux-yocto-3.10: bump to 3.10.17 and -rt11
      f354122 bitbake: hob: do not display the "Package list may be incomplete!" dialog
      1c7bbf8 bitbake: fetch/hg: Improve user/password handling
      fe3e265 bitbake: hob: populate error_msg when hob receives a CommandFailed event
      de7e6ef bitbake: fetch2/svn.py: use log instead of info to retrieve revision
      ba84fbe dev-manual: Updated the note about BB Commander/Eclipse WS locations
      98f631a adt-manual: Added note for static builds using -c populate_sdk
      3abf3a6 dev-manual: Updates to Toaster section
      81cfd06 dev-manual: Edits to the toaster section
      721abea ref-manual: Updated the "Development Checkouts" section
      08b5e31 ref-manual: updated the list of where to get YP release
      0ef2170 ref-manual: Updated link to build tools.
      c9cf0cf dev-manual: Fixed grammar error.
      f5180d7 dev-manual: Updated the layer.conf example
      43469cd adt-manual, dev-manual: Removed the LatencyTop website link.
      2e492c8 dev-manual, mega-manual: Updated kernel flow (text and figs)
      15a28d7 dev-manual, mega-manual: Updated BSP Development figure
      c922bfe dev-manual: Edits to the "Source Directory" term
      0dd2fed dev-manual: Edits to "Yocto Project Source Repositories" section
      d248c5d dev-manual: Removed tarball method for installing meta-intel
      4d69fc1 dev-manual: Removed tarball method for poky in setup section
      57d2417 dev-manual: Updates to toaster section
      a26aff6 ref-manual: Edits to the IMAGE_FSTYPES variable
      a73466a ref-manual: Updated IMAGE_FSTYPES variable description.
      195266b adt-manual: Minor edits to Chapter 4
      a508060 adt-manual: Edits to "Optionally Building a Toolchain Installer"
      853df59 adt-manual: Edits to "Extracting the Root Filesystem" section
      a8b0bc4 adt-manual: Edits to "Getting the Images" section
      62881f1 adt-manual: Edits to "Using BitBake and the Build Directory" section.
      443de92 adt-manual: Edits to the "Using a Cross-Toolchain Tarball" section.
      4569cba adt-manual: Fixed toolchain path in example
      122e688 adt-manual: Removed tarball method from "Getting the ADT Installer Tarball"
      610ccdb adt-manual: Fixed wording for getting the ADT tarball
      524f1f5 yocto-project-qs: Updated the "Super User" section for no tarballs
      458cc5c yocto-project-qs: Fixed toolchain path
      e3f634c yocto-project-qs: Removed note in "Downloading the Filesystem" section.
      fbf0e60 yocto-project-qs: Fixed toolchain installer download path
      37777b7 yocto-project-qs: Updated "Building an Image" example to use Git repo
      f762d40 documentation: Changed Note for most recent manual
      a2aeade ref-manual: Added sdk-pms to Distro Feature list.
      1f290da kernel-dev: Corrected error in the FILESEXTRAPATHS example
      fe02927 dev-manual: Added -ptest to list of complementarty packages
      89c1047 dev-manual: Uncommented the Toaster GUI section.
      fa1ba9b documentation: Updates to Manual revision tables
      3d26d97 tools/mega-manual.sed: Updated to build for 1.6 release.
      209f6c5 poky.ent: Updated variables for 1.6 release support.
      94b5584 profile-manual: Added note about SystemTap ssh connectivity
      a77c4c8 dev-manual: Added note for BB Commander project location.
      75c87f0 dev-manual: Updates to section on using script to create general layer
      95f17e0 dev-manual: Updated "Using .bbappend Files" section.
      69eec3e dev-manual: Updates to "Best Practices to Follow When Creating Layers"
      fc5b458 bsp-guide: Fixed some grammar and some filenames.
      7059097 sgml-common: make postinst run successfully at rootfs time
      2e0f7cf groff: fix pkg_postinst and remove unneeded do_install_prepend
      a04b611 jpeg: enable postinst to run at rootfs time successfully
      660304f busybox: fix sed auto insert newline testcase
      fa91171 udev: fix typo in local.rules
      2c99422 grub-efi.bbclass: Fix startup.nsh to work on more EFI revs
      717c1ed update-rc.d.bbclass: Cleanup package scripts
      452b23a rxvt-unicode: upgrade to 9.19
      cc0baf1 grub-efi.bbclass: Fixes GRUB_IMAGE when using boot-directdisk class
      678a4fa Mesa: upgrade to 9.2.2
      9f7f7af irda-utils: restart irda daemon correctly
      3129619 lttng-tools: make ptest able to work on target
      c177fb6 elfutils-native: Update the patch to include the missing pieces needed for tests
      a7ba2f9 syslinux.bbclass: Fix default serial port string
      523f2a9 cross-canadian: Improve comment
      57b2102 telepathy-glib: upgrade to 0.23.0
      5a79e6f telepathy-mission-control: upgrade to 5.16.0
      78c3a33 iproute2: upgrade to 3.11.0
      1d30c64 libuser: upgrade to 0.60
      0902b63 lsb: add begin function to lsb_log_message
      3d204a5 libx11: upgrade to 1.6.2
      1d8cfc7 shared-mime-info: upgrade to 1.2
      b8c0b8f ncurses-terminfo: Remove bashism from basic terminfo installation
      1b8bd9e e2fsprogs: Escape filenames in populate-extfs.sh
      6ab2d46 coreutils: support command arch
      15bc2dd vala.bbclass: add dependency on vala
      bd1cf71 cross-canadian: Handle powerpc linux verses linux-gnuspe
      3e629b2 systemd-compat-units: run-postinsts fix script link
      aedf3d9 nfs-utils: modify nfsserver init script indent
      52a3c78 classes/ptest: do not set EXCLUDE_FROM_WORLD
      72d0504 classes/ptest: fix quoting
      0cda4bb core-image-basic.bb: Allow user extensions
      5e42796 recipes: Remove PR = r0 from all recipes
      4d3c79d openssl: create package for openssl configuration file
      af7a27b dbus: no messages of status command print
      6583f62 attr: upgrade to 2.4.47
      dd1d9bd gnupg: upgrade to 2.0.22
      3f4d3ee cups: upgrade to 1.7.0
      1a573bb udev: Update touchscreen rule for ID_INPUT_TOUCHSCREEN
      534b447 connman: upgrade to 1.19
      5361ed7 libcap: fix CAP_LAST_CAP
      f232a94 glib-2.0: upgrade to 2.38.1
      61af454 bluez5: upgrade to 5.10
      b2e86f7 pixbufcache.bbclass: gdk-pixbuf-query-loaders depends on libz
      f6053d8 sudo: upgrade to 1.8.8
      5fb5243 curl: upgrade to 7.33.0
      7330735 at: upgrade to 3.1.14
      44e2ea5 opkg: putting the service files into PN
      f8a9653 qt4: add upstream QTBUG-34218/QTBUG-34234 misaligned selection patch
      2342fdc wic: Remove selinux_check()
      bd1a423 strace: remove += assignment of a OVERRIDES variable
      f7e849f pigz: Add pigz to buildtools tarball
      cb5a224 debugedit: fix segment fault while file's bss offset have a large number
      8ceb14a cogl-1.0: depend on virtual/mesa
      2588a0f rpm: Fix FILES_${PN}
      d69931d scripts/oe-pkgdata-util: fix global name 'debug' is not defined
      76751a0 update-rc.d.bbclass: Fix host/target test in postinst
      5e75eba pcmanfm: upgraded to 1.1.2
      dce662a grep: upgrade to 2.15
      91c00fb scripts: Add ksize.py and dirsize.py
      7f1b40b libsoup: upgrade to 2.44.1
      3075401 libxv: upgrade to 1.0.10
      fcd931c pseudo: fix library path in FILES_${PN}
      0cff01d pulseaudio: Fix build break on armeb
      4b32447 tzcode & tzdata: update to 2013h
      8f431d0 meta-toolchain-qt: put QT_CONF_PATH in environment script
      60e271a nativesdk-qt4-tools: create qt.conf file
      3ccc65f gnome: set UNKNOWN_CONFIGURE_WHITELIST
      03ba78b xorg-proto-common: set UNKNOWN_CONFIGURE_WHITELIST
      4a8d62c openssh: upgrade to 6.3p1
      9c01b3b ethtool: upgrade to 3.11
      c64bad9 cmake: upgrade to 2.8.12
      97dd981 libgcrypt: remove --without-pth
      9669889 gnome-common: inhert gnomebase not gnome
      bad13be xorg-lib-common: set UNKNOWN_CONFIGURE_WHITELIST
      6ce2879 scripts/oe-pkgdata-util: add ability to find a recipe from a target package
      948a714 scripts/oe-pkgdata-util: add ability to look up runtime package names
      48755f1 scripts/oe-pkgdata-util: add ability to search for a target path
      4ec1f8c scripts/oe-pkgdata-util: check path arguments to ensure they exist
      8b42409 scripts/oe-pkgdata-util: improve help text and command line parsing
      9ce903b scripts/oe-pkgdata-util: remove remnants of former pkgdata structure
      78b91ab pigz: bump to 2.3.1
      31d041b harfbuzz: upgrade to upstream version 0.9.22
      10f561f cairo: upgrade to upstream version 1.12.16
      8bb28e3 gtk+: upgrade gtk+ to upstream version 2.24.22
      9ad26e3 cracklib: cracklib-native should not depend on zlib
      13dbf09 nfs-utils: nfsserver restart should kill and recreate nfsd kernel threads
      72eadfc libfm: allow build with automake-1.14
      41e5d52 libfm: upgrade to upstream version 1.1.2.2
      b40ff31 libcheck: allow build with automake-1.14
      95001f4 libxcb: fix build with automake-1.14
      b82603b nfs-utils: Stop rpc.statd correctly
      2570f13 perf: flag __SANE_USERSPACE_TYPES__ to include int-ll64.h for mips64
      e75ea49 screen: dynamically add or remove a entry to/from /etc/shells
      312cc0f bash: dynamically add or remove a entry to/from /etc/shells
      be860ac base-files: remove invalid entries from /etc/shells
      39356f6 relocate_sdk.py: Allow script to work with Python 2.4 and 3.
      2e55755 rpm: Add nativesdk to BBCLASSEXTEND
      7a2de00 runqemu-extract-sdk: add --numeric-owner option to tar command
      e0152db gdk-pixbuf: use PACKAGECONFIG to control legacy X11 sub-library
      d531a56 nss: don't need set SRC_URI with both += and _append
      05efe6b mesa: fix dependency
      ecf98b4 kernel-grub.bbclass: add a method to install/update for bzImage
      6f50315 libarchive: replace += with _append for appending to OVERRIDES variables
      bc2040d image_types.bbclass: fix endiannes for sumtool (jffs2 summary)
      1c3c811 image_types.bbclass: do not force --no-cleanmarkers for jffs2
      4af9886 dropbear: update to 2013.60 version
      b831b8c bzip2: replace += with _append for appending to OVERRIDES variables
      c0ab353 check: Remove duplicate recipe of libcheck
      d555261 kbd: Use libcheck instead of check
      9ff572a libcheck: Add native support for kbd-native
      0816c57 openssl: switch ARM builds from linux-elf-arm to linux-armv4 config
      137d141 openssl: use linux-generic64 target for Aarch64 (LE and BE)
      c9fc9b9 mesa-gl: use base_set_filespath
      526488c mesa: make runtime variables depend on PACKAGECONFIG
      823299e clutter: remove usage of FILESPATH
      f995feb buildhistory-diff: add ability to report version changes
      bc77ea9 packagegroup-base: if zeroconf DISTRO_FEATURE enabled, add libnss-mdns
      2ccb868 nspr: Add LDFLAGS to TARGET_CC_ARCH to fix warning
      d4cc036 minicom: fix -v/-h return value
      30bafdc gdb: upgrade to 7.6.1
      4525157 mdadm: upgrade to 3.3
      3347bc4 tcl: upgrade to 8.6.1
      4d68d36 tar: upgrade to 1.27
      810126d m4: upgrade to 1.4.17
      d286942 xinit: upgrade to 1.3.3
      8c1d95f python-setuptools: upgrade to 1.1.6
      816593f xmodmap: upgrade to 1.0.8
      754e876 base.bbclass: fix nondeterministic PACKAGECONFIG processing order
      ffb440c midori: exclude from self-hosted for mips64
      c367ebd initramfs-framework: fix test that filter backup module files
      cf66584 wic: Update and generalize pseudo setup for rootfs generation
      8ac5454 wic: Make find_binary_path() more user-friendly
      cb0df94 wic: Remove binary dependencies
      51fdae5 wic: Remove rpmmisc call from livecd
      f2ca93e wic: Remove rpm and grabber dependencies from BaseImageCreator
      39c9af5 wic: remove rpm warning code from BackendPlugin
      2a83999 wic: Remove dependency on myurlgrab module
      c4a4fc5 wic: Remove dependency on rpmmisc
      db034f0 wic: eliminate module checks
      ce2dabd wic: Remove dependency on rt_util module
      a7b1ff8 upstream_tracking: Update manual check for minicom
      56cc2f2 linux-yocto/3.10: MinnowBoard support
      505114c wic: add pseudo to the populate-extfs step
      8707c39 bitbake: monitordisk: lower inode check warning to note
      a8b06e6 file: Add nativesdk in BBCLASSEXTEND
      0b3bbef ossp-uuid: Add nativesdk in BBCLASSEXTEND
      ddf4e89 smartpm: Add nativesdk in BBCLASSEXTEND
      a73f180 rpmresolve: Add nativesdk in BBCLASSEXTEND
      04d5d12 acl: Add nativesdk in BBCLASSEXTEND
      05999d1 attr: Add nativesdk in BBCLASSEXTEND
      cd75fad icu: Add nativesdk in BBCLASSEXTEND
      2b7f388 popt: Add nativesdk in BBCLASSEXTEND
      11fd886 beecrypt: Add nativesdk in BBCLASSEXTEND
      63534ab openssh: fix sshd status command error prompt
      d3cb369 lib/oeqa/runtime: build kernel module on target test
      67378fb wic: Initialize return values in find_artifacts()
      e22efb4 wic: Check for the existence/correctness of build artifacts
      99d33f2 packagegroup-core-basic: libuser has a hard depenency on libpam
      75b0fb2 udev: update local rules for new touchscreen device
      9d8fc02 ca-certificates: Clarify in Description that certs are Debian based
      8b3b1e7 base-passwd: upgrade to 3.5.28
      81b0852 kbd: Update to 2.0.0
      f2c4d80 check: add check recipe for kbd to use for creating unit tests
      89b569b crond: remove UID check in init script
      57f75d3 xf86-video-fbdev: upgrade to 0.4.4
      46ae29d xprop: upgrade to 1.2.2
      81ecf2b xinput: upgrade to 1.6.1
      b9d8016 xf86-video-intel: upgrade to 2.21.15
      c786249 xset: upgrade to 1.2.3
      13f1007 libdrm: upgrade to 2.4.47
      3070180 xf86-input-evdev: upgrade to 2.8.2
      76b04f0 xauth: upgrade to 1.0.8
      c17b080 xkeyboard-config: upgrade to 2.10.1
      b0125ee byacc: upgrade to 20130925
      db1d37a perf: flag __SANE_USERSPACE_TYPES__ to include int-ll64.h for powerpc64
      acd1d30 initscripts: insure checkroot.sh runs before anything writing to the file
      8bfa6d9 grub: add patch to support 256 byte inodes
      88a8e96 cairo: add explicit dependency on zlib
      cd414c0 kmod: Update to Rev 15 via git
      e83640d kmod: Add patch to fix seperate build dir of ptest
      ead4a7d xz: Add nativesdk for Python3 nativesdk dependency
      99cfbe9 sysstat: upgrade to 10.1.7
      803870d package-regex: Tweak python-docutils so it works correctly
      a72aae1 local.conf.sample.extended: Add some additional comments for security flags
      9a1dce1 bitbake: toaster: add Toaster UI interface
      4e21d09 bitbake: toaster: adding frameworks for the Simple UI
      164ab73 bitbake: toaster: add toaster code to bitbake
      d0072fc bitbake: utils: Don't show stack traces for BBHandledException
      529bf97 update-rcd.bbclass: fix host/target test
      68a41d2 glib-2.0: fix build on Aarch64
      40420b9 cross-canadian: Fix SHLIBSDIR when using multilib
      4bece4b nativesdk: Fix pn check
      024bd68 wic: Check for external modules
      c7b0165 wic: Force lba off for FAT16 partitions
      72b5535 busybox: Add depmod (adds 2240 bytes)
      71454f9 wic: check passed-in build artifact directories
      040bd3d wic: check for build artifacts
      6a39441 bitbake.conf: add WARN_QA and ERROR_QA to the hash whitelist
      2b5bac0 poky: Update Version post release
      396d8f8 bitbake: bitbake: bitbake: bb: Drop deprecated functions
      e9662e8 bitbake: siggen: handle recipe path changes in siginfo files
      ce0a6f8 bitbake: hob: Hob should ask for ports only when Manual proxy is selected
      3ca820d bitbake: cooker/command: Add error state for the server and use for pre_serve errors
      f41922d bitbake: bitbake: Update post 1.20 to development version
      5c63fc7 classes: add aarch64_be target
      7eca052 libarchive: Add -native version needed for pixz
      3d15fdc glib-networking: upgrade to 2.38.0 and PACKAGECONFIGise
      b740c92 automake: update to upstream version 1.13.4
      e604aee automake: unhardcode version number
      79939e4 kconfig-frontends: Update to 3.11.0.0
      3295750 sqlite3: update to 3.8.0.2
      05a3ec2 libpng: Update to 1.6.6
      1e02b0c lsbinitscripts: Update to 9.50
      40b89fd tzdata: Update to 2013g
      6515b64 tzcode: Update to 2013g
      8642829 file: Update to 5.15
      841ffcc util-macros: upgrade to 1.17.1
      6882a5b rsync: upgrade to 3.1.0
      29ae8a3 man-pages: upgrade to 3.54
      d3d9834 libbsd: upgrade to 0.6.0
      2fa7846 desktop-file-utils-native: upgrade to 0.22
      5150187 cups: upgrade to 1.6.4
      2cab29c at-spi2-gtk: upgrade to 2.10.0
      70676e9 at-spi2-core: upgrade to 2.10.0.
      b50e7ec atk: upgrade to 2.10.0.
      7241b28 glib-2.0: upgrade to 2.28.0
      d0b578d gnome-desktop-testing: add
      05bbc3d xf86-video-vesa: upgrade to 2.3.3
      552780d libxpm: upgrade to 3.5.11
      5e8e405 libxmu: upgrade to 1.1.2
      fa21d18 libsm: upgrade to 1.2.2
      b9b3414 ltp: update to new release 20130904
      ac40bd0 connman: Upgrade to v1.18
      b843f7c sqlite3: update to version 3.8.0.1
      9877df0 insane: configure option checking
      f11cb8d image types: split live into iso and hddimg
      6a6735c kernel: restore scripts in the sysroot
      a839783 libxt: remove unused configure option
      76fcef6 pango: fix x11 DISTRO_FEATURE check
      b5fcad8 libmatchbox: remove unused configure options
      298cf58 gtk+: remove unused configure options
      86bb78c update-rc: Stop and remove service if updating package
      7266015 qt4: add upstream QTBUG-31579 patch for QPainter regression
      7939f6b connman: Remove obsolete configurations from EXTRA_OECONF
      be7dbe6 separatebuilddir: remove entries for imake and xorg-cf-files
      043b5c6 xorg-lib-common: fix malloc0returnsnull usage
      ea4eafc libav: Add libswscale to PACKAGES_DYNAMIC
      3e01f95 sysvinit-inittab: Fix getting tty device name from SERIAL_CONSOLES entries
      0f431a3 kmod-native: use bswap to work on older Linux hosts
      f33afad bitbake.conf: Remove double slash from PATH_prepend and PKG_CONFIG_DIR
      0496277 device_table-minimal.txt: change group of /dev/hda back to disk
      567754a classes/package: handle filenames containing wildcards
      029b0fe kernel.bbclass: unset LDFLAGS when run devshell in kernel recipe
      f4d3a3d telepathy-mission-control: Add PACKAGECONFIG for upower and connectivity
      73cf58d matchbox-wm: Add dependency on libxfixes and libxcursor
      dae0c67 uboot-config.bbclass: Raise an error for unknown configs
      aeb7909 linux-yocto/3.10: integrate lxc kernel feature and 32 bit x86 config
      73513f9 linux-yocto/3.10: boot-live.cfg: Add CONFIG_ZISO=y
      ff843e5 linux-yocto/3.8: re-use common-pc-64 for hasswell-wc
      0bd6312 utils.bbclass: Fix override ordering for FILESPATH
      5e3ed0b alsa-state: Rename init script
      1960f00 gcc: Fix strange C++ repo issues
      0314b91 kernel-yocto: Add a missing '['
      f93071f uboot-config.bbclass: Fix use without IMAGE_FSTYPES appending
      bf19a86 lib/oe/path: Fix copytree functions for tar 1.27
      d3846f0 classes: tar 1.27 fixes
      faf8f86 build-appliance: Update SRCREV for release
      ee9a3c1 toolchain-scripts: Fix TARGET_SYS reference
      102bf5e build-appliance: Update SRCREV for release
      bc37596 distro_alias.inc: better sort
      c5a2104 distro_alias.inc: Package corrections
      c042b16 ref-manual: Added new UBOOT_TARGET variable to glossary.
      ac7522b ref-manual: Updated the PACKAGECONFIG variable description.
      c65ae43 dev-manual: Tweaked the source code directory paths in the examples.
      82846e6 dev-manual, mega-manual: Updated the generic kernel file figure
      5948aaa dev-manual: Fixed anchor tag and added doc step for bug filing.
      28bab2e dev-manual: updated the example list of branches for poky.
      ceb56b7 dev-manual, mega-manual: Updated downloads figure and some links.
      f52b7f2 dev-manual: Edits to the Getting Started Chapter.
      75ac719 dev-manual: Some minor edits to Introduction chapter.
      4570c2e dev-manual: Changed "$" to "#" for runtime packaging section
      5dfb1de ref-manual: Updated files in the image part of build history
      8229b47 ref-manual, dev-manual: Updated buildhistory figure
      4404c69 ref-manual, dev-manual: Edits to runtime package management section.
      b5ad5ba ref-manual: Fixed cross-reference to runtime package management
      7754bd2 dev-manual: Patch applied to runtime package management.
      5445f71 bitbake: hob: change tooltip for live images
      5416b95 maintainers.inc: remove obsolete recipes
      81e678b bitbake: bitbake: replace comment added in conf files
      3c5b6af bitbake: bitbake-dumpsig: introduce command line and error handling
      e57bd62 bitbake: bitbake-diffsigs: improve error handling
      e0e30c6 bitbake: bitbake-diffsigs: refactor argument parsing slightly
      7c72144 bitbake: bitbake-diffsigs: handle if task name is specified without do_ prefix
      f18194c bitbake: bin/bitbake: Clarify server error message
      06afe1f bitbake: bin/bitbake: Clear ui-queue when starting a server
      266a7d8 bitbake: bin/bitbake: No need to show tracebacks for BBHandledExceptions
      22d5782 bitbake: xmlrpc: Show a better error message for connection failures
      a333693 bitbake: bin/bitbake: Catch establish connection log messages
      ee7e64f bitbake: bitbake/hob: removing extra parameters from conf files using hob
      45392cc bitbake: HOB: MACHINE should be saved in conf files using ?=
      9591591 bitbake: utils: use logger.warn instead of print in copyfile
      0b9c339 qemu: fix nativesdk build without x11
      abeea1b systemd: Add PACKAGECONFIG for cryptsetup
      816b6be subversion: Add dependency on file for libmagic
      b77cb9b lame: Add dependency on ncurses
      5f59b3c glib-networking: Add PACKAGECONFIG for p11-kit
      7f88c9b x11vnc: Add PACKAGECONFIG for xinerama
      280045c tcl: Add dependency on zlib
      854fa8e wget: Add dependency on libpcre
      69a9c18 gstreamer1.0-libav: Add PACKAGECONFIG for orc
      105a709 libunique: Add PACKAGECONFIG for dbus
      869d732 aspell: Add PACKAGECONFIG for curses
      adf8a63 xf86-input-synaptics: Add dependency on libxtst
      a72f4a9 xdpyinfo: Add dependency on libxcomposite
      0c7b734 python: Ensure build completes before install
      28eedee run-postinst: Ensure that the postinsts are ordered
      a59aa9e package_rpm.bbclass: Workaround failure in attemptonly installs
      acf5470 oe-init-build-env-memres: Unset BBSERVER if already set
      540c279 connman-conf: add a global public DNS to network provisioning
      113398d oe-init-build-env: unset BBSERVER
      479fcbf udpated-rc.d: Track postinst/prerm/postrm in task checksum
      47129f3 systemd: Track postinst/prerm in task checksum
      0d8cbc3 systemd-compat-units: Use correct run-postinsts script link
      17b5f2f kmod: ptest fixes
      56ea7ac dbus: fix QA error building nativesdk-dbus
      9d64f3de linux-yocto: enable CONFIG_INPUT_EVDEV as standard policy
      9def5c9 license.bbclass: use shutil instead of bb.utils.copyfile
      2a013e2 opkg: ignore result of opkg configure
      20a86e1 cross-canadian: Fix TUNE_PKGARCH references
      4e537df pixman: Fix nativesdk rebuilds for armv7a
      f81f4c5 gcc-common: Improve fpu code checksum dependencies
      6dff1bc cross/crosssdl/native/nativesdk: Fix do_packagedata stamps
      d299444 boot-directdisk: avoid loop in MBR disk signature generation
      104166c yocto-kernel: Use variable-substituted BBLAYERS
      bdfd716 distro_alias: Fix missing =
      e7a2023 maintainers: Add some maintainers
      42b115b package_regex: Add python-docutils
      35a74ee upstream_tracking: Update manual checked list
      56f39bc bitbake: lib/bb/monitordisk.py: fix spelling in error text
      a02280f README.hardware: update genericx86 hardware support
      85a8645 distro_alias.inc: update distro_alias
      20979ec distro_alias.inc: Sort entries
      30f85ce poky.conf: Removed obsolete distros from SANITY_TESTED_DISTROS
      43a960a linux-dummy.bb: Resolve missing task issues
      b618f74 makedevs: Do not return error if the fifo exisits
      d80472c dpkg: Add xz to RDEPENDS
      75c143a wic: Add OpenEmbedded-specific implementation
      9fc88f9 wic: Add mic w/pykickstart
      53a1d9a wic: Initial code for wic (OpenEmbedded Image Creator)
      e5d0976 yocto-project-qs: Minor formatting to filesystem image section.
      62e0a4a yocto-project-qs: Added a link to MACHINE variable.
      0f066bb yocto-project-qs: Updated instructions for downloading from website.
      218d251 yocto-project-qs: Updated wording for required packages.
      aa8edc0 yocto-project-qs: Removed redundant production note.
      5b973c4 ref-manual: Added U-Boot variables
      bdede3b ref-manual: Updated supported distros list.
      1cd0b1e ref-manual: Updated the BBPATH glossary term
      a81bfcb ref-manual: Edits to restore the supported Linux distro list.
      6b9cff4 documentation: Updated Manual Revision History Tables
      320f90d ref-manual: udated list of supported distros
      22909d0 ref-manual: Applied review edits to migration section.
      a8a2404 ref-manual: Updated 1.5 Migration section and COMPLEMENTARY_GLOB variable
      0d194a8 dev-manual, ref-manual: Review edits for new variables.
      df2e70a ref-manual: Updated the QA checks section in the 1.5 migration section.
      2814418 ref-manual: Added the version-going-backwards test to insane
      d8d5841 dev-manual: Edits to the "Setting Up Runtime Package Management" section.
      ec84110 dev-manual: Updates to "Working with Eclipse" section.
      e2dd4ee dev-manual: Update to "Toaster" section.
      63bc84c poky.ent: Fixed variable for ADT Installer download link
      ec51951 poky.ent: Changes to the Fedora essential packages for the host
      7bd3a81 ref-manual: New migration section for 1.5 and new variables
      155961d ref-manual: Updated the "Images" section.
      89d3e75 ref-manual: Added some more undocumented classes
      eb36aaa ref-manual, dev-manual: Edits to running automated tests section.
      b8bdd92 ref-manual: Updated the bitbake --help listing.
      7fa2c8f bsp-guide, dev-manual: Updated for 3.10 default kernel
      18d6adb ref-manual: Updated the autotools.bbclass section
      aca7aea ref-manual: Updates to DESTDIR areas.
      fcc3b98 ref-manual: Updated the EXCLUDE_FROM_WORLD variable.
      a8d5d06 ref-manual: Added new PARALLEL_MAKEINST variable description.
      0f90262 ref-manual: Edits to PARALLEL_MAKE variable.
      45ace75 ref-manual: Updated the PARALLEL_MAKE definition.
      46b76d4 ref-manual: Updated the SERIAL_CONSOLE variable
      5cb0828 ref-manual: Updated SRC_URI description
      e44538f ref-manual, dev-manual: Applied review comments for test section
      56c4de9 ref-manual: Added TEST_IMAGE variable description to glossary.
      a1d9b6d pseudo: Fix race problems
      b43c812 bitbake: HOB: Busy cursor when saving configuration
      0fe5d9d qemu: Add fix for floating point issues on x86-64
      331159d slang: fix sprintf bug concerning 8-bit characters
      58825b9 nss: Fix return codes in postinstall
      df18dc0 boot-directdisk: ensure generated MBR disk signature is non-zero
      cf2ebed mkefidisk.sh: Allow using a loopback mounted file
      072c4e1 kernel.bbclass: Allow INITRAMFS_TASK to trigger copy initramfs code
      d273610 opkg: Use systemd service for first boot configuration
      7509c0f sato-icon-theme: add more compatibility symlinks
      d4b0a4b pcmanfm: hide the desktop preferences
      2471296 psplash: copy image files from workdir instead of next to recipe
      2e1cb79 libtool: Don't patch generated files
      08d902a native: Use a native site file and ensure the correct sed is used
      db51dd2 nativesdk-packagegroup-sdk-host: Add nativesdk-makedevs
      f9c26fb systemd-compat-units: do not create runlevel command
      4312f5a makedevs: rectify the exit codes and handle the invalid parameter
      66bf656 makedevs: Add device_table-minimal.txt to the nativesdk sysroot
      9f3706f dropbear: pass SFTPSERVER_PATH explicitly
      1abb7e7 packagegroup-self-hosted: add xz to enable bootstrap
      636cbfd eglinfo: drop machine-specific configuration from oe-core
      e8e3b62 matchbox-panel: silence some pointless warnings
      0ac8934 boot-directdisk.bbclass: Fix media generation problems with vmdk
      ec9f4c3 syslinux.bbclass, syslinux: Update to syslinux 6.01
      fde2911 bootimage.bbclass, zisofs-tools-native: add ability to compress ISO images
      4a0ff9c syslinux.bbclass: Fix hard coding of console=tty*
      5a2d11e grub-efi.bbclass: Add serial and graphics menu options
      24ffda4 bootimage.bbclass, grub-efi.bbclass: Improve EFI & PCBIOS+EFI ISO support
      197f1fe grub-efi-native: Add support for EFI ISO images
      bb8e360 meta-yocto: updated SANITY_TESTED_DISTROS in poky.conf
      b049d53 testimage: Exclude BB_ORIGENV variable
      724a466 builder: register text files with leafpad
      b88d1fb packagegroup-self-hosted: add leafpad text editor
      2f64fae classes/package_rpm: fix bitbake package-index for RPM
      1bff3fc oe-init-build-env-memres: use shell instead of Python to show the port number
      e5fcc7e pseudo: warn twice if the 32-bit toolchain appears broken
      601e1a7 pseudo: use bbnote/bbwarn instead of echo
      68ec3d4 qt4-x11-free: disable QGtkStyle
      32edeb3 gcc/libtool/perl: Fix various path to sed-native problems
      b8819b0 runqemu: Use correct kvm CPU options for qemux86* with kvm
      5454f92 busybox: update mdev.conf
      41875fa linux-yocto/3.10: common-pc* config updates
      d7e22e5 adt-installer: add warning if MACHINE is not set in adt-installer.conf
      1ffa203 adt-installer: check if sudo is needed when installing target sysroot
      2f8ce2c package.bbclass: Clear umask when using os.mkdir
      41f88ee lib/oeqa/runtime: ping: wait for 5 echo replies
      141d4f3 nativesdk-packagegroup-sdk-host: Add nativesdk-shadow
      d43d7b1 shadow: Add nativesdk to BBCLASSEXTEND
      5b5e1b9 relocate_sdk.py: make it work also with python 3
      c54076e distutils: Replacing path to native path only to be done to non-native python packages
      e58266d bind: port a patch to fix a build failure
      4d8ab87 build-appliance: Update SRCREV
      8bf8fe0 poky: Update to 1.5 release version
      3059b09 bitbake: bitbake: Update to version 1.20.0
      28af70d wget: remove po.m4 patch
      68db43e texi2html: remove po.m4 patch
      495d05c ptest-runner: compatibile with busybox
      bd5c5f0 systemd: fix ptest support
      a2a544d perl: do not use pushd
      02af823 grub: don't patch generated configure to fix do_patch re-execution
      f79b21a scripts/runqemu: write temp file into correct location
      ebdc88a documentation.conf: update contents
      e0a351b sysvinit: don't use useradd
      5f9ee67 base-passwd: add shutdown group
      139e887 shadow: Turn shadow-native into a BBCLASSEXTEND
      9bed1a3 shadow: Move common code to shadow.inc
      1146eeb webkit-gtk: limit ld memory requirement
      1917544 init-install-efi.sh: Remove unnecessary udev rules file to avoid errors
      e42fefe init-install-efi.sh: Fix root= specification
      cbc12aa package_deb, apt.conf: fix apt failure in do_rootfs()
      7290332 elfutils: remove configure bits from patch
      a60c6b3 libpam: Avoid host contamination issue w. libprelude
      ad311a1 makedevs: add nativesdk to BBCLASSEXTEND
      49e754a autoconf: Add fix for sh verses bash issues
      dd4b362 qemu: don't claim support for IrDA and PCMCIA
      44d74f6 boost: set up PACKAGECONFIG for boost-python library
      f9c1ac3 kern-tools: fix multi patch application without headers
      c68888f telepathy-mission-control: do_compile failed (race issue)
      a897186 libav: make X11 dependencies dependent on DISTRO_FEATURES
      95455bc classes/testimage: add informational messages about tests and do some cleanup/formatting
      8020349 image.bbclass: uninstall package only if it's already installed
      8c5f345 sstate.bbclass: ignore the tar failure.
      0fc8317 yocto-bsp: add 3.10/remove 3.8 kernel from templates
      bf6b0d9 glib-2.0: fix broken python script header on machines using buildtools
      954e349 avahi: bump INC_PR to avoid do_configure failure in existing workdir
      bd46e2a dev-manual: Updated Git repo path for eclipse plugins.
      b9bb278 ref-manual: New variable descriptions to support QEMU image tests
      06cddeb ref-manual: Added a new entry for the testimage.bbclass.
      35ec4d2 dev-manual: New section on running QEMU tests.
      395486f dev-manual: First pass changes to support Kepler Eclipse
      66e5feb poky.ent: Added a new variable for Kepler
      f3455db dev-manual: Misc formatting and setup for Kepler support
      9fbaa9b dev-manual, profile-manual: changed "plugin" to "plug-in"
      d3bf6bd ref-manual: Added versioning to some R* variables
      6084246 ref-manual, yocto-project-qs: Explanations for Git tarballs
      3fa6a30 ref-manual: New BB_GENERATE_MIRROR_TARBALLS variable.
      d7f340a ref-manual: fixed alphabetical order for glossary entries.
      2effece ref-manual, mega-manual: Updates to the SDK Generation section
      26354c2 ref-manual, mega-manual: Updates to "Image Generation"
      33ed042 ref-manual: Updated the RDEPENDS variable to include syntax
      9cef06f ref-manual: Update to the image generation section.
      5cdf8a6 ref-manual: Updated *_POSTPROCESS_COMMAND variables
      35bd82a ref-manual: New section on SDK generation
      43c10b9 ref-manual, mega-manual, Makefile: New figure added for sdk
      f5686c9 adt-manual: Updated location for toolball install scripts.
      110e803 yocto-project-qs: Update to how toolchain installer scripts are named.
      34c46b3 ref-manual, mega-manual: Updated the image generation figure
      80c66fd ref-manual, mega-manual: Updates to the Image Generation section
      070ab36 ref-manual: Updated IMAGE_CLASSES variable description.
      fde7349 ref-manual: Updated the IMAGE_ROOTFS variable description.
      44cc19d ref-manual: Updated the IMAGE_POSTPROCESS_COMMAND variable description.
      597aceb ref-manual: Updated the ROOTFS_POSTPROCESS_COMMAND variable description.
      7b0c340 Makefile: Updated ssh push string.
      25bea91 ref-manual: Edits to the "Image Generation" section
      72c73e6 ref-manual, mega-manual: Revised the image generation figure
      b577e74 ref-manual: First draft of the "Image Generation" section
      da7a072 dev-manual, ref-manual, Makefile: Added image generation figure
      673b28f ref-manual, mega-manual: Updated figure for source fetching
      caa29e6 ref-manual: Fixed "fsroot" typo to "rootfs".
      b1d7cfa ref-manual: Added variable description for IMAGE_POSTPROCESS_COMMAND.
      718fac6 ref-manual: Added variable description for ROOTFS_POSTPROCESS_COMMAND.
      dc09cfe ref-manual: Added variable description for IMAGE_ROOTFS.
      aef1326 ref-manual: Fixed IMAGE_FSTYPES to specify formats instead of format.
      599209e ref-manual: Added three new variable descriptions to the glossary
      053ee26 ref-manual: Updated the PATCHTOOL variable description.
      6294f17 dev-manual: Updated the "Best Practices" section.
      6bf4106 kernel-dev: Updated the in-tree metadata section
      e3ed36e documentation: Updated poky.ent to have the YP 1.5 code name
      dcefb7c dev-manual: Added new section on "Best Practices"
      b1b9f43 dev-manual: Updated "Toaster" section to be API-only.
      4e7dde7 conf/local.conf.sample: update for new testimage class
      bead255 bblayers.conf.sample: use ##OEROOT## instead of ##COREBASE##
      19ad80c distro: remove anjuta-remote-run from distro_alias and maintainers
      d4b9713 bitbake: tests/data: Whitespace in key names is a really bad idea
      d9955a1 bitbake: data_smart: Variable references don't contain newlines, spaces or tabs
      3c41bea bitbake: hob: populate "Save image" dialog when saving changes to a custom image recipe
      d28b181 bitbake: bin/bitbake: Improve --help text
      35a1d37 bitbake: build: Add BB_TASK_NICE_LEVEL to task code
      ace48c2 bitbake: bitbake: runqueue: add task hash to Queue events
      24ae636 bitbake: bitbake: event: adding generic event for metadata usage
      a05d474 bitbake: bitbake: cooker, command: add a command to return global data
      0c51d61 bitbake: bitbake: cooker: get extra information from recipe cache
      5ee82d4 bitbake: bitbake: build, runqueue: adds info to the *runQueue* events
      f7621f4 bitbake: bitbake: cooker,runqueue: send the task dependency tree
      ba83eb3 bitbake: bitbake: cooker,xmlrpc,servers: implement CookerFeatures
      87e86d4 gcc-target: Fix libatomic dependency tracking issues
      c2d5fa9 gzipnative: Ensure dependencies apply to do_unpack and do_populate_lic
      f427614 btrfs-tools: Fix parallel make issue
      5262ea1 uboot-config.bbclass: Handle UBOOT_MACHINE setting
      14c6a82 u-boot, u-boot-fw-utils, u-boot-fw-utils-cross: Use uboot-config class
      19174b0 uboot-config.bbclass: Use an annonymous python function
      8f650f2 oprofileui-server: use two digit initscript sequene
      fc91e06 libpam: only use pam_systemd.so if systemd is enabled
      4209586 x11vnc: respect zeroconf DISTRO_FEATURE to enable Avahi support
      139b44b pseudo: force NO32LIB to true for nativesdk
      405be52 runqemu: set qemuarm memory size back to 128MB
      d652987 classes/imagetest-qemu: remove old image testing class
      595321a classes/sanity: test for DISPLAY being set with testimage class
      a3558bf classes/testimage-auto: add class to allow automatically running image tests
      eba2428 classes/testimage: remove odd characters in comments
      ed81641 findutils_4.2.31: backport fixes for doc build errors
      10c85f5 libunistring: remove the test to convert euc-jp in configure
      8ce33c4 pciutils: remove pcimodules
      ad77d10 lib/oeqa/runtime: cleanup and improve output readability for some tests
      f3ab2fc lib/oeqa/utils: sshcontrol: log how long the last command take
      cb2496c qt-mobility: fix build without X11
      77ae0d9 wipe-sysroot: delete pkgdata stamps
      06965e8 insane: don't abort if workdir is not TMPDIR/work
      fa0fd37 bitbake.conf: define WORKDIR in terms of BASE_WORKDIR
      7a3d2fb gcc-4.8: temporary disable thumb
      b3c750e core-image-x11: Ensure x11 distro feature is enabled
      853bc53 qemu: Fix broken patch
      4ed858b linux-yocto/3.10: fix long perf compile times
      2ad268f linux-yocto/3.10: mips configuration changes
      6942108 linux-yocto/3.8: add haswell-wc board config and branch
      99b4173 perf: Add LDFLAGS to allow build of old kernels without patching
      4a224d3 qemurunner: disable grabs in automated testing
      dd2b2f9 qemu: add option to disable X grabs
      63cd03b u-boot-fw-utils: Skip package if UBOOT_MACHINE is unset
      f1ff3c2 bitbake: data_smart: Fix variable reference issues
      eaf06bc bitbake: cooker: return a copy checkPackages
      825cfeb bitbake: usermanual.xml: Two new sections added to BitBake "Description"
      e624d73 perf: Ensure we use CFLAGS and LDFLAGS settings from kernel build system
      1db33e3 cmake-native: fix dependencies
      442be3e mesa: add virtual/mesa provider
      ac191eb libtool: fix resolve of lt_sysroot
      da47077 avahi: fix and enable out-of-tree builds
      37cb3e3 python-smartpm: truncate the filename to meet NAME_MAX
      9a4169a u-boot-fw-utils: reinstate target recipe for fw_printenv
      14fee32 oeqa/runtime/smart: Increase timeout to 1500 test
      eae5f4b weston: change mesa dependency to virtual/mesa
      ab9e266 xserver-xorg: change mesa dependency to virtual/mesa
      015cb13 mesa-gl: add GL-only Mesa recipe
      7303b67 linux-libc-headers: do_install: fix "Argument list too long" error
      8dd7ab3 util-linux: move su to /bin for lsb command check test
      a71761e shadow: move su to /bin for lsb command check test
      44c65db busybox: move su to /bin for lsb command check test
      bb93962 bitbake: Revert "bb.fatal: Raise a BBHandledException instead of exiting"
      3091150 openssh: use volatiles for managing /var/run/sshd
      242ad61 Revert "initrdscripts: look for new systemd-udevd location"
      5eae2d5 imake: remove
      9470f68 transfig-native: remove, nothing depends on it
      bf413ad rpm: fix typo in PACKAGECONFIG
      e3cacf1 python: fix failures of LSB python-runtime tests
      7d60944 kbd: Allow resizecons on x86_64
      0af5853 kbd: Fix coding sytle
      63ae37f LSB 4.1 Library Check: fix unable to find library libqt-mt.so.3
      85a5a2c cdrtools-native: Update from 3.00 to 3.01a17
      c78c1f9 bootimage.bbclass: Move fat image creation into a function
      238e9b5 coreutils: set acpaths to avoid "Argument list too long" error
      2ac9925 vala: add bison-native depends for vala-native
      b925c75 udev: avoid autosuspend of USB input devices
      9592f31 linux-libc-headers: Fix comment typo spotted by Mark Hatle
      1b7f829 webkit-gtk: remove compile-three-times hack
      42ef04b connman: Try to figure out NFS root interface if using DHCP
      06078af libxml2: remove patch for CVE-2012-2871
      1bf8d83 utils: Update bb.which reference and other syntax cleanup
      641a80d autotools: Remove .la files if rebuilding non out of tree software
      912e8d5 meta-yocto/layer.conf: Bump LAYERVERSION_yocto
      d96c512 bitbake: bb.fatal: Raise a BBHandledException instead of exiting
      d15652d bitbake: data: Optimise flag exclusion list handling
      9a32eca bitbake: data: Optimise flag lookup in build_dependencies
      d7e7b99 bitbake: data: Optimise build_dependencies a little
      d6ac67f bitbake: data_smart: Cache the fact a variable accesses another even if its unset
      385bd44 bitbake: data_smart: Allow flags to use the expand cache
      a61519f bitbake: data_smart: Allow expansion of flags in getVarFlags
      0902850 bitbake: data_smart: Add explict None checks
      66c9c01 bitbake: data: Cache an list of export variables
      36b4fcd bitbake: data: Use direct iteration, not keys()
      f78db82 bitbake: data_smart: use the expand_cache in VariableParse
      43f1867 bitbake: data_smart: Improve variable expansion regexp
      c971868 bitbake: siggen: Use lookup cache exclusively
      43c670a bitbake: data: Be explicit in data_db check
      602bb69 bitbake: cooker: Allow profiling of the parser in profile mode
      eb4854f bitbake: cooker: Avoid duplication for taskdata creation
      a828c89 bitbake: runqueue: add runQueueTaskSkipped event
      1181e69 bitbake: build: Add logfile to add TaskBase events
      5fca4d2 linux-yocto/3.10: genericx86 meta data factoring
      366bd11 lttng: Enable ptest support.
      f8ccaba systemd: add ptest
      97f1c03 sysvinit: remove unused files
      e909857 sysvinit: fix indentation
      707da95 boot-directdisk: Allow for EFI-only boot direct disk images
      a6974f2 elfutils-native: Fix build on distros with gcc 4.8
      1875fb7 eglibc_2.18.bb: Fix IFUNC support for ARM REL relocations
      99875e2 xf86-video-vmware: disable VMWGFX
      019dafd systemd: link runlevel from systemctl
      576a19e scripts/contrib/build-perf-test.sh: record size in kb and remove extra spaces
      5fb63f6 apmd: Add systemd support
      27bb9d0 oprofileui-server: Add systemd support
      34e875e LSB Command Check: fix install_initd and remove_initd not found
      58324d8 anjuta-remote-run: remove
      3e31a50 adt-installer: fix opkg repo name
      babbf7a linux-libc-headers: Add big warning about antisocial behaviour
      214bb68 lib/oeqa/runtime: timeout increases
      8ebe7be bitbake.conf/package: Collapse PKGDATA_DIR into a single machine specific directory
      af5b3f3 layer.conf: Version bump for DEPLOY_DIR layout change
      6670be7 bitbake.conf: include machine name in DEPLOY_DIR_IMAGE
      ee7ccda icu-native: do_install: Segmentation fault
      0c11a77 perf: source should be ready after do_unpack
      4137f9a bb-matrix-plot: Use interpolation for sparse data
      493e8b4 bitbake.conf: Stop providing ${P} and ${PF} by default
      643252f bb-matrix: Clean before, rather than after, building
      0acde33 sstate.bbclass: fix parallel building issue
      ca1b5dd bitbake: cooker: updateCache should rause exceptions, not sys.exit
      926b60f bitbake: knotty: Cleanup error/interruption handling
      ef7e388 bitbake: command: Treat empty messages as failures, not CommandCompleted
      0519d1a bitbake: cooker/command: Add finishcommand to reset cooker state
      7663a52 bitbake: cooker: Rename confusing 'stop' state to 'forceshutdown'
      2174a51 bitbake: cooker: Clean up init/reset configuration code
      fe1258d bitbake: cooker: Drop obsolete worker test
      a392877 bitbake: bitbake: xmlrpc: delete unused code BitBakeUIEventServer
      dd36930 bitbake: data_smart: Account for changes in append/prepend/remove in the config hash
      89ca973 ref-manual: Added information for OEROOT and build environment
      3c4f2a6 ref-manual, mega-manual: Updated source input figure
      c375134 dev-manual: Updated wording to be more professional for broken build.
      775fbab dev-manual: Update to bblayers.conf example
      91b9202 dev-manual, ref-manual: replaced "atom-pc" with "genericx86"
      743106f ref-manual: Re-ordered some P* variables in the glossary.
      de62377 dev-manual: Added new section on how to exclude a package
      0ca3c5f ref-manual: Updated the screen help for bitbake command.
      a266619 documentation: Added the memory-resident BitBake feature
      cc26267 ref-manual: Re-ordered some B* variables to be in alphabetical order.
      2fe0213 ref-manual, mega-manual: Updates to config and package splitting figs
      973fd9b ref-manual, mega-manual: Updated two figures
      fdc1ad2 ref-manual, mega-manual: Edits to figures
      cc265bf ref-manual: Created new "Closer Look" chapter
      7b70da9 ref-manual: Re-ordered flow for detailed process sections.
      b359e9a ref-manual, mega-manual: Updates to process figures
      78e209d ref-manual, mega-manual: Updated package-feeds diagram
      6a18edd ref-manual, mega-manual: Updated the analysis figure.
      661c27d ref-manual, mega-manual: Updated the configuration figure
      8cb2038 ref-manual, mega-manual: Updated the patching figure
      ddb29c5 ref-manual, mega-manual: Updated the source fetching figure
      27b4998 ref-manual, mega-manual: Updated ADK figure
      4cf514f yocto-project-qs: Added Creative Commons distribution blurb.
      6a0c6ea ref-manual: edits to BAD_ and NO_RECOMMENDATIONS
      69daf50 ref-manual: Variable adds and edits for package exclusion changes
      d3a849f ref-manual: Updated DEPENDS and RDEPENDS variable descriptions.
      4265649 ref-manual: Added section on linux kernel image names using PE
      db678a1 ref-manual: Updated the PE variable description.
      bd76847 libnewt-python: Don't write a whiptail package
      01db559 populate_sdk_rpm: Only remove trailing whitespace, not all whitespace
      566ca1e beagleboard: update the dts location
      cdc3549 weston: as weston-launch depends on PAM, control it with a PACKAGECONFIG
      1b25cf7 clutter: fix compilation when building without X11 backend
      4540f6f x11vnc: add dependencies for xrandr/xfixes/xdamage/xtst
      4496e34 populate_sdk_rpm: Ensure empty strings aren't passed to attemponly rpm code
      46597b5 xf86-video-vmware: respect opengl DISTRO_FEATURE
      8f9db77 bluez4/5: Add EXCLUDE_FROM_WORLD = 1
      33e8896 xf86-video-intel: disable DRI2 tests if no DRI2 is available
      3f0525d xf86-video-vesa: change depends to refect reality
      d439758 ia32-base: only depend on GL if opengl DISTRO_FEATURE enabled
      01135ee lib/oeqa/runtime: smart: limit channel add to useful ones
      83b90e5 classes/package_rpm: remove unsed outdir variable
      40232ed yocto-bsp: conditionalise mesa-swrast on opengl in templates
      775bc29 ptest-runner: trivial fixes and refine
      4c92281 libcroco: disable Bsymbolic if it is not supported on some hosts
      4b2d9ac python-smartpm: Add an attempt install mode
      19c3c6d bitbake: utils: Fix BB_PRESERVE_ENV
      3e7d669 uclibc: Add missing DEPENDS on kern-tools-native
      bd3164b image/populate_sdk: Ensure symlinks in target sysroot are relative
      e7f3fee qemu: only depend on mesa-driver-swrast if opengl is enabled
      4c3f8d2 init-live.sh: distinguish between a read-only image and a read-write image
      b990585 midori: excluded from mips64 temporarily
      6b4f7e4 systemd.bbclass: get the correct /lib directory
      8dedc08 systemd: Remove base_libdir if installed only for systemd_unitdir
      703104c nfs-utils: Add systemd support
      06ecd68 rpcbind: Add systemd support
      1661f5c lighttpd: Add systemd support
      c6d25fb openssh: Add systemd support
      42742e3 avahi: use correct names in SYSTEMD_SERVICE_* variables
      a572d8a dbus-ptest: fix populate_sdk error
      879ad05 initscripts: filter out empty lines from volatiles in check_requirements()
      f7d1286 btrfs-tools: fix a parallel build issue
      a5973ac meta-yocto-bsp: bump reference BSPs to v3.10.11
      96eff4c mount.sh: automount cdrom device even if no ID_FS_TYPE available
      82914e5 gstreamer-plugins: Change anonymous python structure
      5f2748e cmake.bbclass: ensure CMAKE_SYSTEM_NAME is correct
      5992830 adt-installer: allow installation of other machines
      32090b6 meta-toolchain-qt: include the proper cross-canadian package
      9d3d1a2 populate_sdk_base.bbclass: select the proper cross-canadian package
      5d125f5 packagegroup-cross-canadian: change package name to include MACHINE
      bd0fc8e meta-environment: change package name to include MACHINE
      74f148c linux-yocto/3.10: bump kver to 3.10.11
      4acfbb1 u-boot, u-boot-fw-utils-cross, u-boot-mkimage: Upgrade to 2013.07
      aae576c systemd: Fix build with multilib
      2044668 bitbake: bitbake: runqueue: add sceneQueueTaskCompleted event
      a284f6c systemd: update patch header and comments
      1492f43 xf86-video-intel: allow builds without opengl, add more options
      0f34041 mesa: use distro_features_check to abort build without opengl feature
      00b17ad kmod: avoid parallel-tests
      fec8c28 lttng-modules: Update to version 2.3.0
      e4d6925 lttng-tools: Update to version 2.3.0
      341c085 lttng-ust: Update to version 2.3.0
      8d82eae ptest.bbclass: add cleandirs flag to do_install_ptest_base
      8905f77 ptest.bbclass: fix error on ubuntu host
      0ca5d1f yocto-bsp: remove apm as a default MACHINE_FEATURE
      b04b6f9 beagelboard.inc: remove apm as a MACHINE_FEATURE
      87771db bitbake: runqueue.py: check whether multiple versions of the same PN are due to be built
      0583714 bitbake: providers.py: enhance the runtime debug degbug messgae
      5c5a3bf qemu.inc: remove apm as a MACHINE_FEATURE
      2ab1bf2 bitbake: prserv: Ensure data is committed
      31709ed cmake: set system name correctly
      6bf6708 package.bbclass: skip already-stripped QA test if asked for
      5ddec10 ghostscript: Add missing dependency to resolve parallel make issue
      6d7062a meta-yocto-bsp: update h/w reference boards SRCREVs
      6727d1d beagleboard: upgrade the kernel to 3.10.x
      8102de6 mpc8315e-rdb: update to the 3.10 kernel
      310f89a genericx86: Create a genericx86-common.inc base for the x86 BSPs
      82ddcb1 uboot-config.bbclass: Allow choose of U-Boot config for machine
      e296958 linux-firmware: Update SRCREV, pull in iwlwifi-7260 support
      7bcec4a kern-tools: support no author patches
      baba8cf kernel-yocto: improve error checking on non-git repos
      fbd6297 linux-yocto/3.10: update meta SRCREV for beagleboard config changes
      ea84943 bluez5: Rename tests package to testtools
      9d33660 bluez5: Install the bluetooth library
      76e8678 systemd: split out systemd-binfmt as a separate package
      9b84fc7 lib/oeqa/qemurunner: Use a timeout in select() call
      457e584 core-image-weston: Ensure wayland distro feature is enabled
      3dcff8c core-image-directfb: Use 'distro_features_check' class
      9f19820 resolvconf: specify configuration for systemd-tmpfiles --update
      41d1c2d lib/oeqa/runtime: add basic scanelf test
      1f6bd73 linux-firmware: package Marvell SD8787 firmware
      9ebf8fb linux-firmware: correct name of Marvell license file
      5963d24 devshell: Don't corrupt the fakeroot variables
      75a1492 run-postinsts: move script execution from S98 to S99 in rcS.d
      c734873 connman: Ignore the NFS root network interface in init script
      12223c0 package_rpm.bbclass: Fix no_recommendations and package_exclude
      f24dda3 useradd: Handle users from a package being used in others
      0fa12e4 kernel.bbclass, image.bbclass: Implement kernel INITRAMFS dependency and bundling
      95d413d gcc-runtime: Add packaging for libgfortran (and also tweak others)
      835b5c1 local.conf.sample.extended: Add an example of how to enable fortran
      faed110 oeqa/runtime/scp: replace dd call
      fbb3e5e oeqa/utils/sshcontrol: tweak ssh options
      f6fed84 oeqa/oetest: oeRuntimeTest: enable long messages
      c33bf22 chkconfig: remove linuxstdbase symlinks
      06dc3a9 boost: adding serialization to BOOST_LIBS
      78296aa eglinfo: add recipes for x11 and fb backends
      e4556e5 waf.bbclass: add waf build system class
      43510e5 sysklogd: lower the ALTERNATIVE_PRIORITY in case of systemd
      101662d busybox-syslog: add configuration file /etc/syslog.conf
      18dfcc5 acpid: print message if rule directory is inexist
      f438140 acpid: install events directory at default.
      71d7751 irda-utils: add init.d/irattach status command for LSB compliance
      e0d6665 distcc: add init.d/distcc status command for LSB compliance
      eb34e8d pseudo: fix memory leak and missed privilege drop
      3dccd57 bitbake: contrib/vim: merge changes from vim-bitbake repo
      b093b6c bitbake: knotty: Reduce refresh of footer
      373e209 bitbake: bitbake: Ensure ${DATE} and ${TIME} are consistent
      c8957a4 bitbake: hob: remove custom image from the images list when not needed
      b501b83 bitbake: hob: limit the description size when a custom image is saved
      da29dcc bitbake: newbb.vim: Use 'git config' instead of git-config
      e92b2db bitbake: data_smart: Move getVar expand cache handing to fix _remove operations
      ed3ef08 qemumips: fix keyboard entry in graphical boots
      cec4879 linux-yocto/3.10: update to v3.10.10
      19904ae linux-yocto/3.10: fix YAFFS2 build issues
      f41b7a7 bitbake: hob: remove PACKAGE_INSTALL variable setting from hob
      e63c577 bitbake: bitbake-worker: ensure BUILDNAME is available during execution
      12d003a scripts/runqemu: Fix MACHINE regex
      7d8038d glib-2.0: fix a host contamination issue
      93e7970 bitbake.conf: Add SDKPKGSUFFIX to hash whitelist
      6d41d0d package.bbclass: Fix darwin shlib handling
      990deb3 flex: Only use create_wrapper for native and nativesdk
      f1c74a3 mpc8315e-rdb: Set PREFFERED_VERSION to 2013.07
      3aa68fd beagleboard: upgrade u-boot to the latest version
      e3bc93c lib/oeqa/runtime: smart: serve repo on host ip only and increase timeout
      8318816 poky.conf: add version-going-backwards to ERROR_QA
      755f7d9 pulseaudio: disable GTK+ by default
      18fbaab elfutils: Drop do_autoreconf patches
      6ccd4d6 runqemu: set memory size to 256M for most qemu machines
      212f512 wipe-sysroot: fix removals
      1b81449 bitbake: bitbake/cooker: fix some calls of cookerdata.findConfigFile method
      c7994f8 bitbake: runqueue: Fix scenequeue to pass file descriptors, not a float
      5894ac1 sanity: Don't make assumptions about cwd
      554c892 meta: Don't use deprecated bitbake API
      6d9e3a1 bitbake: server/xmlrpc: stop server on client exit
      c7b3429 bitbake: prserv/serv: Settle on two threads for optimal performance
      6e15fee bitbake: build: Fix profile file names
      bd023ef bitbake: serv/db: Don't use BEGIN/COMMIT
      883813d bitbake: serv/db: Take an excluside lock on the database
      3e5abff bitbake: serv/db: Fix looping upon database locked issues
      b306d7d bitbake: server/process, server/xmlrpc, runqueue: Use select.select() on fds, not time.sleep()
      d63e6a9 ref-manual: Edits to figures
      2ad4f5d ref-manual: Minor edit.
      987f91e ref-manual, mega-manual: Edits for expanded packaging description
      2abfe0c ref-manual: New variables descriptions for PKGDATA_DIR and PKGDESTWORK
      efff0d5 lib/oeqa/runtime: ping: fix ping false fail
      36fcb61 python: Backport 2 CVE from upstream
      116441d perl: Backport 2 CVE Patches
      25b8cc8 btrfs-tools: Add dependency on lzo acl e2fsprogs
      55d0fca systemd: use /bin/mkdir instead of host mkdir path
      03325fe gcc-4.8: fix ICE of cross-compile for PowerPC e500v2 targets
      ada4bcc libsamplerate0: add PACKAGECONFIG for fftw
      09d1761 mesa: add missing elfutils dependency for r600 PACKAGECONFIG
      2163807 bluez4: fix network Connect parameter validation
      4e7e542 multilib.bbclass: Expand the WHITELISTs with multilib prefix
      118d74e oe-setup-rpmrepo: add native sysroot so nativepython can be found by env
      4b2906d recipes: Ensure that we only apply poky changes when poky is selected
      5fd04b0 bitbake: prserv: Allow 'table is locked' matching for retry loop
      cb93941 bitbake: server/xmlrpc: Increase timeout to 60s
      4322948 bitbake: cookerdata: Allow bblayers.conf to be found using BBPATH
      c7a3897 bitbake: cookerdata: Set TOPDIR when using bblayers.conf
      156baf8 web-webkit: Drop, we have midori now
      b2a0e3a runqemu-ifdown: clean up the remaining iptables rules
      5bffc4f runqemu-internal: provide more info if a preconfigured tap is used
      a78bf1c runqemu-internal: don't bring down preconfigured tap interface
      8f32af9 lib/oeqa/runtime: syslog: fix test for logger in case of systemd
      926a117 list-packageconfig-flags.py: fix searching bitbake module failed
      1370927 gtk+3: pull forward the gtk+2 hardcoded libtool patch
      7034d50 gtk+3: only set GTKIMMODULES_PACKAGES if we have immodules
      249dc82 lib/oeqa/utils: qemurunner: fix when runqemu errors out
      8a90c8b lttng-ust: Update to version 2.2.1
      4c138aa lttng-tools: Update to version 2.2.3
      8e85362 util-linux: package mkfs.cramfs and fsck.cramfs
      7be46d9 image_types.bbclass: use mkfs.cramfs instead of makecramfs
      abfe9af busybox: configure system user id to range from 100 to 999
      e38285f packagegroup-self-hosted: Add missing python code
      9c0131d build-appliance-image: upgrade to commit 5745e45b18e5099e94b4d5a73bc97dc6d4cdc91f
      88c5e10 remove the unnecessary protocol parameters
      5c0e6cf builder: register html links and files with Midori
      4f6358f packagegroup-self-hosted: integrate midori
      c52981c lib/oeqa: move skeletoninit.py where it belongs
      c03106d libnfsidmap: Add and modify idmapd.conf
      3095ee5 busybox: set default log buffer size to 64 at compile time
      5745e45 buildtools-tarball: Add python-pkgutil
      d5e860b bitbake: prserv/serv: Multithread the server
      06d7664 bitbake: prserv/db: Threading fixes
      5fba9d8 classes/testimage: add support for finding tests in other layers
      62d1418 classes/testimage: increase default boot timeout
      4e62e9c lib/oeqa/runtime: remove some unnecessary checks from setUpModule
      a79afb3 linux-yocto/3.4: v3.4.59, mohonpeak
      8b36aa4 linux-yocto/3.10: fix ssh login and restore CC_OPTIMIZE_FOR_SIZE
      2051e4d midori: use BPN instead of PN
      84708a4 bitbake: serv.py: Fix regression from 972bc43e6d5b
      4fd453e midori: add version 0.5.5 from meta-gnome
      5aa0ece python-docutils: add version 0.11 from meta-oe
      fd9a548 libnotify: add version 0.6.0 from meta-gnome
      1655c2d vala.bbclass: add class from meta-oe
      e35dfbb vala: add version 0.16 from meta-oe
      f17404d dpkg: fix configuration issue for mips64
      937968b systemd: Upgrade to 206
      6950395 kmod: Upgrade to version 14
      87f413f bitbake: data_smart: allow removal of multiple words at once with _remove
      092190e bitbake: data_smart: use a split/filter/rejoin for _remove
      9b05271 local.conf.sample: Add genericx86-64 machine to machine list
      201e547 atom-pc: Purge straggling configuration files
      6c3a029 meta-yocto-bsp: Add genericx86-64 machine
      da6260f bitbake: serv.py: Fix hang when spawned dynamically with bitbake
      c2533fb linux-yocto-rt: add qemumips and qemuppc to COMPATIBLE_MACHINES
      325ee9b gcc-4.8.inc: Allow lto to be configurable
      d638db8 perf: Ensure we general PIC code to avoid build failures
      1472b9e bitbake: hob: fixes for image combo box
      39052cd bitbake: hob: add event handlers filtering in Hob
      8d134e9 bitbake: bitbake/event.py: UIhandler filter should work without a mask
      a552fdc lttng-modules: Update to 2.2.1 based release
      2942003 README.hardware: Replace atom-pc with genericx86
      6edcb6f local.conf.sample: Replace atom-pc with genericx86
      9b8c20e layer.conf: Bumping LAYERVERSION_yoctobsp to account for atom-pc
      be5b808 meta-yocto-bsp: Purge atom-pc in favor of genericx86
      ad88361 meta-yocto-bsp/genericx86: Update kernel, branch, KMACHINE, and SRCREV
      36fc237 meta-yocto: change default kernel to 3.10
      afda1bc linux-yocto: add bc-native dependency, and move to linux-yocto.inc
      4379623 kern-tools: fix patch series to git tree validation
      88e5aa6 bc: add bc-native
      44c3f72 lib/oeqa/runtime: smart: add checks for smart output
      a855180 lib/oeqa/runtime: multilib: fix typo
      355a781 u-boot: update to 2013.07
      b07d12d gettext: update to upstream version 0.18.3.1
      c34bb76 bitbake: command.py: Call updateCache for all states != running
      1dff47b read-only-rootfs-hook.sh: check before bind mounting /var/lib
      e6e44cf checkroot.sh: check for conflicting configurations
      6f25176 eglibc: fix directory cleanup for 2.17
      a090406 SPDX:real-time license scanning and SPDX output.
      daedc2f classess/testimage: change default test suites
      d80a715 python-2.7-manifest: Add missing python-ctypes dependency to python-multiprocessing
      6a78e22 image_types.bbclass: replace genext2fs with populate-extfs.sh
      2dfc0e1 lib/oeqa: change behaviour for unskippable tests
      d7077bc lib/oeqa/runtime: add iptables, cvs and sudoku projects build tests on target
      c70bf65 lib/oeqa/utils: targetbuild: Add helper class for building packages on target
      5158893 lib/oeqa: make it possible to restart the target
      ecb21fd lib/oeqa/runtime: smart: add new smart tests
      2c83398 lib/oeqa/utils: decorators: return the decorated method
      a9dab56 lib/oeqa/utils: qemurunner: save host IP address
      f16cc25 lib/oeqa/utils: new file: httpserver.py useful for serving files over HTTP to the target
      db7e484 lib/oeqa/runtime: rpm: add install and erase tests
      3d30fd2 lib/oeqa/runtime: add vncserver for target test
      5e1b0cb lib/oeqa/runtime: add adjust date and time test
      0ecc510 lib/oeqa/runtime: add new scp test
      4ea9e94 lib/oeqa/runtime: add new PAM support test
      748ddc3 lib/oeqa/runtime: add new skeletoninit test
      b91969e lib/oeqa/runtime: add new logrotate test
      3b47a0a lib/oeqa/runtime: add a test for ldd
      dfd627d lib/oeqa/runtime: add test for perl
      ec8aea9 lib/oeqa/runtime: add basic test for x32 images
      1915459 connman-gnome: fix DHCP segfault
      6056f12 opkg: add missing initialization of conf->exclude_list
      b18b210 busybox: enable shared memory logging for systemd
      1506d3a ccache: update to upstream version 3.1.9
      71abcc9 libpam: add PACKAGECONFIG data concerning audit
      0904469 cronie: add PACKAGECONFIG data
      39d80f6 e2fsprogs: add populate-extfs.sh
      1b21405 e2fsprogs: properly set up extent header in do_write
      2cece57 e2fsprogs: only update the icache for ext2_inode
      a758b93 e2fsprogs: let debugfs do sparse copy
      f1e6091 e2fsprogs: the max length of debugfs argument is too short
      66eac2d oe.types: add 'path' type
      78012a2 stat: fix the wrong return code
      04fd068 gtk-engines: fix build with automake-1.13
      2526a17 pulseaudio: Fix up configure options and use gtk+3
      764784c alsa-lib: fix function definitions error for mips
      26fe976 connman: upgrade to 1.17
      12d4ee1 harfbuzz: upgrade to v0.9.19
      b55f923 gpgme: update to 1.4.3
      26ce13b runqemu-ifup: when tunctl can't be found, say what package builds it
      c82255d openssl: avoid NULL pointer dereference in three places
      b9f0fc6 openssh: add init.d/sshd status command for LSB compliance
      6d15552 at: add init.d/atd status command for LSB compliance
      1b12507 sysvinit: add init.d/bootlogd status command for LSB compliance
      00f0261 dbus: add init.d/dbus-1 status command for LSB compliance
      f032008 nfs-utils: add init.d/nfsserver status command for LSB compliance
      4309a9e sysklogd: add init.d/syslog status command for LSB compliance
      2b7d2f8 glib-2.0: Specify libiconv when building on uclibc
      b3357d5 yocto-bsp: add 3.10 bbappend and update routerstationpro's preferred version
      d7571c0 bitbake: data_smart: Add _remove operator
      69aab78 bitbake: bitbake: Add ui event handlers filtering
      bfab986 bitbake: server/xmlrpc/prserv: Add sane timeout to default xmlrpc server
      a03a423 bitbake: process: Improve exit handling and hangs
      aa0b237 bitbake: parse: Return IOError when including file with absolute path
      503daf2 nativesdk-ca-certificates: prepopulate ca-certificates.crt
      2413ff0 ca-certificates: add recipe (version 20130610)
      f541b73 xserver-nodm-init: improvements from meta-oe
      93ec1e3 classes: Remove references to _remove in function names since this may become a bitbake keyword
      3883187 linux-yocto: introduce v3.10
      2c572bd gst-plugins-good: fix 3.10 libc-headers build failure
      e67ce0d linux-libc-headers: Reinstate scripts-Makefile.headersinst-install-headers-from-sc.patch
      1262275 linux-libc-headers: ptrace.h: remove ptrace_peeksiginfo_args
      1f18e09 linux-libc-headers: update to v3.10
      bfba970 guilt: update to latest git version
      3b2b4ee kern-tools: usability, bug fixes and no guilt
      5f2170b Add memory resident bitbake script
      a50b933 ref-manual, mega-manual: Updated figure for conf/compile details
      e901047 yocto-project-qs, adt-manual: Updates to toolchain installer script
      648da6d poky.ent: Reset the toolchain variable.
      7a655d5 poky.ent: Changed the toolchain variable
      3420b3a Makefile: Added new figure for package creation.
      6457ad3 ref-manual, mega-manual: New section on package creation
      fff996f Makefile: Added figure to the ref-manual and mega-manual
      bf91da6 ref-manual, mega-manual: new section on config/compile for expanded build
      8870546 ref-manual, mega-manual: Updated figures
      bc17391 Makefile: Updated with new figure.
      06c124b ref-manual: New section on patching for expanded build process
      a0eec0d ref-manual, Makefile: New section on BitBake for expanded build
      39ee90b ref-manual: Fixed syntax in the S variable.
      59e3953 adt-manual: Removed the gmae stuff
      d265515 ref-manual, adt-manual: Minor edits from review.
      e7ed0d5 ref-manual: updated the note about what distros we support
      29d8f58 ref-manual: minor edit to the PKGDEST variable.
      6ccc545 mpc8315e-rdb: Set PREFFERED_VERSION to a version thats known working
      b467b99 linux-yocto: switch genericx86 to use common-pc
      a88d63b linux-yocto: remove genericx86 support from 3.4
      501e1a3 bitbake: prserv/serv: Fix pid file removal
      25e410b bitbake: event/msg: Add primitive server side UI log record filtering
      9f0f799 bitbake: build.py: create symlink for run.do_xxx scripts
      4273aa4 sstate: Fix the relative symlink replacement code
      445e1e5 xdg-utils: add runtime dependency on xprop
      988a7bf packagegroup-self-hosted: pcmanfm and xdg-utils integration
      09562cb recipes-graphics/builder: fix wrong user name
      560575b packagegroup-self-hosted: Add the sato icon theme
      7daf46f eglibc-options.inc: Fix string options
      3a86c39 eglibc.inc: Remove quotation marks from OPTION_EGLIBC_NSSWITCH_FIXED_*
      747f5be default-providers: Set the preferred provider for bluez
      ae8e3b6 gcc-4.8: Add two patches to deal with cross-canadian build failures
      9f67e31 chrpath: Add support for relocating darwin binaries
      45de2c2 Drop darwin8/darwin9 usage
      2da6d0b bitbake.conf: Work around dev symlink problems on darwin
      861b0d5 gcc-common.inc: Drop unused LIBGCCS_VAR variable
      5af02f2 gcc-cross.inc: Clean up after merge
      8b855ad gcc-cross-canadian: Fold configure-sdk and package-sdk into the main .inc
      aa77ec7 gcc-*-runtime.inc: Fold configuration into gcc-runtime.inc
      2eb9c1c gcc-*-cross.inc: Fold common configuration into gcc-cross.inc
      0dfc8aa gcc-target: Combine gcc-target-configure.inc, gcc-target-package.inc and other common code
      deae329 libgcc: Move common code to libgcc.inc
      6971023 gcc-runtime: Fold common configuration into gcc-configure-runtime.inc
      c553019 gcc-cross-initial: Fold common configuration into gcc-cross-initial.inc
      d39770e gcc-cross: Fold common configuration into gcc-cross.inc
      5017061 bitbake.conf/classes/gcc: Don't hardcode -nativesdk
      b64d6af Revert "nativesdk: inherit relocatable"
      a966f30 gcc-cross-canadian: Merge 4.7 and 4.8 recipes into common include
      1995053 gcc-cross-canadian-4.8: Add missing dependency on nativesdk-zlib
      505634b gcc-cross-canadian-4.8: Allow elfutils to be a configurable dependency
      bcdc1cd gcc: Drop gcc-cross4.inc, its pointless now
      c63831c gcc-configure-sdk.inc: Don't build target-libgcc
      eb99a30 gcc-package-sdk.inc: Allow executable extension to be overridden
      f2985f0 gcc-package-sdk.inc: Use relative symlinks in libexec dir
      ea220e4 gcc-cross-canadian-4.8: Enable PARALLEL_MAKE
      9967b4e libiconv: Extend to nativesdk and support non-linux targets
      24b1fe9 gettext: Improve USE_NLS handling for nativesdk/crosssdk/cross-canadian
      7f5d712 populate_sdk_base: Allow sdk tar options to be overridden
      16e59f3 crosssdk: Construct target_exec_prefix from prefix_nativesdk
      694f034 package.bbclass: Fix handling of symlinks in debug packages
      199b1a8 mkfontscale: This no longer needs a full libx11, xproto suffices
      6bdf025 gnupg: Update to 2.0.21
      30f85aa valgrind: Backport patch for eglibc 2.18
      d429204 libsdl: Backport xData32 patch for x11 update
      0bc5f7c libx11-diet: upgrade to 1.6.1
      f0a690d libx11: upgrade to 1.6.1
      81f9989 eglibc: Update SRC_URI and fix unpackaged empty dir
      e498471 boost: fix build when PARALLEL_MAKE is not set
      068069b libsdl2: add recipe
      fef7b40 bc: add patch to fix segmentation fault
      2d4b261 connman: fix systemd support for connman-* packages.
      557d1c7 directfb: add fusion patch for hangs
      f1bcf10 directfb: Upgrade to 1.6.3
      0c3a3a5 mesa: enable additional drivers for gallium-llvm x86/x86-64
      851163a builder: register directories with pcmanfm
      07130f7 xf86-video-vesa: remove duplicate xf86driproto from DEPENDS
      2bbb01d xf86-video-intel: remove duplicate xf86driproto from DEPENDS
      88c568c gst-plugins-good: fix orc enabling via PACKAGECONFIG
      58eb62b texinfo: correct dont-depend-on-help2man.patch
      78de822 shadow: backport a patch to make newgrp work
      26e543c distro_features_check.bbclass: Allow checking of required/conflicting features
      db60ee7 package_ipk: Add support for PACKAGE_EXCLUDE
      feae7a0 opkg: Add support for excluding packages from the install
      e58d0fd package_ipk: Add support for NO_RECOMMENDATIONS
      c52820b opkg: Add --no-install-recommends option.
      3882788 package_deb: Add support for NO_RECOMMENDATIONS and PACKAGE_EXCLUDE
      dc5f6c3 package_deb.bbclass: Use the WORKDIR not SYSROOT for temp files
      7ba54b9 package_rpm.bbclass: NO_RECOMMENDATIONS support
      33a3eac python-smartpm: Add support to disable installing recommends
      479fc7c package_rpm.bbclass: Add support for PACKAGE_EXCLUDE to RPM installs
      02c9677 python-smartpm: Add support for excluding package from the install
      a6a3ec1 image.bbclass: Add basic support for PACKAGE_EXCLUDE
      02521a4 busybox.inc: Avoid error when SYSLOG is not enabled
      06f1ebf poky.conf: add Debian 7.1 to SANITY_TESTED_DISTROS
      cb6f97b genericx86: disable USB autosuspend
      9a3cdfe genericx86: add v86d to machine recommends so Vesa framebuffer works
      b2d8f69 SDK_NAME: Change to include image name and tune arch
      183e781 upstream_tracking: Update last check dates
      c467d84 maintainers: give guilt-native to Bruce
      d6dc332 upstream_tracking: add NO_UPDATE_REASON for gawk and pango
      136cb5e bitbake: hob: changes to image combo box from image configuration page
      8d1e77e bitbake: propertydialog.py : Scrollable windows for long tooltips
      b2ff1ad poky.conf: Don't force the addition of extra DISTRO_FEATURES
      f6ab927 bitbake: build.py: Provide useful diagnostics when exiting.
      fe227a0 genext2fs: fix memory corruption on powerpc
      3c1f166 linux-dtb.inc: Fix dtb generation for kernels newer than 3.8
      8d6559c coreutils: allow for acl support
      6ef217d coreutils: add PACKAGECONFIG info for acl support
      005673f initscripts: remove obsolete device_table.txt
      059db22 init-install.sh: fix to handle the boot partition correctly
      d9e7fba init-install.sh: improve hard drive searching process
      a42db11 tslib: update to 1.1
      a8d686b default-distrovars.inc: Add 'DISTRO_FEATURES_DEFAULT' variable
      1cf5a36 useradd.bbclass: add missing functions to preinst
      41696b2 gettext: update to upstream version 0.18.3
      f07123e gtk+: update to upstream version 2.24.20
      e13de3e glib-2.0: update to upstream version 2.36.4
      4bf64ec curl: update to upstream version 7.32.0
      1b37bb4 pixman: update to upstream version 0.30.2
      2cdfd09 glib-2.0: use trim_version() to get the source directory
      8b07505 hello-mod: Add comment for kernel module package naming
      0e78c29 Revert "hello-mod: Ensure the produced package name begins with kernel-module-"
      dd1f60c texinfo: handle correctly @enumerate specification greater than 10
      5cecdfe uclibc: Upgrade to latest on git
      29361cd prelink: update to latest cross-prelink
      c25fa77 qemuppc: Change default tune to 74xx
      7d471bc tune-ppc7400.inc: Add tune file
      11293d9 linux-yocto-3.8/meta: enable ALTIVEC for qemuppc
      339ecae linux-yocto-3.8/meta: update drm and intel power management settings
      6382979 cronie: fix out of tree build
      2a48e90 qemu: Fix bit extraction for MTFSFI and MTFSF
      752df39 buildhistory-collect-srcrevs: match new buildhistory-diff command line parsing
      2a9d9b6 buildhistory-diff: improve command-line handling
      c5d2e9c classes/buildhistory: avoid mangling names in dot graphs for images
      1e8e243 classes/buildhistory: tag last 3 build revisions
      742266d classes/buildhistory: show command line in commit message
      855b325 classes/buildhistory: record size of installed package not compressed archive
      23575b4 classes/buildhistory: remove default of BUILDHISTORY_CHECKVERBACKWARDS
      de96147 cronie: upgrade to 1.4.11
      660601b sudo: upgrade to 1.8.7
      48bdcd7 maintainers.inc: add entries for libav, x264 and yasm
      ff39c79 package_regex.inc: Add regex for atk
      1b3f8ac bitbake: hob/retrieveimagedialog: change labels
      840a427 bitbake: taskdata: report close matches with NoProvider errors
      baaa7ad bitbake: runqueue: report close matches for an invalid task name
      6b01c97 texinfo: add perl RDEPENDS and fix up packaging
      2b20450 openssh: fix for read-only rootfs
      0b66192 irda-utils: fix for read-only rootfs
      4485cd9 populate-volatile.sh: use 'cp -a' to avoid potential problem
      a7e8f83 runqemu-internal: fix to start X correctly in live images
      0123eb9 populate-volatile.sh: don't spawn background process at rootfs time
      43c5b5f populate-volatile.sh: use $ROOT_DIR/var/volatile/tmp as TMPDIR
      11660bc udev: remove implicit dependency on initscripts
      7ab93ec init-live.sh: make $ROOT_MOUNT/media writable when necessary
      771f794 device_table-minimal.txt: use user/group names instead of uid/gid
      033baea image.bbclass: create device table after package installation
      36d622b makedevs: support using user/group names in device table files
      ca367d0 wipe-sysroots: don't assume TMPDIR is under BUILDDIR
      969f4ed qemu, default-providers: Add mesa as default virtual/egl
      8db18b6 cmake.bbclass: Don't use packages from the native build machine
      9f9cc59 matchbox-wm: fix icon handling on 64-bit hosts
      060df94 libmatchbox: upgrade to 1.11
      2176388 xrestop: add dependency on ncurses
      0509aad xeyes: add dependency on libxrender
      78dfc45 gst-plugins-gl: add dependency on glew
      5314bd3 at-spi2-core: add intltool-native dependency
      b2568fb nfs-utils: Replace spaces with tabs in shell function
      e9d02d5 rpcbind: Replace spaces with tabs in shell function
      04a9cff lighttpd: Replace spaces with tabs in shell function
      4fc3788 opkg.inc: remove the obsolete POSTLOG variable
      9146bb6 cogl: GL/GLX feature cleanup
      03b3e4b linux-dtb: Use kernel build system to generate the dtb files
      53729ac systemtap: upgrade to 2.3
      c8eb33b meta-skeleton: layer.conf Should also have .bbappend in example
      ff10f72 meta-skeleton: Add busybox config fragment example
      352701f qemu: Skip it for mips64 target
      18b9555 dpkg: fix include header caused compile error
      70a16ef oe-setup-builddir: substitute ##OEROOT## when using templates
      08aabd4 procps: Add cgroup support
      9bb0b1c blacklist.bbclass: Avoid blacklist specific handle in base.bbclass
      3aabe00 opkg: Fix possible installation of GPLv3 header
      7590f69 kernel.bbclass: Correct post(inst|rm) package association
      80f6f35 groff: Add GPLv2 version
      7677dac groff: Fix License to be GPLv3
      0bc564a image.bbclass: Move runtime_mapping_rename to avoid conflict w/ multilib
      c8879e2 rpm: Enable compatibility with older RPM packages that have invalid platforms
      bef0aab rpm: Change references from RPM_VENDOR_POKY to RPM_VENDOR_OE
      5bac0df linux-dtb.inc: Replace /boot/ with /${KERNEL_IMAGEDEST}/
      693e6a3 grub_0.97: Fix to correctly ship files under /usr/lib
      dbee00c lib/oeqa/runtime: add new systemd tests
      1990a6c lib/oeqa/runtime: rework syslog test
      0ba78c1 oeqa/utils/qemurunner: get ip old fashioned way and use tcp serial console
      bc4b98b classes/testimage: create a link for qemu boot log
      32a36db mesa: fix and enable out-of-tree builds
      07fdfd6 gst-ffmpeg: set SUMMARY instead of DESCRIPTION
      7a07f71 gst-ffmpeg: enable using yasm during build
      988f625 gst-ffmpeg: merge in bbappend from meta-oe
      4acdab0 libav: add from meta-oe, update and tweak
      7071131 x264: add from meta-oe, update and tweak
      2d493e9 yasm: add from meta-oe and tweak
      0c0ac7d ref-manual: Updates to insane.bbclass and two new variables added.
      3565586 ref-manual: Review comments added, new variables added
      b7c167a ref-manual: Small wording change to installed-vs-shipped test.
      a89b418 ref-manual: Added more QA checks to the insane.bbclass.
      e26f253 ref-manual: Review comments to a few variables.
      d4ee32a ref-manual: updated the IPK_FEED_URIS variable.
      ee96b1b ref-manual: updated LIC_FILES_CHKSUM exmaple
      56e0326 dev-manual: udates to toaster section.
      9de2165 ref-manual: Edits to the IMAGE_TYPES variable.
      0615dc0 dev-manual, ref-manual, yocto-project-qs: Debian support added
      e0fa185 yocto-project-qs: Fixed path typo for a download.
      198d34d ref-manual: Edits to IMAGE_FSTYPES and IMAGE_TYPES variables.
      7f7ede1 ref-manual: Added IMAGE_TYPES variable and updated IMAGE_FSTYPES.
      f5c7a1f ref-manual: updates to TARGET_ARCH and KARCH variables.
      a3d3c7d bsp-guide: Updated the returned KARCH list for yocto-bsp script.
      f8d18fb yocto-project-qs: Updated section on toolchains.
      4fc1cd4 ref-manual: Added new variable IPK_FEED_URIS.
      61ce3fd ref-manual: Added BINCONFIG_GLOB variable and updated binconfig.bbclass
      5056199 ref-manual: Applied review edits to several variable descriptions.
      6f77a17 adt-manual: Organized building a toolchain installer into a section.
      089fcba ref-manual: Edits and additions to glossary
      e5b5b5a ref-manual: Updated the update-alternatives class
      203b2f7 ref-manual: Edits to the binconfig.bbclass section.
      4888d1e ref-manual, dev-manual: Review edits for Build Directory wording.
      d22a390 ref-manual: Edits to OE_BINCONFIG_EXTRA_MANGLE and binconfig.bbclass
      f9dc302 ref-manual: Added glossary entry for INHIBIT_DEFAULT_DEPS variable.
      43bc43c ref-manual, dev-manual: Fixed links for SERIAL_CONSOLE
      68dd731 ref-manual: Added glossary entry for SERIAL_CONSOLES variable.
      dc02de3 ref-manual: Added glossary entry for SERIAL_CONSOLES_CHECK variable.
      a799158 ref-manual: Added a glossary entry for the EXTENDPKGV variable.
      585b2fe ref-manual: Added new glossary entry for PACKAGE_INSTALL variable.
      367da91 ref-manual: Added new glossary entry for the PATCHTOOL variable.
      af36d33 ref-manual: Added two links for FILESOVERRIDES and OVERRIDES
      56b0a9c ref-manual: Added placeholder for BUILDHISTORY_CHECKVERBACKWARDS
      de0b92f ref-manual: updated link
      f0d805d ref-manual: New variable entries added.
      d066247 ref-manual: Changes to the externalsrc.bbclass reference section.
      76f5d3f dev-manual: updates to how to use externalsrc.bbclass
      97ece25 ref-manual: Updates to the S variable description in the glossary.
      2111a92 ref-manual: Added glossary description for OE_BINCONFIG_EXTRA_MANGLE variable.
      48335a7 ref-manual: Added new glossary description for RM_OLD_IMAGE.
      0bc4ce8 ref-manual: replaced linux_libc-headers with linux-libc-headers
      1bedcb0 ref-manual: Edits to the TOPDIR glossary entry.
      24dfbba ref-manual: More review edits to closer look section.
      8a7e685 ref-manual: Small corrections to the TOPDIR variable description.
      2a9ee7a ref-manual: Review comments for closer look at YP dev section
      1b056af ref-manual: New COREBASE variable entry added to glossary.
      106e89f ref-manual: Updated the TMPDIR description in the glossary.
      93c76f4 ref-manual, mega-manual, Makefile: Updates to expanded dev section
      4b23d26 ref-manual, mega-manual: New section for images/SDK
      17ded75 ref-manual: New variables added to the glossary.
      53c70de ref-manual: New glossary entry for DEPLOY_DIR.
      40b9e61 ref-manual: Update to note regarding distros supported.
      8f865d7 yocto-project-qs: Updated note about the distros supported.
      34c68c5 ref-manual: Updated warning note in supported distro section.
      3f127a5 ref-manual: Fixed typo
      534ec3d ref-manual: New entry for OE_IMPORTS variable added to glossary.
      f32e019 Makefile: Corrected figure file name.
      d39c2e2 dev-manual: fixed a grammar issue.
      194f2c1 ref-manual: Added note about not supporting rolling distros
      d1cc158 ref-manual: Removed link to wiki page for tested distros.
      5ebb6d8 mega-manual: Added five new figures to the figures folder
      b57aa07 Makefile: Added new figures to the TARBALL variables.
      affae18 ref-manual: Wording change for Images section.
      96ce7dc ref-manual: New section on Package Feeds.
      ef0be47 ref-manual: Typos fixed.
      8007fef ref-manual: added opengl to distro feature list.
      fd381a2 ref-manual: Added a section reference to external toolchain question.
      eccd321 dev-manual: Changes "Webhob" to "Toaster"
      b44a9ab dev-manual: First draft of webhob section
      6987974 yocto-project-qs: Fixed CentOS packages section.
      0a074d5 ref-manual: Edits to requirements section.
      69b317f ref-manual: Edits to the "source" section of yp dev environment
      dc7f6e7 ref-manual: First draft of the "Sources" section added.
      f3b97fa ref-manual: Another round of edits from Paul implemented.
      cb66b6e ref-manual: Review comments added.
      c7ac885 ref-manual: Review comments for config and layer sections.
      7c8831b ref-manual: Added new overview figure.
      a9e5f08 dev-manual: Fixed some rogue characters.
      1adebc0 ref-manual: Added new section for layer input detail.
      20b0437 ref-manual: New figure added for Layer section.
      25146ba ref-manual: Some additional edits
      0345088 ref-manual: New user configuration figure added.
      95cdad1 ref-manual: Start of new section on deeper look into dev env.
      482943b ref-manual: Added URL for the pre-built buildtools tarball
      485b35d documentation: Removed deprecated kernel-manual.
      a44fc49 mega-manual.sed: Deleted kernel-manual line.
      68752d7 mega-manual.sed: Removed the processing for kernel-manual
      d917158 README: Updated the file to reflect current state of documentation
      e5dae1b kernel-dev: Fixed link in title page to point to new manual.
      4592adb dev-manual: Fixed reference to bug format.
      b26af3c yocto-project-qs: Update to Linux Distribution Requirements
      6546d5a dev-manual: Removed file.
      e3550b4 dev-manual: Changed repo name.
      c56c79f ref-manual: New section on building buildtools tarball
      222a9cf ref-manual, adt-manual: Added links to SDKMACHINE variable.
      b9bf10a ref-manual: Added SDKMACHINE variable description.
      16d522b maintainers.inc: reassign maintainers, remove obsolete recipes
      5695ec8 checkroot.sh: respect the value of ENABLE_ROOTFS_FSCK
      3d1a60a build-appliance-image: upgrade to ac60aa8cf707eec58e2cb51e7c406250d0b43ef1 commit.
      bc1996c mkfontscale: upgrade to 1.1.1
      8429370 ed: upgrade to 1.9
      33f6017 systemtap: fix build failure on host system with dyninst installed
      86d8d89 busybox: remove syslog-startup.conf if sysvinit not in DISTRO_FEATURES
      290a5ae qemu: pass CFLAGS via ./configure instead of a patch
      afd80c0 separatebuilddir: add comments
      6305e6a tzdata: upgrade to 2013d
      3ca5ffa gst-fluendo-mpegdemux: upgrade to v0.10.72
      3a8f3b8 net-tools: upgrade to v1.60-25
      60bc7c1 sudo: quote BUILD_CC
      d1fd10e bash: reference acl*.m4 from ${S}
      5c7b8fc buildhistory: use bb.utils.mkdirhier instead of os.makedirs
      560dac6 buildhistory: use package_qa_handle_error for version-going-backwards
      712622e bitbake: hob: Add missing file from previous commit
      f63e7f4 subversion: Add patch to use neon 0.30
      7616bea tiny-init: fix bashism
      b6e4989 maintainers.inc: Update ownership of recipes
      30a3b12 package_regex.inc: Add/Update regexes
      89f42c9 bitbake: depexp: fix typo in variable name
      44db452 bitbake: depexp: insert data instead of append/set, for speed
      3412a89 bitbake: depexp: make parse() a member function
      e76fdac bitbake: hob/imageconfigurationpage: changes to image combobox
      4182c53 bitbake: hob/imagedetailspage: add tooltip for save image recipe button
      8db39d2 bitbake: hob: set focus on entry name when the name is not correct
      ecc56f2 bitbake: cooker: save packages in IMAGE_INSTALL instead of PACKAGE_INSTALL
      c83f818 bitbake: hob: implement the "retrieve image dialog" + changes to image combo box
      42a4f33 bitbake: hob: retrieve file name of an image
      4640fd0 bitbake: hob: changes to image combo box
      63157e2 bitbake: hob/bitbake: when an image is saved, it should require an image from layers
      08ccfac bitbake: hob: the saved image should be editable
      3bef5a7 bitbake: hob: change the name and description for the saveimagedialog
      bb8a265 bitbake: hob & bitbake: append a value to a variable from hob throught bitbake
      116219c bitbake: hob: make changes in order to permit from UI to edit an image after saving it
      564c83b bitbake: hob/bitbake: save the description of a custom image
      140744c bitbake: hob/bitbake: create a template (a .bb file) from hob through bitbake
      ee4fe5a bitbake: hob: create save image dialog used to save a template
      843ef10 bitbake: hob: labelling changes in Hob
      adcce84 bitbake: hob/packageslist: change image size label to estimated image size
      4c96451 bitbake: hob/advancedsettings: change toolchain labels to sdk labels
      62c0f6c man-pages: upgrade to 3.53
      d4bb182 util-linux: upgrade to 2.23.2
      313b088 mc: upgrade to 4.8.10
      2ff2249 list-packageconfig-flags.py: add a script to list all PACKAGECONFIG flags
      de17b59 base.bbclass: Fix PACKAGECONFIG usage comment
      9b6fd47 kernel.bbclass: fix typo
      f26c09e curl: upgrade to 7.31.0
      9265340 liburcu: upgrade to 0.7.7
      1019742 qt4: add upstream QTBUG-32534 patch for QHttpMultiPart upload corruption
      6810129 telepathy-glib: upgrade to v0.20.4
      f1a0743 gstreamer1.0-plugins-ugly: upgrade to v1.0.9
      c57d05e neon: upgrade to v0.30.0
      bd96581 libpng: package new tools into a libpng-tools package
      b15101f texinfo: Fix path to perl for scripts
      76f8dfe oeqa/utils/qemurunner: fix wrong var in message
      3b0be88 btrfs-tools: upgrade to upstream revision.
      6301717 mesa: update to 9.1.6
      be13994 packagegroup-core-boot: correct runtime dependencies for non-sysvinit system
      9e280a1 grub-efi-native: add flex patch to efi-native version also
      d5ca5d8 apt-native: fix SRC_URI Checksum for update
      54437d8 gdk-pixbuf: upgrade to 2.28.2
      a772e06 gstreamer1.0-plugins-bad: upgrade to v1.0.9
      e471457 gstreamer1.0-libav: upgrade to v1.0.9
      44a4523 gstreamer1.0-plugins-good: upgrade to v1.0.9
      0fe3618 gstreamer1.0-plugins-base: upgrade to v1.0.9
      b14ac15 gstreamer1.0: upgrade to v1.0.9
      9fc51c3 telepathy-idle: upgrade to v0.1.16
      6b0b8d8 telepathy-mission-control: upgrade to v5.15.0
      6eb01bf libc-package.bbclass: Add armeb architecture to locale_arch_options
      60a8903 buildhistory: add a note when committing to buildhistory
      2fd2c60 buildtools-tarball: do not export OECORE_NATIVE_SYSROOT
      ca365c6 initramfs-framework: fix bashism
      ae26fa4 xtscal: fix bashism
      3d6ffb7 qtdemo-init: fix bashism
      d55d458 scripts/contrib/mkefidisk.sh: fix bashism
      4cff3de grep: Add patch for texinfo 5.1
      5aff182 gcc-4.8: Fix meta-fsl-arm iperf build issue
      82877a9 ofono: Enable test scripts by default
      3cf0a54 ofono: Move bluetooth enabling to .inc file
      973cfd8 ofono: Add systemd support
      176ad0d grub: disable floating ncurses dependency for GPLv2 version
      ac60aa8 classes/sanity: fix some grammatical errors in messages
      9aba922 classes/sanity: check for suid root command evility
      c56e470 mesa: inherit gettext
      0224cb2 oe-find-native-sysroot: minor optimization
      596a3b6 packagegroup-core-tools-testapps: isolate x11 dependent tools
      a326594 u-boot: state the MACHINE when skipping u-boot
      900ecba xorg-cf-files: upgrade to 1.0.5
      f8781d3 resolvconf: upgrade to 1.74
      0f5e881 libgcrypt: upgrade to 1.5.3
      bc14915 glew: upgrade to 1.10.0
      2a4c430 dpkg: Drop INC_PR as it's unused
      c342715 dpkg: upgrade to 1.17.1
      46e50e3 shadow: Fix build when DISTRO_FEATURES contains pam, libc-crypt
      4813e2d alsa-utils: upgrade to 1.0.27.2
      6d5d0c4 alsa-lib: upgrade to v1.0.27.2
      8d68f16 apt: Upgrade from 0.9.8.2 to 0.9.9.4
      338b0e7 grub_2.00: fix compilation when using flex 2.5.37
      e75bbf9 flex: upgrade to 2.5.37
      d4e26f9 makedepend: upgrade to 1.0.5
      378d8f5 xhost: upgrade to 1.0.6
      e97780c xf86-input-evdev: upgrade to 2.8.1
      57033f6 xrandr: upgrade to 1.4.1
      2dae94b libpciaccess: upgrade to 0.13.2
      141e928 libdrm: upgrade to 2.4.46
      1913659 powertop: upgrade to 2.4
      e4a6815 nasm: upgrade to 2.10.09
      8bebf2b git: upgrade to 1.8.3.4
      4cb6c0e xf86-video-intel: upgrade to 2.21.13
      175cad5 gst-plugins-gl: add explicit dependency on libpng
      48763e9 opkg: Bump SRCREV as patch has been applied upstream
      f890c73 qemu: remove unused SDL variable
      a767e36 bluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately
      159c1c8 avahi: Remove unnecessary runtime dependency on sysvinit-pidof
      381566a opkg.inc: remove the obsolete REDIRECT_CMD
      519a8ac adt_installer: allow specifying relative target sysroot paths
      b8962ed oeqa/runtime/xorg: use the right ps command for xorg test
      26d67b9 oeqa/utils/qemurunner: tweak console bootparam and ip command
      fce0c99 oeqa/utils/qemurunner: add comment and header
      e678a45 oeqa/utils/sshcontrol: increase and log timeout in output
      9de0ad4 genericx86: ship all the driver firmware by default
      5efc59a genericx86: disable rootless X
      4ef3385 genericx86: add fbdev, modesettings and vesa Xorg drivers
      e2010da local.conf.sample: add genericx86 reference
      2bdb478 genericx86: add new BSP
      06feb0e package_regex.inc: Add/Update REGEX and PRSPV variable
      8af2565 layer.conf: make the yocto layer dependent on oe-core
      8e324c7 poky-lsb: Enable GCC Security flags by default for LSB builds
      888d1f3 bitbake: bitbake-worker: import needed signal module
      d45486e bitbake: fetch2: fix unpack of .xz files
      5472bdc texinfo: Update to 5.1
      c291032 matchbox-wm: correct the SRC_URI and add checksums
      c313d60 dbus: remove build host test in configure script
      16ce101 busybox: move /bin/su to /usr/bin/su to match util-linux and shadow
      9ed0a31 shadow: use u-a for su
      b336264 util-linux: use u-a for su
      55770c0 util-linux: Update for swapoff being a separate binary
      82ac6aa libpam: deny all services for the OTHER entries
      f02e5a6 libpng : upgrade to 1.6.3
      f2b19ad csl-versions.inc: instruct user to check local.conf
      683f454 distrodata.bbclass: Include PRSPV variable in upstream version checking
      280b9a3 distrodata.bbclass: Remove whitespaces
      b099c7b pseudo: Always try to build 32-bit libpseudo when NO32LIBS is set to 0
      fe378e1 busybox: Add syslog-init alternative only if SysV in enabled
      3b9b8d5 systemd: Remove init.d dir if systemd unit file is present and sysvinit not a distro feature
      205ec43 v86d: mark as compatible with all x86, not just qemux86
      d363660 iproute2: upgrade to v3.10.0
      4b49ae1 syslinux: update to 4.07
      7b1fc17 docbook-sgml-dtd-4.1-native: fix recipe name
      3248efe docbook-sgml-dtd-3.1-native: fix recipe name
      cc94000 lib/oe/terminal.py: add support for MATE desktop terminals
      e472443 bluez5: Only install .conf files if found
      05241f9 openssl: Fix multilib header conflict - opensslconf.h
      d8e4a4b ccache: allow CCACHE_DIR to be overriden
      bd1c441 bitbake: bitbake: runqueue: add warning if invalidating invalid task
      0e9049a bitbake: hob: sstatemirror is standard also for file://.* regex
      e28904e bitbake: hob: changed the split of SSTATE_MIRRORS variable
      e605ecf bitbake: providers.py: print a debug message for dynamic pacakge
      4df73c7 maintainers.inc: reshuffle maintainers
      d1b189f external-sourcery: add missing providers
      6784e26 apt: Add Upstream Status to patches
      4e7d4aa openssh: Added Upstream Status to openssh-CVE-2011-4327
      ec0e7f7 Revert "initrdscripts: mount / as read-only when live-booting"
      f629afe classes/rootfs_rpm: implement BAD_RECOMMENDATIONS for RPM
      face212 classes/image: ensure BAD_RECOMMENDATIONS supports pre-renamed package names
      c1a7436 python-smartpm: add ignore-recommends package flag
      e8dfbb0 python-smartpm: fix sometimes reporting no provider instead of conflict
      1cbabdb util-linux: fix PACKAGECONFIG options
      6911907 strace: Add ptest
      2df842d mesa: add PACKAGEs and PACKAGECONFIG for xvmc
      904f937 wpa-supplicant: enable required configuration options for connman
      ac9d373 videoproto: Update from 2.3.1 to 2.3.2
      dd810b8 libuser: Updated from 0.58 to 0.59
      36ef2a7 libxxf86dga: Updated from 1.1.3 to 1.1.4
      007592a libxrandr: Update from 1.4.0 to 1.4.1
      a0487b0 libxfont: Update from 1.4.5 to 1.4.6
      7e34865 rpm: remove the obsolete rpm-postinsts.bb
      ab2a6a8 qemu: block to build it on mips64 arch
      dc03e67 gettext: disable nls when INHIBIT_DEFAULT_DEPS is set
      ac98301 gst-plugins-good: add PACKAGECONFIG for jpeg, wavpack, gdkpixbuf, v4l, bzip2, orc
      9f734c6 gstreamer1.0-plugins-good: add PACKAGECONFIG for v4l
      396d7c5 sudo: add PACKAGECONFIG for zlib
      7386dba socat: add PACKAGECONFIG for tcp-wrappers
      4154db3 python-imaging: add PACKAGECONFIG for lcms
      6d89135 patch: add PACKAGECONFIG for attr
      5fd58bb ltp: add acl, openssl dependency
      bfd75e4 minicom: add configure option and PACKAGECONFIG for lockdev
      331e651 mailx: remove support for autodetection of krb5
      f2e84ad grub: add PACKAGECONFIG for grub-mount
      bf37590 distcc: add PACKAGECONFIG for popt
      9059398 directfb: add PACKAGECONFIG for jpeg2000
      2198910 cups: add PACKAGECONFIG for acl
      53efb96 ccache: add zlib dependency
      9143917 xkeyboard-config: add missing dependency on util-macros
      ce17978 gst-plugins-bad: add few more PACKAGECONFIGs
      5c4513d test-dependencies: add simple script to detect missing or autoenabled dependencies
      462acd2 linux-yocto/3.8: revert .gitignore: do not ignore meta directory
      3e2a680 scripts/create-lsb-image: remove
      7c1cb16 LSB_Test.sh: add -f option for curl
      cb68f65 pulseaudio: upgrade to v4.0
      4c58161 ptest: fix Upstream-status
      a8f3dae rt-tests: add Upstream-Status for cyclictest patch
      a9b98b6 weston: add pango dependency
      8b7c6ef sanity.bbclass: mention version when erroring on LCONF_VERSION mismatch
      63fd657 sysvinit: pidof add -m option for lsbinitscripts
      5929854 lsbinitscripts: remove x permission on functions
      fc8cb56 cups: Update to 1.6.3
      6e87a6f mklibs-native: Update to 0.1.38
      577c42e consolekit: Update to 0.4.6
      3e3ab8e useradd.bbclass: fix traceback when inheriting useradd but not setting USERADD_PARAM or GROUPADD_PARAM
      ee9bdf9 nss:fix postinst failed at rootfs time
      fcfee5c readline: fix importing readline in python with probably escape sequence output
      aa7bc3c run-postinsts: add more logging to the log file to make things clearer
      49cd268 run-postinsts: fix comment
      0a3d3b6 xinput-calibrator: move it from meta-oe to oe-core
      054b932 package.bbclass: avoid packing debug sources from other packages
      3f7e8ad bash: Add ptest
      d921c0a connman: upgrade to v1.16
      4b5a21d elfutils: fix backends' Makefile.am
      a55fa3c dmidecode: add aarch64 and arm to compatible host
      b71aa97 cpan.bbclass: Fail unless Makefile.PL generates Makefile
      6bb09da dbus: add -o option into start-stop-daemon arguments
      dd8865a gcc-4.8: fix compiling GCC when /usr/lib/libstdc++.so is present
      67864ca systemd: Remove systemd_unitdir if systemd is not in distro features
      c39bd69 glew: Update GLEW version number in autotools patch
      4695231 mesa: add Upstream-Status
      3522607 cups: add PACKAGECONFIG for avahi
      3d6f866 subversion: add PACKAGECONFIG for sasl
      813bf62 pulseaudio: add PACKAGECONFIG for jack
      9cfd8e5 gst-plugins-ugly: add PACKAGECONFIG for x264, cdio, dvdread
      7e7680b gst-plugins-good: add PACKAGECONFIG for jack
      1d5d931 boot-directdisk: use awk instead of echo -ne for dash compatibility
      1b01e39 remake: fix insufficient gettext dependency
      f8baa35 mesa: use LLVM 3.3 by default
      aaca675 wget: backport fixes for documentation build errors
      6d42c27 extrausers.bbclass: add a new bbclass
      50d2548 useradd.bbclass: add a new base class and code refactor
      18f39e5 kmod: Add ptest
      bbab6e7 directfb: don't patch pkg-config files
      de52f89 python: Add ptest
      4f9c5a0 mesa: upgrade to 9.1.5
      248bb31 systemd: remove unneeded modprobe.rules
      784d7b7 libpam: add a new 'nullok_secure' option support to pam_unix
      7af92f8 initrdscripts: mount / as read-only when live-booting
      e6f96e2 tremor: add a patch to build with arm thumb
      b23423c docbook-sgml-dtd-4.5-native.bb: Add real PV inside the recipe
      ba0640a lttng-modules: Append _git to recipe name and add GIT revision to PV variable
      3c0300b kmod:add GIT revision to PV variable
      a726633 adt_installer_internal: fix spelling error
      0d8ee88 pigz: Fix typo in ALTERNATIVES line
      31e6eee poky-tiny.conf: blacklist core-image-weston option
      142d40e local.conf.sample.extended: add example for EXTRA_USERS_PARAMS
      f23a47f curl: add upstream status to patch
      8ebc333 pulseaudio: Removed avahi forced dependency
      7156f30 scripts/contrib/*: fix arithmetic bashism
      5a170bd linux-yocto/3.8: restore qemumips64 SRCREV
      f7f9f16 linux-yocto/3.4: mips: fix gcc 4.8 compilation
      d0947c9 linux-yocto/3.8: update META srcrev
      f1f5f7d tar: remove an erroneous patch
      16b411e rpm-postinsts.bb: Fix typo
      8b57730 run-postinsts: Fix typo
      681b605 eglibc-2.18: Update to latest snapshot
      1c0c480 eglibc-2.18: Remove unused patches
      095b1ef valgrind: added perl dependency
      eb9b8a0 pulseaudio: Added cli-protocol-unix to pulseaudio-misc
      eff0b05 bluez5: new package for v5.7
      a527fe2 bluez4: conflicts with bluez5
      37784b9 iproute2: Fix alternative link for ip command
      26207e2 uclibc: Build ldd/ldcondif/iconv for main uclibc recipe
      f582398 buildtools-tarball: testimage needs the mmap python-module
      e23d5a0 xuser-account: add xuser to disk group
      565956f udev-extraconf: allow users in disk group to write vfat filesystem
      8db3642 populate_sdk_base.bbclass: use new perm option for find
      16e1e1f oprofile: add Upstream-Status for several patches
      21937da tcl: fix typo of upstream status in patch file
      9d219d8 dbus-ptest: Disable python module check
      fb58029 gcc-4.8: Fix on-device SDK C++ runtime issue
      8f91b1c Upstream-Status: Correct capitalization
      77742dd classes/insane: allow libdir QA check to be skipped using INSANE_SKIP
      20d7b27 classes/insane: fix regression in libdir QA regex
      314b92a wpa-supplicant: backport patch to fix dbus interface for autoscan functionality
      e9b5ef1 busybox: fix ip reference in simple.script
      3cef129 terminal.bbclass: Fix BB_RUNFMT processing
      4a6f939 sanity.bbclass: Update gcc sanity check
      344cf64 gdb: add PACKAGECONFIG for Python support
      1820d33 qt-mobility: tighten up config generation and use PACKAGECONFIG
      aef74ef dpkg: backport a patch to support mipsn32el and mips64el
      3dee534 lib/oeqa: fix dependecy check
      656a8b9 testimage.bbclass, lib/oeqa: add headers and comments
      655da29 classes/testimage.bbclass: use a copy of rootfs for tests
      2079a30 lib/oeqa/runtime: add tests for syslog and df
      7f57d3c lib/oeqa/oetest.py: provide a ps command for all tests
      b69f91f lib/oeqa/runtime/multilib.py: use readelf instead of file
      9c4a02b testimage.bbclass, lib/oeqa/utils/qemurunner.py: make boot timeout configurable and increase it
      1552f33 lib/oeqa/utils/sshcontrol.py: fix passing command to subprocess
      46d3bb5 lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net interface name
      8a971ae initscripts: Update to 9.48
      206c3c7 mc: upgrade to 4.8.9
      84b62e2 libidn: upgrade to 1.28
      a8cd0fc core-image-lsb.bb: add 'package-management' to IMAGE_FEATURES
      74e4037 yocto-kernel: make BBLAYERS parsing more robust
      46818e5 package_regex.inc: Changes in regexes
      06ae127 distrodata.bbaclass: change in git and svn package reporting
      5c9281e qemu: QEMU fix libtool usage
      caa4130 ncurses: add xterm-256color to terminfo-base
      88ff9e0 pciutils: Add kmod dependency
      6cf5b4b boost: backport glibc patch for new eglibc
      a6c5549 dbus: upgrade to 1.6.10
      0ef252e ethtool: add ptest
      334a22f xdg-utils: upgrade to 1.1.0-rc1
      02d5ea6 qt4-x11-free: fix post-processing of QtWebKit.pc
      c540044 nss: fix incorrect shebang line of perl script
      912efc0 nss: create checksum files for the nss libraries
      e448ef6 nss: add version 3.15.1
      9781b0d packagegroup-core-lsb: add nss for LSB library check
      8080558 nspr: add native version
      788f176 alsa-state: Provide an empty asound.conf by default
      01d9d1b powertop: fix update-alternatives link
      c1b0fae rxvt-unicode: Check existence of acinclude.m4
      7d013f3 cogl-1.0: make building cogl-pango optional
      9b6011c cogl-1.0: put each library into its own package
      63645af package_rpm.bbclass: remove xx.spec before doing rpmbuild xx.src.rpm
      2758fce libogg: upgrade to 1.3.1
      b52d2bb boot-directdisk: allow specifying custom MBR disk signature
      f9625c2 packagegroup-core-tools-profile: exclude systemtap and valgrind for mips64
      f8bee41 xserver-xorg: extend packageconfig and dependencies
      5d17796 diffutils: Upgrade to v3.3
      5f86341 iputils: Upgrade to v20121221
      db9775f pango: remove pango-module-basic-x RRECOMMENDS
      a632299 meta-yocto-bsp: update reference board SRCREVs
      723ab4a security_flags: Add addition recipes to the non pie list
      1d10dc3 kconfig-frontends: Update to 3.10
      73ebab2 tzcode-native: Update to 2013d
      7f7fb8b cmake: Update to 2.8.11.2
      c6d14c6 man-pages: Update to 3.52
      b5c49e6 util-linux: Use PACKAGECONFIG to control pam and system config options
      b472553 glib-2.0: add -march=i486 into CFLAGS automatically when needed.
      258b8a2 package_deb.bbclass: make DESCRIPTION support newline
      33cd81e package_ipk.bbclass: make DESCRIPTION support newline
      477b2c9 package_rpm.bbclass: make DESCRIPTION support newline
      29e8106 eglibc: Update 2.18 recipes to fix ppc/e500 failures
      10cdbf1 qt4: add upstream QTBUG-31579 patch to fix polyline drawing regression
      c44cb07 pango: drop unexplainable elfutils dependency
      9190cfd gtkdoc: set the default docdir to ${S}, not ${B}
      4b0ab26 libxml2: Add ptest
      d8cba33 populate_sdk_base.bbclass: allow $OECORE_NATIVE_SYSROOT in sdk_env_script
      09fea03 cmake: fix configure error if system Qt installation is broken
      89a8dcc initscripts: add dmesg file to /var/log
      5b44949 initscripts: overwrite default hostname.sh
      6e08d01 qemu: use PACKAGECONFIG to address libaio/attr/libcap dependencies
      3f9224c eglibc-locale: add missing dependency on virtual/${TARGET_PREFIX}binutils
      c15d990 systemtap: inherit pkgconfig
      c491477 libpam: inherit pkgconfig
      195e098 quota: inherit pkgconfig
      38639bd taglib: add missing dependency on zlib
      70c1801 gst-plugins-base: add missing dependency on glib-2.0-native
      0808adb gst-plugins-bad: inherit gsettings
      9cc5201 (lib)telepathy*: add missing dependency on libxslt-native
      4cabd89 usbutils: Upgrade to v007
      88846af apr-util: Upgrade to v1.5.2
      1f917bc apr: Upgrade to v1.4.8
      2f0b5c1 libdmx: Upgrade to v1.1.3
      19be8b3 ed: Upgrade to v1.8
      c3df564 rxvt-unicode: Upgrade to v9.18
      1f5bd76 elfutils: Upgrade to v0.155
      749fcaf shutdown-desktop: give entire path in Exec field
      ca48b14 xserver-nodm-init: remove xuser creation, RDEPEND on xuser-account
      95ce63d connman: remove xuser creation, RDEPEND on xuser-account
      79e948b xuser-account: create separate recipe for xuser creation
      f638364 sysvinit: allow users in shutdown group to perform halt/reboot
      1cf75b5 packagegroup-core-basic: remove libpam
      da2f4a0 linux-yocto/3.4: update to v3.4.52
      58002d1 ethtool: Updated from 3.9 to 3.10
      22ee5af libxv: Updated from 1.0.8 to 1.0.9
      eac1500 libxrender: Updated from 0.9.7 to 0.9.8
      397845d libgpg-error: Updated from 1.11 to 1.12
      eb5b86d libxi: Update from 1.7.1 to 1.7.2
      8ec12b3 libxvmc: Update from 1.0.7 to 1.0.8
      2805608 augeas: Update from 1.0.0 to 1.1.0
      528bcdb libassuan: Updated from 2.1.0 to 2.1.1
      5c30746 packagegroup-core-lsb: set COMPATIBLE_HOST to mips64
      22ff68e webkit: set COMPATIBLE_HOST for mips64
      28d8cbe e2fsprogs: upgrade to 1.42.8
      2c4c06d glib-2.0: upgrade to 2.36.3
      92d9ce3 populate_sdk_base: fix bashism
      f6538c3 scripts/runqemu: Add support for 'qemumicroblaze' machine
      4156338 scripts/runqemu: Add support for 'qemuzynq' machine
      ce1638c systemd: Don't enable systemd services when native.
      4285e85 lib/oeqa/runtime: add gcc test
      06d6f9d lib/oeqa/runtime: image sanity tests
      54f3848 lib/oeqa/utils/decorators.py: decorators for test methods
      88a6eb8 lib/oeqa/utils/qemurunner.py: class to handle qemu instance
      962c0a1 lib/oeqa/utils/oeqemuconsole.py: handle qemu serial console connection
      ac341af lib/oeqa/utils/sshcontrol.py: helper module for running remote commands
      12bf626 lib/oeqa/oetest.py: base module for all runtime unittests
      1328d49 classes/testimage.bbclass: new class for image tests
      dc86293 bitbake: HOB:Proper handle of SIGINT
      1defbaf qt4: Take PV increase opportunity to drop PR
      131e5e7 busybox: upgrade to stable 1.21.1
      0463e5c qt4: upgrade to 4.8.5
      262fa7e resolvconf: Update to 1.72
      94eee2e remake: Update to latest 3.82_dbg-0.9 Tag
      d7dbb52 swabber: Update to latest head
      0b50730 dtc: Update to 1.4.0 Git Tag
      2193241 boost: Update to 1.54
      830e890 help2man: Update to 1.43.3
      c81855b util-linux: disable runuser by default since it depends on PAM
      8846267 packagegroup-core-basic: Only build libpam if it's enabled
      5ad6081 distro/conf: Drop libc-libm-big
      10b5910 Upstream_tracking: mark package as not upgradable due to PRS issues
      07af0ec busybox.bbappend: upgrade to 1.21.1
      cb6ce45 poky.conf: move libdir QA check to WARN_QA
      f8c8c7d yocto-kernel: enforce exact match for BBLAYERS
      04b36b1 yocto-bsp: filter out 'layer' from arch list
      509ca...
      c0f7c04c
  3. Mar 28, 2017
Loading