]> code.ossystems Code Review - openembedded-core.git/log
openembedded-core.git
10 years agobash: use EXTRA_AUTORECONF to disable autoheader
Ross Burton [Fri, 28 Nov 2014 15:35:15 +0000 (15:35 +0000)]
bash: use EXTRA_AUTORECONF to disable autoheader

Disable autoheader by setting EXTRA_AUTORECONF to --exclude=autoheader instead
of setting AUTOHEADER to true.

Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agotoolchain-script: Add support for ccache builds with the SDK
Laszlo Papp [Thu, 27 Nov 2014 17:40:51 +0000 (17:40 +0000)]
toolchain-script: Add support for ccache builds with the SDK

It is necessary to have an SDK for developers who build their software with
ccache to speed up the compilation. Without resolving this, unfortunately the
compilation will fail for them.

Signed-off-by: Laszlo Papp <lpapp@kde.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agolibpam: avoid overwritting editable files during package updating
Jian Liu [Fri, 21 Nov 2014 09:17:13 +0000 (17:17 +0800)]
libpam: avoid overwritting editable files during package updating

Use CONFFILES to mark editable files as such,
  /etc/pam.d/common-session
  /etc/pam.d/common-auth
  /etc/pam.d/common-password
  /etc/pam.d/common-session-noninteractive
  /etc/pam.d/common-account

If there is no %config micro before the file name in the spec file,
this file will be overwritten after updating package.
This will make our settings lost.

Signed-off-by: Jian Liu <jian.liu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoinitscripts: avoid overwritting editable files during package updating
Jian Liu [Fri, 21 Nov 2014 09:17:11 +0000 (17:17 +0800)]
initscripts: avoid overwritting editable files during package updating

Use CONFFILES to mark editable files as such,
  /etc/init.d/checkroot.sh

If there is no %config micro before the file name in the spec file,
this file will be overwritten after updating package.
This will make our settings lost.

Signed-off-by: Jian Liu <jian.liu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agobase-files: avoid overwritting editable files during package updating
Jian Liu [Fri, 21 Nov 2014 09:17:10 +0000 (17:17 +0800)]
base-files: avoid overwritting editable files during package updating

Use CONFFILES to mark editable files as such,
  /etc/motd
  /etc/nsswitch.conf
  /etc/profile

If there is no %config micro before the file name in the spec file,
this file will be overwritten after updating package.
This will make our settings lost.

Signed-off-by: Jian Liu <jian.liu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agopackage_manager.py: check the result of create_index
Hongxu Jia [Fri, 21 Nov 2014 08:00:55 +0000 (16:00 +0800)]
package_manager.py: check the result of create_index

While invoking create_index failed, there was no error output
and didn't break the build until the package installation.
...
|ERROR: run-postinsts not found in the base feeds (qemux86 i586 x86
noarch any all).
...

The reason is we used multiprocessing to execute create_index, and
did not check its invoking result.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agocompress_doc.bbclass: support update-alternatives
Hongxu Jia [Sat, 8 Nov 2014 09:04:38 +0000 (17:04 +0800)]
compress_doc.bbclass: support update-alternatives

While doc file make use of update-alternatives to fix confliction,
we should reconfigure update-alternatives for doc compression.

Such as util-linux-doc:
...
update-alternatives --install /usr/share/man/man1/last.1 last.1
  /usr/share/man/man1/last.1.util-linux 100
...
was updated by doc_compress to
...
update-alternatives --install /usr/share/man/man1/last.1.bz2 last.1.bz2
  /usr/share/man/man1/last.1.util-linux.bz2 100
...

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agocompress_doc.bbclass: improve manual file detection
Hongxu Jia [Sat, 8 Nov 2014 05:56:19 +0000 (13:56 +0800)]
compress_doc.bbclass: improve manual file detection

The previous detection missing the following manual file:
...
gawk-doc/usr/share/man/man3/readfile.3am
libpcap-doc/usr/share/man/man3/pcap_dump_open.3pcap
...

We use re to imporve it.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agometadata_scm: Fix crash due to uncaught python exception
Merten Sach [Sat, 22 Nov 2014 21:54:55 +0000 (22:54 +0100)]
metadata_scm: Fix crash due to uncaught python exception

Function base_get_metadata_svn_revision was crashing due to an uncaught
IndexError exception.

The except notation without parentheses is legacy syntax. It is the equivalent
to 'except IOError as IndexError' which is not what we want here.

The change catches both exceptions.

Signed-off-by: Merten Sach <msach@mailbox.tu-berlin.de>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoserf: fix 'ccache' builds
Enrico Scholz [Fri, 21 Nov 2014 16:55:12 +0000 (17:55 +0100)]
serf: fix 'ccache' builds

'scons' cleans the environment which breaks ccache builds because
CCACHEDIR can point to an unexpected location:

| ccache arm-linux-gnueabi-gcc ... context.c
| ccache: failed to create .../serf/1.3.8-r0/.home/.ccache (No such file or directory)

Issue is described in

  http://www.scons.org/wiki/ImportingEnvironmentSettings

and because 'bitbake' cleans environment we can pass it completely
instead of trying to enumerate needed env.

With the 'env.patch' the FULLCC variable is not needed anymore (which
would break when CC is 'ccache arm-...-gcc' and host ccache is used)
because the correct $PATH is available during scons build:

| sh: .../sysroots/x86_64-oe-linux/usr/bin/arm-linux-gnueabi/ccache: No such file or directory
| scons: *** [context.o] Error 127

Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agopackage.bbclass: Create empty key/value if not there for shlib_provider
Khem Raj [Fri, 21 Nov 2014 18:05:03 +0000 (10:05 -0800)]
package.bbclass: Create empty key/value if not there for shlib_provider

When we use ASSUME_SHLIBS,e.g.

ASSUME_SHLIBS = "libEGL.so.1:libegl-implementation"

then we end up with errors like below when using shlibs2 (dizzy+)

File: 'package_do_shlibs', lineno: 216, function: package_do_shlibs
     0212:            dep_pkg = dep_pkg.rsplit("_", 1)
     0213:            if len(dep_pkg) == 2:
     0214:                lib_ver = dep_pkg[1]
     0215:            dep_pkg = dep_pkg[0]
 *** 0216:            shlib_provider[l][libdir] = (dep_pkg, lib_ver)
     0217:
     0218:    libsearchpath = [d.getVar('libdir', True),
d.getVar('base_libdir', True)]
     0219:
     0220:    for pkg in packages.split():
Exception: KeyError: 'libEGL.so.1'

This is because the entry which is being populated does not exist
so lets create it if its not already there.

Change-Id: I9e292c5439e5d1e01ea48341334507aacc3784ae
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoresolvconf: add fixes for busybox and make it work
Saul Wold [Mon, 24 Nov 2014 15:37:52 +0000 (07:37 -0800)]
resolvconf: add fixes for busybox and make it work

resolvconf was missing a script and needed readlink which was in
/usr/bin.  Also the /etc/resolv.conf was not being correctly linked
to /etc/resolvconf/run/resolv.conf, which is fixed by the volaties
change which is now a file as opposed to created in do_install.

Ensure that the correct scripts for ifup/ifdown get installed and that
resolvconf is correctly enabled at startup

[YOCTO #5361]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agopseudo: remove older version and patches
Saul Wold [Wed, 19 Nov 2014 18:22:52 +0000 (10:22 -0800)]
pseudo: remove older version and patches

Signed-off-by: Saul Wold <sgw@linux.intel.com>
10 years agoboost: Upgrade to 1.57
Saul Wold [Mon, 10 Nov 2014 22:00:02 +0000 (14:00 -0800)]
boost: Upgrade to 1.57

Signed-off-by: Saul Wold <sgw@linux.intel.com>
10 years agonpth: Upgrade to 1.1
Saul Wold [Mon, 10 Nov 2014 21:59:03 +0000 (13:59 -0800)]
npth: Upgrade to 1.1

Add patch for adding pkgconfig file.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
10 years agobabeltrace: Upgrade to 1.2.3
Saul Wold [Tue, 28 Oct 2014 14:56:18 +0000 (07:56 -0700)]
babeltrace: Upgrade to 1.2.3

Remove backported patches

Signed-off-by: Saul Wold <sgw@linux.intel.com>
10 years agocurl: Ugrade to 7.38
Saul Wold [Tue, 28 Oct 2014 14:55:34 +0000 (07:55 -0700)]
curl: Ugrade to 7.38

Remove backported CVE patches

Signed-off-by: Saul Wold <sgw@linux.intel.com>
10 years agoconnman-gnome: fix dbus interface name
Chong Lu [Mon, 24 Nov 2014 06:09:52 +0000 (14:09 +0800)]
connman-gnome: fix dbus interface name

This patch resolves following error:

"connman-dbus.xml": "connman" is not a valid D-Bus interface name

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
10 years agodbus-glib: Upgrade to 0.102
Chong Lu [Mon, 24 Nov 2014 06:07:48 +0000 (14:07 +0800)]
dbus-glib: Upgrade to 0.102

Remove obsolete_automake_macros.patch, since upstream has merged it.

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
10 years agodbus-test: Upgrade to 1.8.10
Chong Lu [Wed, 19 Nov 2014 07:59:16 +0000 (15:59 +0800)]
dbus-test: Upgrade to 1.8.10

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
10 years agodbus: Upgrade to 1.8.10
Chong Lu [Wed, 19 Nov 2014 07:56:35 +0000 (15:56 +0800)]
dbus: Upgrade to 1.8.10

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
10 years agolibnewt/libnewt-python: upgrade to 0.52.18
Hongxu Jia [Tue, 25 Nov 2014 03:25:36 +0000 (11:25 +0800)]
libnewt/libnewt-python: upgrade to 0.52.18

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agocracklib: upgrade to 2.9.2
Hongxu Jia [Tue, 25 Nov 2014 05:17:14 +0000 (13:17 +0800)]
cracklib: upgrade to 2.9.2

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agogcc: Rework shared work
Richard Purdie [Tue, 25 Nov 2014 17:58:10 +0000 (17:58 +0000)]
gcc: Rework shared work

The current implementation of shared work for gcc is at best confusing. It relies
on the fetch/unpack/patch tasks having exactly the same stamps and if this gets
broken for some reason, its hard to figure out what the problem is. It also
leads to complex code in bitbake.

The benefits of shared work for gcc are clear but a better approach is needed. This
patch adjusts things so that a single new recipe (gcc-source) provides the
fetch/unpack/patch/preconfigure tasks, the rest of gcc simply depends on these tasks
and have no fetch/unpack/patch tasks of their own.

This means we should get the significant benefits (disk usage/performance) of the
single source tree but in a way which has less potential for problems and is
easier for people to understand. The cost is an extra recipe/some inc files
which is probably a good tradeoff.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agobitbake.conf: remove internal flags from BB_SIGNATURE_EXCLUDE_FLAGS
Ross Burton [Mon, 1 Dec 2014 23:47:47 +0000 (23:47 +0000)]
bitbake.conf: remove internal flags from BB_SIGNATURE_EXCLUDE_FLAGS

As the code that uses BB_SIGNATURE_EXCLUDE_FLAGS uses d.getVarFlags() so doesn't
get to see the internal flags, remove _append and _prepend.  Also defaultval is
now _defaultval and thus internal, so remove that too.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agoscripts: don't skip defaultval
Ross Burton [Mon, 1 Dec 2014 23:47:46 +0000 (23:47 +0000)]
scripts: don't skip defaultval

This field is now internal and won't be seen.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agouboot-config.bbclass: don't skip defaultval
Ross Burton [Mon, 1 Dec 2014 23:47:45 +0000 (23:47 +0000)]
uboot-config.bbclass: don't skip defaultval

This field is now internal and won't be seen.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agobase.bbclass: don't skip defaultval
Ross Burton [Mon, 1 Dec 2014 23:47:44 +0000 (23:47 +0000)]
base.bbclass: don't skip defaultval

This field is now internal and won't be seen.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agosanity.conf: Update to require bitbake 1.25.0 as minimum version
Richard Purdie [Wed, 3 Dec 2014 12:15:44 +0000 (12:15 +0000)]
sanity.conf: Update to require bitbake 1.25.0 as minimum version

This allows us to merge in the _defaultval changes.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agodistrodata_class: checkpkg make usage of latest_versionstring methods in bitbake...
Aníbal Limón [Fri, 28 Nov 2014 01:09:43 +0000 (19:09 -0600)]
distrodata_class: checkpkg make usage of latest_versionstring methods in bitbake fetcher

Because methods for get latest version of upstream package are now available
into bitbake removes duplicated code and make use of it.

Compatibility testing was made running distrodata class and the result files
can be found at:

https://bugzilla.yoctoproject.org/show_bug.cgi?id=1813

[YOCTO #1813]

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agogcc-4.8: Drop unused patch
Richard Purdie [Thu, 27 Nov 2014 14:58:11 +0000 (14:58 +0000)]
gcc-4.8: Drop unused patch

I disabled this patch as it became obsolete some time ago but forgot to
remove it, this cleans things up.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agoqemu: Add missing wacom HID descriptor
Richard Purdie [Thu, 27 Nov 2014 14:04:29 +0000 (14:04 +0000)]
qemu: Add missing wacom HID descriptor

The wacom driver we use is missing a HID descriptor causing it not to work
with 3.17 kernels and later. This patch adds in a descriptor to make the
driver work again.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agotoaster.bbclass: use the openembedded-core name
Alexandru DAMIAN [Thu, 27 Nov 2014 17:02:27 +0000 (17:02 +0000)]
toaster.bbclass: use the openembedded-core name

Fixing the bug where the openembedded-core name was registered
as "meta" in toaster.

[YOCTO #6962]

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agotoaster: naming and description changes
Belen Barros Pena [Thu, 27 Nov 2014 16:53:35 +0000 (16:53 +0000)]
toaster: naming and description changes

Some minor changes to the names and descriptions
used in the Toaster configuration file:

* Change the name of the local layer source from Local OE-Core
to Local OpenEmbedded

* Change the imported layer source name from User Imported Layers
to just Imported layers. It is shorter, which helps table display

* Change the description of the master release from OE-Core
master to OpenEmbedded master

* Change the description of the dizzy release from OE-Core dizzy
to OpenEmbedded Dizzy

* Change the helptext of the dizzy release to remove the
"latest" reference, which can make maintenance hard

* Change the name of the Local Yocto Project release to Local
OpenEmbedded

Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agogdk-pixbuf: use ptest-gnome
Ross Burton [Tue, 3 Jun 2014 13:03:48 +0000 (14:03 +0100)]
gdk-pixbuf: use ptest-gnome

Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agouseradd.bbclass: set PSEUDO_PASSWD consistent with root directory
Peter A. Bigot [Sat, 15 Nov 2014 19:53:54 +0000 (13:53 -0600)]
useradd.bbclass: set PSEUDO_PASSWD consistent with root directory

When installing into a sysroot this class examines $D/etc/passwd for
content, then invokes useradd to make changes.  Under pseudo useradd
attempts to look up user information in directories specified by
$PSEUDO_PASSWD.  For opkg multilib installs $D is not always the same as
$IMAGE_ROOT, and the user might already be in the IMAGE_ROOT files,
causing a failure during rootfs population.

Fix this by ensuring the files pseudo looks at when doing useradd stuff
are the same ones that useradd.bbclass will be manipulating.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agobitbake.conf: pseudo fall back to last-resort passwd files
Peter A. Bigot [Sat, 1 Nov 2014 12:25:39 +0000 (07:25 -0500)]
bitbake.conf: pseudo fall back to last-resort passwd files

Recipe packaging for the target requires permissions that are consistent
with meta/files/fs-perms.txt which specifies certain user and group
names.  In the early parts of a target build base-passwd is not yet
available to provide the target /etc files used for user/group lookup.
Allow pseudo to fall-back to the last-resort files it installs if the
target ones aren't there yet.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agopseudo: provide fallback passwd and group files
Peter A. Bigot [Sat, 1 Nov 2014 11:48:03 +0000 (06:48 -0500)]
pseudo: provide fallback passwd and group files

Normally pseudo is built with --without-passwd-fallback, which requires
that somebody provide target passwd and group files.  Those come from
base-passwd in OE, but base-passwd cannot be built without first
invoking operations under pseudo that require getpw*/getgr*.

Provide the absolute minimum stub files, matching in content what will
eventually be on the target, that can be used in the cases where the
target files are not yet available.  The requirements for minimum stub
are the usernames and groups identified in meta/files/fs-perms.txt.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agopseudo: default --without-passwd-fallback
Peter A. Bigot [Fri, 31 Oct 2014 18:13:19 +0000 (13:13 -0500)]
pseudo: default --without-passwd-fallback

No good reason exists to fall back to the build host /etc files when
attempting to resolve user and group information.  Recipe dependencies
should be updated so the correct target files are available.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agoimage.bbclass: search both rootfs and native staging for passwd files
Peter A. Bigot [Sat, 15 Nov 2014 04:58:16 +0000 (22:58 -0600)]
image.bbclass: search both rootfs and native staging for passwd files

When pseudo is configured to disallow fallback to the build host
/etc/hosts and /etc/group, the selection of ${IMAGE_ROOT} for
PSEUDO_PASSWD is insufficient as the necessary files will not be
available until base-passwd has been installed and its pkg_postinst
script run.  Fall back to the ${STAGING_DIR_NATIVE} version of those
files until the rootfs versions are available.  (The native copies are
never modified by the build; the ones in ${STAGING_DIR_TARGET} are
updated and may contain settings not consistent with what would be
created by post-install useradd/groupadd commands invoked in the image
rootfs.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agopseudo: support multiple search directories in PSEUDO_PASSWD
Peter A. Bigot [Sun, 12 Oct 2014 21:58:52 +0000 (16:58 -0500)]
pseudo: support multiple search directories in PSEUDO_PASSWD

This makes it possible to use --without-passwd-fallback when building
images where the preferred passwd files are not available until after
installation has begun.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agopseudo: support --without-passwd-fallback configuration option
Peter A. Bigot [Sun, 12 Oct 2014 21:54:34 +0000 (16:54 -0500)]
pseudo: support --without-passwd-fallback configuration option

A bug in pseudo 1.6.2 results in lock failures if this option is
present.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
10 years agooeqa/runtime: Added some new filters for the log parser Including custom filters...
Lucian Musat [Thu, 20 Nov 2014 12:21:18 +0000 (14:21 +0200)]
oeqa/runtime: Added some new filters for the log parser Including custom filters for edgerouter, minnow and jasperforest.

Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoprocps: install symlink under /etc/sysctl.d in case of systemd
Chen Qi [Sun, 9 Nov 2014 07:03:41 +0000 (15:03 +0800)]
procps: install symlink under /etc/sysctl.d in case of systemd

Install /etc/sysctl.d/99-sysctl.conf symlink in case of systemd so
that /etc/sysctl.conf is taken into consideration by systemd-sysctl.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoelfutils: upgrade to 0.160
Hongxu Jia [Fri, 14 Nov 2014 09:29:03 +0000 (17:29 +0800)]
elfutils: upgrade to 0.160

- Upgrade elfutils to 0.160

- Move 0.148 patches from elfutils to elfutils-0.148

- Drop 0.158 patches that got from debain, so far debian
  doesn't provide patches for 0.160 (the latest is 0.159)

- Move fixheadercheck.patch from 0.159 to 0.160

- We choose to use 0.159 patches from debian for the current 0.160
  which located in elfutils-0.160
  1) Rebase the following patches from 0.159 to 0.160
     hppa_backend.diff
     arm_backend.diff
     mips_backend.diff
     m68k_backend.diff
     arm_func_value.patch
     arm_unwind_ret_mask.patch

  2) Rebase redhat-portability.diff according to
     commit 52a6d20519870103134166d91e22d21fd736195d
     Author: Roxana Ciobanu <roxana.ciobanu@intel.com>
     Date:   Tue Jul 1 17:17:00 2014 +0300
       elfutils/elfutils-native: Fix patching generated files

  3) Drop the following patches which have already beem merged to 0.160
     arm_unsupported.patch
     arm_syscall.patch
     unaligned.patch
     aarch64-run-native-test-fix.patch

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agobind: clean host path in isc-config.sh
Shiqun Lin [Tue, 21 Oct 2014 08:12:51 +0000 (04:12 -0400)]
bind: clean host path in isc-config.sh

* /usr/bin/isc-config.sh
* /usr/bin/bind9-config - hardlink to isc-config.sh

Signed-off-by: Shiqun Lin <Shiqun.Lin@windriver.com>
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
10 years agoe2fsprogs: clean host path in compile_et, mk_cmds
Shiqun Lin [Tue, 21 Oct 2014 07:25:29 +0000 (03:25 -0400)]
e2fsprogs: clean host path in compile_et, mk_cmds

* /usr/bin/compile_et
* /usr/bin/mk_cmds

Signed-off-by: Shiqun Lin <Shiqun.Lin@windriver.com>
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
10 years agobash: clean host path in bashbug
Shiqun Lin [Tue, 21 Oct 2014 07:53:15 +0000 (03:53 -0400)]
bash: clean host path in bashbug

* /usr/bin/bashbug

Signed-off-by: Shiqun Lin <Shiqun.Lin@windriver.com>
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
10 years agogst-ffmpeg: fixes for CVE-2014-8548 and CVE-2014-8541
Roy Li [Wed, 19 Nov 2014 03:02:11 +0000 (21:02 -0600)]
gst-ffmpeg: fixes for CVE-2014-8548 and CVE-2014-8541

Issue: LIN7-1755
Issue: LIN7-1739

http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-8541

libavcodec/mjpegdec.c in FFmpeg before 2.4.2 considers only dimension
differences, and not bits-per-pixel differences, when determining whether an
image size has changed, which allows remote attackers to cause a denial of
service (out-of-bounds access) or possibly have unspecified other impact via
crafted MJPEG data.

http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-8548

Off-by-one error in libavcodec/smc.c in FFmpeg before 2.4.2 allows remote
attackers to cause a denial of service (out-of-bounds access) or possibly
have unspecified other impact via crafted Quicktime Graphics (aka SMC) video
data.

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoopkg-utils: Update SRCREV
Paul Barker [Sat, 15 Nov 2014 20:15:43 +0000 (20:15 +0000)]
opkg-utils: Update SRCREV

A bug in the opkg-show-deps script is fixed.

Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoopkg: Update patch status
Paul Barker [Sat, 15 Nov 2014 20:15:42 +0000 (20:15 +0000)]
opkg: Update patch status

Both patches against opkg have been accepted upstream with modifications and
will be included in the v0.3.0 release.

Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoopkg: Upgrade to v0.2.4
Paul Barker [Sat, 15 Nov 2014 20:15:41 +0000 (20:15 +0000)]
opkg: Upgrade to v0.2.4

The patches for opkg have been rebased using git so that they apply cleanly onto
the new release.

Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agolibpam: Stop a QA WARNING when building multlib version
Yue Tao [Wed, 19 Nov 2014 02:41:12 +0000 (20:41 -0600)]
libpam: Stop a QA WARNING when building multlib version

WARNING: QA Issue: lib64-libpam: Files/directories were installed but
not shipped
  /usr/sbin/pam_console_apply

Because the package name is changed to mlprefix-pam-plugin-console. The file
must be appended to that item.

Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agopython3: several fixes for cross compiling
Jackie Huang [Tue, 18 Nov 2014 08:35:33 +0000 (03:35 -0500)]
python3: several fixes for cross compiling

* Add a patch to use CROSSPYTHONPATH as PYTHONPATH for
  PYTHON_FOR_BUILD, otherwise CROSSPYTHONPATH is never used,
  and it use the path in target builds to find libraries.

* Add a patch to avoid finding host headers and libs

* Fix a typo: s/python-native3/python3-native/

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agocronie: Added default crontab
Alejandro Hernandez [Wed, 19 Nov 2014 21:29:53 +0000 (15:29 -0600)]
cronie: Added default crontab

Added default configuration to crontab, for instructive pruposes

Added /etc/crontab to CONFFILES to avoid overwriting if updating via PMS

[YOCTO 6644]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agognome-desktop: removed gnome-desktop recipe
Alejandro Hernandez [Fri, 14 Nov 2014 22:30:46 +0000 (16:30 -0600)]
gnome-desktop: removed gnome-desktop recipe

It is already in meta-gnome and also unused by oe-core.

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
10 years agognome-common: Upgrade to 3.14.0
Alejandro Hernandez [Fri, 14 Nov 2014 21:37:52 +0000 (15:37 -0600)]
gnome-common: Upgrade to 3.14.0

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
10 years agocronie: Upgrade to 1.4.12
Alejandro Hernandez [Tue, 11 Nov 2014 23:57:43 +0000 (17:57 -0600)]
cronie: Upgrade to 1.4.12

Fixed license BSD, it should've been BSD-3 & BSD-2

Added license GPLv2+ according to upstream

Patch fix-out-of-tree-build removed; already on upstream.

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
10 years agonfs-utils: Upgrade to 1.3.1
Alejandro Hernandez [Wed, 12 Nov 2014 18:42:35 +0000 (12:42 -0600)]
nfs-utils: Upgrade to 1.3.1

Removed: fix-a-Gcc-undefined-behavior.patch - Upstream

Removed: 0001-statd-fixed-the-with-statdpath-flag.patch - Upstream

Removed: fix-the-start-statd.patch - Different solution on upstream

Removed: nfs-utils-1.0.6-uclibc.patch - Different solution on upstream

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
10 years agoiproute2: upgrade to 3.17.0
Cristian Iorga [Mon, 17 Nov 2014 19:29:23 +0000 (21:29 +0200)]
iproute2: upgrade to 3.17.0

0001-ip-link-Remove-unnecessary-device-checking.patch removed,
included upstream.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
10 years agolibpcap: upgrade to 1.6.2
Cristian Iorga [Mon, 17 Nov 2014 17:54:35 +0000 (19:54 +0200)]
libpcap: upgrade to 1.6.2

- Bug fixes.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
10 years agonetbase: upgrade to 5.3
Cristian Iorga [Mon, 17 Nov 2014 17:32:27 +0000 (19:32 +0200)]
netbase: upgrade to 5.3

- switched to tar.xz archive.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
10 years agoserf: 1.3.6 -> 1.3.8
Wenzong Fan [Mon, 17 Nov 2014 08:32:00 +0000 (03:32 -0500)]
serf: 1.3.6 -> 1.3.8

Release changes:

Serf 1.3.8 [2014-10-20, from /tags/1.3.8, rxxxx]
  Fix issue #152: CRC calculation error for gzipped http reponses > 4GB.
  Fix issue #153: SSPI CredHandle not freed when APR pool is destroyed.
  Fix issue #154: Disable SSLv2 and SSLv3 as both or broken.

Serf 1.3.7 [2014-08-11, from /tags/1.3.7, r2411]
  Handle NUL bytes in fields of an X.509 certificate. (r2393, r2399)
  - CVE-2014-3504: (Closes: #757965)

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
10 years agoperl: fix PERL5LIB settings
Wolfgang Denk [Wed, 5 Nov 2014 19:29:51 +0000 (20:29 +0100)]
perl: fix PERL5LIB settings

The PERL5LIB settings in the perl wrapper script did not include the
"site_perl" or "vendor_perl" directories, which caused some errors.

See https://bugzilla.yoctoproject.org/show_bug.cgi?id=6890

Signed-off-by: Wolfgang Denk <wd@denx.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agodtc: old SRC_URI died, changing to new working one
Krzysztof Sywula [Thu, 20 Nov 2014 19:37:42 +0000 (19:37 +0000)]
dtc: old SRC_URI died, changing to new working one

Signed-off-by: Krzysztof Sywula <krzysztof.m.sywula@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agotoaster: add toaster layer configuration files
Alexandru DAMIAN [Thu, 20 Nov 2014 16:00:10 +0000 (16:00 +0000)]
toaster: add toaster layer configuration files

In managed mode, Toaster creates project configurations
based on the layers that are being checked-out on disk.

The defaults are set through a JSON configuration
file that contains layer-specific specific information.

This patch adds toasterconf.json files for the oe core layer,
that make Toaster work with a standalone OpenEmbedded-Core checkout.

The toasterconf.json files describe basic configuration for Toaster
projects, including default layers, default configuration variable values,
toaster-compatible branches, and the layerindex URL
where the base layer and compatible layers.

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agogtk+: drop part of patch adding useless file
Paul Eggleton [Wed, 19 Nov 2014 08:53:23 +0000 (08:53 +0000)]
gtk+: drop part of patch adding useless file

This patch shouldn't be adding a .orig file. Aside from not being
necessary, attempting to apply the patch with patch rather than quilt
results in failure.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agoxmodmap: drop already applied patch
Paul Eggleton [Wed, 19 Nov 2014 08:53:22 +0000 (08:53 +0000)]
xmodmap: drop already applied patch

This patch was part of the 1.0.8 release.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agocmake: drop already applied patches
Paul Eggleton [Wed, 19 Nov 2014 08:53:21 +0000 (08:53 +0000)]
cmake: drop already applied patches

These patches were part of the 2.8.11 release.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agoopenssh: drop already applied patch
Paul Eggleton [Wed, 19 Nov 2014 08:53:20 +0000 (08:53 +0000)]
openssh: drop already applied patch

This patch was part of the 6.6p1 release.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agocups: remove unrecognised option
Ross Burton [Mon, 17 Nov 2014 21:39:09 +0000 (21:39 +0000)]
cups: remove unrecognised option

--disable-openssl was removed in 2.0, so don't pass it to configure.

Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agospdx.bbclass: improved error handling and code cleanup
Tobias Olausson [Thu, 13 Nov 2014 14:49:52 +0000 (15:49 +0100)]
spdx.bbclass: improved error handling and code cleanup

The spdx task now writes a meaningful error message in case of error in
communication with the FOSSology server. Also the coding style is now more
consistent and some unneccessary calls/functions are removed.

Signed-off-by: Tobias Olausson <tobias.olausson@pelagicore.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agopostinst-intercept: rename recipe for nativesdk only
Hongxu Jia [Thu, 13 Nov 2014 01:54:14 +0000 (09:54 +0800)]
postinst-intercept: rename recipe for nativesdk only

The recipe postinst-intercept is only used for nativesdk, so we rename
it from postinst-intercept to nativesdk-postinst-intercept.

It avoids unnecessary build of postinst-intercept.

[YOCTO #6937]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agotoolchain-shar-template.sh: fix the text files in the top dir
Robert Yang [Thu, 13 Nov 2014 14:34:18 +0000 (06:34 -0800)]
toolchain-shar-template.sh: fix the text files in the top dir

It only fixed the text files in native_sysroot, but there might be some
files in the top installed dir (whose var name is target_sdk_dir in the
code) which are also needed to be fixed.

It used "find $native_sysroot", now also "find $target_sdk_dir -maxdepth 1",
and split the long line into small ones.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoshadow-securetty: add ttyAM[0-3] serial ports
Javier Viguera [Thu, 13 Nov 2014 15:48:56 +0000 (16:48 +0100)]
shadow-securetty: add ttyAM[0-3] serial ports

Old version of the ARM AMBA serial port driver creates those device nodes.

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agobind: use PACKAGE_BEFORE_PN instead of PACKAGES_prepend
Ross Burton [Thu, 13 Nov 2014 14:08:20 +0000 (14:08 +0000)]
bind: use PACKAGE_BEFORE_PN instead of PACKAGES_prepend

Appending or prepending to PACKAGES breaks when the package is built natively,
so use PACKAGE_BEFORE_PN instead.

Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agogcc-4.9: fix the compile failure of 'defaults.h' not found
Hongxu Jia [Thu, 13 Nov 2014 10:05:30 +0000 (18:05 +0800)]
gcc-4.9: fix the compile failure of 'defaults.h' not found

While compiling gcc-crosssdk-initial-x86_64 on some host, there is
occasionally failure that test the existance of default.h doesn't
work.
...
| tmp/work-shared/gcc-4.9.1-r0/gcc-4.9.1/gcc/calls.c:1240:
error: 'STACK_CHECK_MAX_VAR_SIZE' was not declared in this scope
...

The reason is tm_include_list='** defaults.h' rather than
tm_include_list='** ./defaults.h'

So we add the test condition for this situation.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoethtool: Upgrade to 3.16
Changhyeok Bae [Thu, 13 Nov 2014 01:22:19 +0000 (10:22 +0900)]
ethtool: Upgrade to 3.16

Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoparted: upgrade to 3.2
Hongxu Jia [Thu, 13 Nov 2014 04:50:58 +0000 (12:50 +0800)]
parted: upgrade to 3.2

Drop fix-git-version-gen.patch, fix-dvh-overflows.patch and
fix-deprecated-readline.patch, because the parted 3.2 have
merged them.

Add fix-compile-failure-while-dis.patch to fix compile failure

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agobyacc: Upgrade to 20141006
Chong Lu [Thu, 13 Nov 2014 08:56:15 +0000 (16:56 +0800)]
byacc: Upgrade to 20141006

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agotcl: Upgrade to 8.6.3
Chong Lu [Thu, 13 Nov 2014 08:56:14 +0000 (16:56 +0800)]
tcl: Upgrade to 8.6.3

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agolsb: update RDEPENDS for broken-out util-linux-getopt
Richard Tollerton [Wed, 5 Nov 2014 21:26:17 +0000 (15:26 -0600)]
lsb: update RDEPENDS for broken-out util-linux-getopt

lsb currently depends on util-linux solely for getopt, but that has now
been broken out into util-linux-getopt. Update RDEPENDS accordingly.

Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Acked-by: Ken Sharp <ken.sharp@ni.com>
Acked-by: Ben Shelton <ben.shelton@ni.com
Acked-by: Brad Mouring <brad.mouring@ni.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agodefault-providers.inc: define VIRTUAL-RUNTIME_getopt
Richard Tollerton [Wed, 5 Nov 2014 21:26:16 +0000 (15:26 -0600)]
default-providers.inc: define VIRTUAL-RUNTIME_getopt

getopt can be provided by either util-linux or busybox. Allow the
distro to control which implementation is used, and default it to
util-linux.

Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Acked-by: Ken Sharp <ken.sharp@ni.com>
Acked-by: Ben Shelton <ben.shelton@ni.com
Acked-by: Brad Mouring <brad.mouring@ni.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoutil-linux: break out util-linux-getopt
Richard Tollerton [Wed, 5 Nov 2014 21:26:15 +0000 (15:26 -0600)]
util-linux: break out util-linux-getopt

The getopt binary itself is only a few kb, while the util-linux package
is much larger. The lsb package is very small and depends only on
getopt. Break it out into util-linux-getopt in order to reduce the disk
requirements of lsb on systems that don't otherwise bring in util-linux.

Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Acked-by: Ken Sharp <ken.sharp@ni.com>
Acked-by: Ben Shelton <ben.shelton@ni.com
Acked-by: Brad Mouring <brad.mouring@ni.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agorpm: fix the rpm addsign function
Roy.Li [Wed, 12 Nov 2014 01:54:56 +0000 (09:54 +0800)]
rpm: fix the rpm addsign function

Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agopython: Fix CVE-2014-7185
Wenzong Fan [Wed, 12 Nov 2014 08:25:48 +0000 (03:25 -0500)]
python: Fix CVE-2014-7185

Integer overflow in bufferobject.c in Python before 2.7.8 allows
context-dependent attackers to obtain sensitive information from
process memory via a large size and offset in a "buffer" function.

This back-ported patch fixes CVE-2014-7185

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoghostscript: upgrade to 9.15
Hongxu Jia [Wed, 12 Nov 2014 09:08:55 +0000 (17:08 +0800)]
ghostscript: upgrade to 9.15

Rebase cups-no-gcrypt.patch and ghostscript-9.02-parallel-make.patch to 9.15

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agosystemd-serialgetty: Disable the carrier detect requirement for serial consoles
Otavio Salvador [Wed, 12 Nov 2014 10:33:26 +0000 (08:33 -0200)]
systemd-serialgetty: Disable the carrier detect requirement for serial consoles

This aligns the params of getty with the ones used in Debian. From the
getty(8) manpage:

,----[ getty(8) manpage ]
|  -L, --local-line
|
|    Force the line to be a local line with no need for carrier
|    detect. This can be useful when you have a locally attached
|    terminal where the serial line does not set the carrier detect
|    signal.
`----

Reported-by: Craig McQueen <craig.mcqueen@beamcommunications.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agosysvinit-inittab: Disable the carrier detect requirement for serial consoles
Otavio Salvador [Wed, 12 Nov 2014 10:33:25 +0000 (08:33 -0200)]
sysvinit-inittab: Disable the carrier detect requirement for serial consoles

This aligns the params of getty with the ones used in Debian. From the
getty(8) manpage:

,----[ getty(8) manpage ]
|  -L, --local-line
|
|    Force the line to be a local line with no need for carrier
|   detect. This can be useful when you have a locally attached
|   terminal where the serial line does not set the carrier detect
|   signal.
`----

Reported-by: Craig McQueen <craig.mcqueen@beamcommunications.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Tested-by: Craig McQueen <craig.mcqueen@beamcommunications.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agotoolchain-scripts.bbclass: Export KCFLAGS to ensure sysroot is provided
Otavio Salvador [Wed, 12 Nov 2014 10:33:24 +0000 (08:33 -0200)]
toolchain-scripts.bbclass: Export KCFLAGS to ensure sysroot is provided

When building the U-Boot the lack of a proper sysroot can trigger
following error:

,----
| arm-poky-linux-gnueabi-ld.bfd: cannot find -lgcc
| make[2]: *** [examples/standalone/hello_world] Error 1
| make[1]: *** [examples/standalone] Error 2
| make: *** [examples] Error 2
`----

Guillaume Fournier has posted a very complete analysis of the
problem[1].

1. https://lists.yoctoproject.org/pipermail/meta-freescale/2014-November/011270.html

The use of KCFLAGS makes the build of U-Boot work out of box, now that
it uses the Linux kernel build system.

Reported-by: Guillaume Fournier <gfournier@brioconcept.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agoxkeyboard-config: Inherit gettext
Andrei Gherzan [Fri, 7 Nov 2014 16:23:44 +0000 (17:23 +0100)]
xkeyboard-config: Inherit gettext

In a GPLv3-free build we have two different versions of gettext in sysroot due
to GPLv3 restrictions. In this case we need gettext-native too so we can have
the needed macros and avoid errors like:
"error: possibly undefined macro: AM_GNU_GETTEXT"

The needed dependency is added by gettext class which is prefered because it
takes care of NLS flags too.

Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agobluez5: fix QA error from configure option
Peter A. Bigot [Mon, 10 Nov 2014 21:12:59 +0000 (15:12 -0600)]
bluez5: fix QA error from configure option

The systemdunitdir option was split into systemdsystemunitdir and
systemduserunitdir before bluez5 was ever released, so this produced a
QA error and was ignored.  There appears to be no reason to override the
inferred default, so replace it with an explicit --enable-systemd.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agolinux-firmware: upgrade to git rev 0e5f637
Cristian Iorga [Tue, 11 Nov 2014 08:46:25 +0000 (10:46 +0200)]
linux-firmware: upgrade to git rev 0e5f637

- Intel iwlwifi firmware copyright years changed.
- Cleanup and updates for Intel wireless firmware.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agobluez5: upgrade to 5.25
Cristian Iorga [Tue, 11 Nov 2014 08:46:24 +0000 (10:46 +0200)]
bluez5: upgrade to 5.25

- Cleanups and minor fixes;
- Phonebook Access Profile 1.2 and Message Access Profile 1.2 features and improvements;
- Various GATT related fixes;
- Fix for a race condition which could occasionally cause LE connection/pairing failures.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agosbc: upgrade to 1.3
Cristian Iorga [Tue, 11 Nov 2014 08:46:23 +0000 (10:46 +0200)]
sbc: upgrade to 1.3

- Frame length calculation for dual-channel mode operation bug fixed;
- Prevents overflow of an internal frame length variable.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agowpa-supplicant: upgrade to 2.3
Cristian Iorga [Tue, 11 Nov 2014 08:46:22 +0000 (10:46 +0200)]
wpa-supplicant: upgrade to 2.3

- P2P WiFi improvements;
- Bug fixes.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 years agodocbook-xsl-stylesheets: fix do_configure typo
Ross Burton [Wed, 12 Nov 2014 14:08:41 +0000 (14:08 +0000)]
docbook-xsl-stylesheets: fix do_configure typo

do_configure was incorrectly spelt do_configre, which with recent changes to
base.bbclass mean make clean was invoked, which doesn't exist.

Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agotzdata: update to 2014j
Armin Kuster [Tue, 11 Nov 2014 15:10:35 +0000 (07:10 -0800)]
tzdata: update to 2014j

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agotzcode: update to 2014j
Armin Kuster [Tue, 11 Nov 2014 15:10:34 +0000 (07:10 -0800)]
tzcode: update to 2014j

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
10 years agostrace: add libunwind dependency
Chong Lu [Wed, 12 Nov 2014 02:09:52 +0000 (10:09 +0800)]
strace: add libunwind dependency

Add libunwind package dependency to solve following error:

configure: error: failed to find libunwind-ptrace.h

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>