]> code.ossystems Code Review - openembedded-core.git/log
openembedded-core.git
9 years agowic: Add parameter 'uuid' to Image.add_partition method
Ed Bartosh [Fri, 5 Jun 2015 07:17:12 +0000 (10:17 +0300)]
wic: Add parameter 'uuid' to Image.add_partition method

With this parameter it's possible to pass generated UUID
into Image class to set it for partition when it's created.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Refactored getting root device name
Ed Bartosh [Fri, 5 Jun 2015 07:17:11 +0000 (10:17 +0300)]
wic: Refactored getting root device name

Replaced DirectImageCreator._get_boot_config private method
with a 'rootdev' property.
Simplified the code and API.
Used 'uuid' property instead of incorrectly used 'part_type'.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Fix format string
Ed Bartosh [Fri, 5 Jun 2015 07:17:10 +0000 (10:17 +0300)]
wic: Fix format string

wic crashes with "TypeError: %d format: a number is required, not str"
Due to incorrect format used for Wic_PartData.extra_size attribute.
Using %s instead of %d should fix the crash.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Generate random uuid for partition
Ed Bartosh [Fri, 5 Jun 2015 07:17:09 +0000 (10:17 +0300)]
wic: Generate random uuid for partition

'uuid' attribute of partition object is set to generated uuid
when --use-uuid option is used for partition in .wks file.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Add --use-uuid partition option
Ed Bartosh [Fri, 5 Jun 2015 07:17:08 +0000 (10:17 +0300)]
wic: Add --use-uuid partition option

Added --use-uuid option to the configuration of wks parser.
Processing of this option will be implemented in the following
commits.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: pylinted partitionedfs.py
Ed Bartosh [Fri, 5 Jun 2015 06:13:09 +0000 (09:13 +0300)]
wic: pylinted partitionedfs.py

Fixed some pylint findings in partitionedfs.py

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: replaced __run_parted with exec_native_cmd
Ed Bartosh [Fri, 5 Jun 2015 06:13:08 +0000 (09:13 +0300)]
wic: replaced __run_parted with exec_native_cmd

There is no need for yet another wrapper around exec_native_cmd.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: move checks to exec_native_cmd
Ed Bartosh [Fri, 5 Jun 2015 06:13:07 +0000 (09:13 +0300)]
wic: move checks to exec_native_cmd

Checked for return code and output of native commands
inside exec_native_cmd.

Removed similar code from a lot of places where
exec_native_cmd is called.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: removed exec_cmd_quiet and exec_native_cmd_quiet
Ed Bartosh [Fri, 5 Jun 2015 06:13:06 +0000 (09:13 +0300)]
wic: removed exec_cmd_quiet and exec_native_cmd_quiet

These functions are not used anywhere.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Test creation of directdisk image with GPT table
Ed Bartosh [Tue, 2 Jun 2015 14:02:05 +0000 (17:02 +0300)]
wic: Test creation of directdisk image with GPT table

Added new wic testcase to the sute - creation of directdisk-gpt
image.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: create directdisk-gpt.wks
Ed Bartosh [Tue, 2 Jun 2015 14:02:04 +0000 (17:02 +0300)]
wic: create directdisk-gpt.wks

directdisk-gpt is the same as directdisk with only one difference:
it uses GPT partition table.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
 create mode 100644 scripts/lib/image/canned-wks/directdisk-gpt.wks
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Make _ptable_format public
Ed Bartosh [Tue, 2 Jun 2015 14:02:03 +0000 (17:02 +0300)]
wic: Make _ptable_format public

Names with one leasding underscore considered protected in Python.
_ptable_format is accessed outside of its class.
Made it public by removing underscore.

This pylint warning should be fixed now:
Access to a protected member _ptable_format of a client class

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Use gptmbr.bin MBR for gpt partitions
Ed Bartosh [Tue, 2 Jun 2015 14:02:02 +0000 (17:02 +0300)]
wic: Use gptmbr.bin MBR for gpt partitions

Used proper syslinux MBR gptmbr.bin for GPT partitons.
Added check for unsupported partition formats.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: Add gpt to the list of supported partition table formats
Ed Bartosh [Tue, 2 Jun 2015 14:02:01 +0000 (17:02 +0300)]
wic: Add gpt to the list of supported partition table formats

Only msdos partition table format was supported by wic source
plugins.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: check if part_type is set only for msdos partition table
Ed Bartosh [Tue, 2 Jun 2015 14:02:00 +0000 (17:02 +0300)]
wic: check if part_type is set only for msdos partition table

Specifying partition type(GUID) makes sense for gpt partition table.

Current code checks if part-type is specified and throws exception
if it is. This makes sense to do only for msdos partition table.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agowic: set legacy_boot flag for gpt partitions
Ed Bartosh [Tue, 2 Jun 2015 14:01:59 +0000 (17:01 +0300)]
wic: set legacy_boot flag for gpt partitions

This flag is used to tell special purpose software that
the GPT partition may be bootable.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agopython-smartpm: change "already installed" warnings into info messages
Paul Eggleton [Mon, 8 Jun 2015 10:13:50 +0000 (11:13 +0100)]
python-smartpm: change "already installed" warnings into info messages

It's possible to trigger "already installed" messages during normal
usage if you explicitly install something in the image through
IMAGE_INSTALL that has a dependency on some -dev packages and also have
dev-pkgs in IMAGE_FEATURES. Since we now check the do_rootfs log for
warnings, these are reported as warnings at the build system level.
This situation should not trigger warnings, nor is it really cause for
concern under any other circumstance if the user asks smart to install
something that's already installed, so make it an info message rather
than a warning.

Fixes [YOCTO #7840].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
9 years agolib/oe/rootfs: tidy up log warning reporting
Paul Eggleton [Mon, 8 Jun 2015 10:10:37 +0000 (11:10 +0100)]
lib/oe/rootfs: tidy up log warning reporting

* bb.warn() should only be called once per warning - UIs such as Toaster
  assume that this is the case, so adjust the output accordingly. (It's
  tricky here because we have to include "log_check" on every line or
  we'll end up looping forever as the log checking code's own messages
  retrigger the log check, sigh...)
* Iterating over a file already splits by line, there's no need to do it
  manually.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
9 years agoinsane: errors out on binaries installed by allarch-inherit recipes
Cristian Iorga [Mon, 8 Jun 2015 10:53:07 +0000 (13:53 +0300)]
insane: errors out on binaries installed by allarch-inherit recipes

If a prebuilt binary is installed via a recipe that
inherits allarch, an odd-looking traceback is thrown out.
Fixed by implementing a proper check and outputting an
error message that clarifies the issue.

Fixes [YOCTO #7662].

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agosysvinit: Only enable recipe in builds where its applicable
Richard Purdie [Mon, 8 Jun 2015 22:39:28 +0000 (23:39 +0100)]
sysvinit: Only enable recipe in builds where its applicable

Similarly to systemd, only enable the recipe in builds where
sysvinit is configured in DISTRO_FEATURES. This allows the new
cleanup mechanism to handle it correctly in existing builds.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agosanity.conf: Bump minimum bitbake version to 1.27.1 for sstate change
Richard Purdie [Tue, 9 Jun 2015 12:44:52 +0000 (13:44 +0100)]
sanity.conf: Bump minimum bitbake version to 1.27.1 for sstate change

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agosstate: Add eventhandler which cleans up stale recipe data
Richard Purdie [Mon, 8 Jun 2015 22:28:12 +0000 (23:28 +0100)]
sstate: Add eventhandler which cleans up stale recipe data

"Incremental builds do not work well when renaming recipes or changing
architecture" is a long standing issue which causes people considerable
pain. We've struggled for a long time to come up with a way to
generically address the problem.

There are additional issues where removal of a layer caused data to
continue to exist and additionally, changing DISTRO_FEATURES also caused
problems in an existing TMPDIR.

This patch attempts to address this by adding a mapping between stamp
files and manifests. After parsing we can easily tell which stamp files
are still reachable, if any manifest has a stamp that can no longer be
reached, we can remove it. Since this code ties this to the sstate
architecture list, it will not remove data from other than the current
MACHINE (and its active architectures). It does not clean the sstate
cache so if another build activates something which was cleaned, it
should reinstall from sstate.

We can also go one step further, depending on the setting of
SSTATE_PRUNE_OBSOLETEWORKDIR, workdirs which are no longer active can
also be removed. This avoids the buildup of many old copies of data in
WORKDIR for example when versions are upgraded.

The one thing which may surprise people with this change is if you
remove a layer, data added by that layer will be "uninstalled" before
the next build continues. I believe this is a feature and a good thing
to do though.

This code is safe with existing builds. If something isn't in the new
index it simply isn't removed. Since changes to the sstate code trigger
a rebuild, after this merges, we can assume the code will start to
detect changes from that point onwards.

[YOCTO #4102]

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agox264: use x86 over-ride instead of i586
Andre McCurdy [Thu, 4 Jun 2015 19:24:49 +0000 (12:24 -0700)]
x264: use x86 over-ride instead of i586

Support i686 without needing to duplicate the i586 over-ride.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agolame: use x86 over-ride instead of i586
Andre McCurdy [Thu, 4 Jun 2015 19:24:48 +0000 (12:24 -0700)]
lame: use x86 over-ride instead of i586

Support i686 without needing to duplicate the i586 over-ride.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agogstreamer1.0-plugins-base.inc: use x86 over-ride instead of i586
Andre McCurdy [Thu, 4 Jun 2015 19:24:47 +0000 (12:24 -0700)]
gstreamer1.0-plugins-base.inc: use x86 over-ride instead of i586

Support i686 without needing to duplicate the i586 over-ride.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agopython-numpy: use x86 over-ride instead of i586
Andre McCurdy [Thu, 4 Jun 2015 19:24:46 +0000 (12:24 -0700)]
python-numpy: use x86 over-ride instead of i586

Support i686 without needing to duplicate the i586 over-ride.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoscripts/jhbuild: remove
Ross Burton [Fri, 5 Jun 2015 10:54:15 +0000 (11:54 +0100)]
scripts/jhbuild: remove

Remove the jhbuild2oe script and the copies of very old GNOME modulesets as
nobody has used them for a long time.

Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agolibsndfile: Security Advisory - libsndfile - CVE-2014-9496
Yue Tao [Fri, 5 Jun 2015 07:48:15 +0000 (15:48 +0800)]
libsndfile: Security Advisory - libsndfile - CVE-2014-9496

Backport two commits from libsndfile upstream to fix a segfault and
two potential buffer overflows.

Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoautogen: redirect the log file to build dir
Roy Li [Fri, 5 Jun 2015 03:03:55 +0000 (11:03 +0800)]
autogen: redirect the log file to build dir

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agodistrodata: Use Python CSV instead of did by hand
Aníbal Limón [Thu, 4 Jun 2015 20:43:51 +0000 (15:43 -0500)]
distrodata: Use Python CSV instead of did by hand

Fix CSV generation in distrodata class using Python CSV
module before it some errors happen when read due to
incorrect quoting/delimiters.

[YOCTO #7777]

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agodistrodata: checkpkg make usage of oe.recipeutils.get_recipe_upstream_version
Aníbal Limón [Tue, 2 Jun 2015 16:51:19 +0000 (11:51 -0500)]
distrodata: checkpkg make usage of oe.recipeutils.get_recipe_upstream_version

Now get_recipe_upstream_version function exists in oe.recipeutils module
to avoid duplicate code make usage of it.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
9 years agodistrodata: Remove unnecessary include of package_regex.inc
Aníbal Limón [Tue, 2 Jun 2015 16:48:02 +0000 (11:48 -0500)]
distrodata: Remove unnecessary include of package_regex.inc

This causes a warning when follow documentation to use distrodata
class that points to include,

include conf/distro/include/distro_alias.inc
include conf/distro/include/recipe_color.inc
include conf/distro/include/maintainers.inc
include conf/distro/include/upstream_tracking.inc
include conf/distro/include/package_regex.inc
INHERIT+= "distrodata"

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
9 years agorecipeutils: Improve get_recipe_pv_without_srcpv function
Aníbal Limón [Mon, 1 Jun 2015 21:04:29 +0000 (16:04 -0500)]
recipeutils: Improve get_recipe_pv_without_srcpv function

Use pv instead of rd this make the function more generic and
avoid copy recipe data.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
9 years agoxkeyboard-config: Upgrade 2.14 -> 2.15
Jussi Kukkonen [Tue, 2 Jun 2015 08:33:31 +0000 (11:33 +0300)]
xkeyboard-config: Upgrade 2.14 -> 2.15

Drop what remains of the patch the removed some GPLv3 content: both
eu and ph layout licenses have been corrected.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agoxf86-video-vmware: Upgrade 13.0.2 -> 13.1.0
Jussi Kukkonen [Thu, 21 May 2015 10:51:59 +0000 (13:51 +0300)]
xf86-video-vmware: Upgrade 13.0.2 -> 13.1.0

Remove one upstreamed patch.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agoxf86-video-omap: Upgrade to 0.4.3
Jussi Kukkonen [Thu, 21 May 2015 10:40:08 +0000 (13:40 +0300)]
xf86-video-omap: Upgrade to 0.4.3

Use last release instead of slightly older git revision, drop the
upstreamed patch.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agoxf86-input-synaptics: Upgrade 1.8.1 -> 1.8.2
Jussi Kukkonen [Thu, 21 May 2015 10:25:28 +0000 (13:25 +0300)]
xf86-input-synaptics: Upgrade 1.8.1 -> 1.8.2

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agoxf86-input-keyboard: Upgrade 1.8.0 -> 1.8.1
Jussi Kukkonen [Thu, 21 May 2015 08:43:18 +0000 (11:43 +0300)]
xf86-input-keyboard: Upgrade 1.8.0 -> 1.8.1

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agoxf86-input-evdev: Upgrade 2.9.1 -> 2.9.2
Jussi Kukkonen [Thu, 21 May 2015 08:39:00 +0000 (11:39 +0300)]
xf86-input-evdev: Upgrade 2.9.1 -> 2.9.2

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agopython3-pip: Adds recipe for python3-pip
Alejandro Hernandez [Thu, 14 May 2015 16:57:23 +0000 (16:57 +0000)]
python3-pip: Adds recipe for python3-pip

PIP is installed by default since python 3.4, due to issues with the
autobuilders, its default installation had to be disabled, this creates
a recipe for it, it brings a lot of new dependencies so it is chosen not
to be installed by default along with python3-core.

[YOCTO #7762]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
9 years agopython3-distribute: Upgrade to python3-setuptools 15.2
Alejandro Hernandez [Thu, 14 May 2015 16:49:56 +0000 (16:49 +0000)]
python3-distribute: Upgrade to python3-setuptools 15.2

python3-distribute was merged back to python3-setuptools in 2013,
and it is no longer being maintained, this upgrade also provides
functionality that will be needed for python3-pip.

[YOCTO #7763]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
9 years agopython3-io: Fixes compilation of python3 ssl module
Alejandro Hernandez [Thu, 14 May 2015 16:43:24 +0000 (16:43 +0000)]
python3-io: Fixes compilation of python3 ssl module

During python3 compilation, the module ssl was being skippped due to
the fact that the compilation script couldnt find the required files,
this patch fixes setup.py so it looks for the files in the correct
directory, hence fixing its compilation and installation.

[YOCTO #7768]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
9 years agopython3: Fix distutils import error
Alejandro Hernandez [Thu, 14 May 2015 16:21:00 +0000 (16:21 +0000)]
python3: Fix distutils import error

The patch 12-distutils-prefix-is-inside-staging-area.patch is used
to fix problems when trying to get some environmental variables
but it is only necessary for python3-native, on python3-core it
causes an error when importing distutils since env variables of
the likes of HOST_SYS and such do not exist on target, this removes
the patch from python3-core so distutils can be imported correctly.

[YOCTO #7766]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
9 years agopython3: fix pyconfig.h installation on target
Alejandro Hernandez [Thu, 14 May 2015 16:13:40 +0000 (16:13 +0000)]
python3: fix pyconfig.h installation on target

The file pyconfig.h wasnt being deployed on target, causing an error
when importing some libraries that required it, this patch fixes
python3 manifest to include this file and fix the issue.

[YOCTO #7764]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
9 years agorpm: remove extra dev and dbg packages
Robert Yang [Thu, 4 Jun 2015 09:01:10 +0000 (02:01 -0700)]
rpm: remove extra dev and dbg packages

There should be only one dev and dbg package.

[YOCTO #7481]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agolsof: Remove LSOF_OS
Khem Raj [Wed, 3 Jun 2015 16:42:02 +0000 (09:42 -0700)]
lsof: Remove LSOF_OS

This is not needed since its target recipe and we always
need to pass 'linux' for OS

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agolibpam: Fix wrong crypt library detection
Khem Raj [Wed, 3 Jun 2015 16:42:01 +0000 (09:42 -0700)]
libpam: Fix wrong crypt library detection

Surfaced when building with musl This details are in patch headers
Enabel innetgr.patch for musl as well

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agosgmlspl-native: 1.03ii -> 1.1
Robert Yang [Wed, 3 Jun 2015 09:18:17 +0000 (02:18 -0700)]
sgmlspl-native: 1.03ii -> 1.1

* The old HOMEPAGE and SRC_URI are not available any more, use github to
  instead of.

* Remove combined.patch since part of them is already in the
  source (sgmlspl.pl), and part of them are not needed any more (the doc
  sgmlspl.1, there is a sgmlspl.sgml).

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agocmake: Whitespace fix
Moritz Blume [Wed, 3 Jun 2015 13:57:32 +0000 (15:57 +0200)]
cmake: Whitespace fix

Signed-off-by: Moritz Blume <moritz.blume@bmw-carit.de>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoalsa-tools: add dependency glib-2.0
Kai Kang [Thu, 4 Jun 2015 05:57:58 +0000 (13:57 +0800)]
alsa-tools: add dependency glib-2.0

Add dependency glib-2.0 for alsa-tools. It is required by new added
sub-component hdajacksensetest.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoalsa-plugins: enable alsa-plugins-pulseaudio-conf conditionally
Tanu Kaskinen [Wed, 3 Jun 2015 11:17:09 +0000 (14:17 +0300)]
alsa-plugins: enable alsa-plugins-pulseaudio-conf conditionally

If pulseaudio isn't enabled, the alsa-plugins-pulseaudio-conf package
is unnecessary. This change fixes these warnings, when pulseaudio
isn't enabled:

WARNING: QA Issue: alsa-plugins-pulseaudio-conf rdepends on
libasound-module-conf-pulse, but it isn't a build dependency?
[build-deps]
WARNING: QA Issue: alsa-plugins-pulseaudio-conf rdepends on
libasound-module-ctl-pulse, but it isn't a build dependency?
[build-deps]
WARNING: QA Issue: alsa-plugins-pulseaudio-conf rdepends on
libasound-module-pcm-pulse, but it isn't a build dependency?
[build-deps]

Reported-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Tanu Kaskinen <tanu.kaskinen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoqt4: upgrade to 4.8.7
Kai Kang [Tue, 2 Jun 2015 01:52:57 +0000 (09:52 +0800)]
qt4: upgrade to 4.8.7

Upgrade qt4 packages from version 4.8.6 to 4.8.7.

* remove arm64 related patches which are merged
* remove 0034-Fix-a-division-by-zero-when-processing-malformed-BMP.patch
  which is backported.
* update 0010-configure-Hack-to-not-use-the-pg_config-of-the-host-.patch
  and 0013-configure-add-crossarch-option.patch for new version
* remove useless variable INC_PR

Signed-off-by: Kai Kang <kai.kang@windriver.com>
9 years agoscripts/combo-layer: Fix exit codes and tty handling
Richard Purdie [Wed, 3 Jun 2015 16:44:27 +0000 (17:44 +0100)]
scripts/combo-layer: Fix exit codes and tty handling

If combo-layer is called from a non-interactive context we should exit
with a correct error code rather than try and drop to a shell.

This patch cleans up a few error case exit codes as well as
detecting and handling non-interactive usage.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agoxserver-xorg: always enable DRI2 by default
Ross Burton [Fri, 5 Jun 2015 10:29:48 +0000 (11:29 +0100)]
xserver-xorg: always enable DRI2 by default

DRI2 is more abstract than the original DRI and isn't tied to OpenGL or any
other rendering system, and as such is being used by more than OpenGL support in
xserver.  In particular, the new modesettings driver uses DRI2 to accelerate
drawing, so enable DRI2 by default.

This was spotted because the "nodistro" DISTRO doesn't enable OpenGL, so xserver
failed to build as dri2proto wasn't built.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agolinux-yocto: update beaglebone, mpc8315e and edgerouter to 3.19
Bruce Ashfield [Fri, 5 Jun 2015 04:13:54 +0000 (00:13 -0400)]
linux-yocto: update beaglebone, mpc8315e and edgerouter to 3.19

Bumping the linux-yocto SRCREVs to integrate fixes for the h/w reference
BSPs to the 3.19 kernel.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agodosfstools: Add recipe for v3.0.28
Sören Brinkmann [Tue, 2 Jun 2015 17:46:52 +0000 (10:46 -0700)]
dosfstools: Add recipe for v3.0.28

Add a recipe for building the latest (as of today) version of
dosfstools.

Signed-off-by: Sören Brinkmann <soeren.brinkmann@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoglib-2.0: 2.44.0 -> 2.44.1
Robert Yang [Tue, 2 Jun 2015 10:02:45 +0000 (03:02 -0700)]
glib-2.0: 2.44.0 -> 2.44.1

Removed 0001-GListModel-roll-back-use-of-type-redefinition.patch since
it is a backport patch.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agoethtool: 3.16 -> 4.0
Robert Yang [Tue, 2 Jun 2015 09:55:28 +0000 (02:55 -0700)]
ethtool: 3.16 -> 4.0

Removed ethtool-uint.patch since it is already in the source.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agodebianutils: 4.5 -> 4.5.1
Robert Yang [Tue, 2 Jun 2015 09:51:04 +0000 (02:51 -0700)]
debianutils: 4.5 -> 4.5.1

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agopython-nose: 1.2.1 -> 1.3.6
Robert Yang [Tue, 2 Jun 2015 09:19:36 +0000 (02:19 -0700)]
python-nose: 1.2.1 -> 1.3.6

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agopython-mako: 0.9.1 -> 1.0.1
Robert Yang [Tue, 2 Jun 2015 09:15:25 +0000 (02:15 -0700)]
python-mako: 0.9.1 -> 1.0.1

The LIC_FILES_CHKSUM was changed because the year changed: 2013 -> 2015,
the license are the same.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agoliberror-perl: 0.17023 -> 0.17024
Robert Yang [Tue, 2 Jun 2015 09:12:35 +0000 (02:12 -0700)]
liberror-perl: 0.17023 -> 0.17024

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agoxserver-xorg: Upgrade 1.16.3 -> 1.17.1 (OELAYOUT_ABI change)
Jussi Kukkonen [Thu, 7 May 2015 10:39:19 +0000 (13:39 +0300)]
xserver-xorg: Upgrade 1.16.3 -> 1.17.1 (OELAYOUT_ABI change)

* Increase OELAYOUT_ABI: this is required because the
  xf86-video-modesetting package moves from its own recipe to
  xserver-xorg and sanity check cannot handle that currently.
  The upgrade will delete old xf86-video-modesetting files from
  sysroots.
* Remove upstreamed xserver-xorg patches
* Remove xf86-video-modesetting recipe: the driver is now included in
  xserver-xorg recipe, which now produces the xf86-video-modesetting
  package. The package version changes from 0.9 to 1.17.1
* Update xserver-xorg license checksum: modesetting license
  info (another MIT one) has been added to the file

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9 years agodistutils.bbclass: consistency between error message and setup.py's command
Mario Domenech Goulart [Mon, 25 May 2015 18:44:44 +0000 (15:44 -0300)]
distutils.bbclass: consistency between error message and setup.py's command

setup.py was called with build as argument, but the error message
would report build_ext.

Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agolibav: upgrade to 9.18
Kai Kang [Tue, 26 May 2015 07:14:44 +0000 (15:14 +0800)]
libav: upgrade to 9.18

Upgrade libav from version 9.16 to 9.18. Remove unused var INC_PR and
backport patch to fix CVE-2014-9676.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agobtrfs-tools: 3.18.2 -> 4.0.1
Robert Yang [Mon, 1 Jun 2015 05:41:08 +0000 (22:41 -0700)]
btrfs-tools: 3.18.2 -> 4.0.1

* Updated fix-parallel.patch
* The 4.0.1 switched to autotools, but inherit autotools doesn't work:
  | make: *** No rule to make target `ctree.o', needed by `btrfs'.  Stop.

  so inherit autotools-brokensep

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoalsa-plugins: Include missing sys/select.h
Khem Raj [Fri, 29 May 2015 22:24:08 +0000 (15:24 -0700)]
alsa-plugins: Include missing sys/select.h

This is exposed by musl where indirect include does not happen

Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 years agobinutils: Update to tip of 2.25 branch
Khem Raj [Fri, 29 May 2015 02:22:31 +0000 (19:22 -0700)]
binutils: Update to tip of 2.25 branch

This update brings following patches

749b1c7 Fix some PPC assembler errors.
fe1e924 [AArch64][Backport] Remove Load/Store register (unscaled immediate) alias
4e4d08c [AArch64][Backport] Don't always create new frag for .inst directive
0381bf1 [AArch64][Backport] PR18270, fix handling of GOT entry for local symbol
bb22a11 [AArch64][Backport]Improve PC-relative relocation check for shared library
699dcf3 opcodes/
e700dd4 Downgrade linker error on protected symbols in .dynbss to a warning
13ccf8a Revert "Add extern_protected_data and set it for x86"
b0356a6 Add support for the Samsung Exynos M1 processor.
40dbf9d Add support for the Samsung Exynos M1 processor.
2aa5937 Don't pass unadorned zeros to varargs functions
12aca65 Relax PR 15228 protected visibility restriction
b443789 [AArch64] Fix branch stubs for BE
ab50ec0 Import fixes from mainline sources that address illegal memory access problems with the ELF targeted parts of the BFD library.
a539f2c Import patches from the master sources which fix illegal memory accesses found by running the binutils on fuzzed binaries.
a5ebc2c Fix build problem introduced by previous delta to coffgrok.c
7a57494 Import fixes from mainline that address illegal memory accesses when working with COFF/PE based files.
4f9583e Import fixes from trunk sources to correct invalid memory access issues with various binutils programs.
304a2b6 Import fixes for invalid memory access issues in the binutils DWARF parser from the trunk sources.
1dead8a Import security fixes for readelf from the master branch:
3e3feb3 Limit multi-byte nop instructions to 10 bytes
f12dd7b S/390: Disable relocation sort against code sections.
846daac Fix ppc32 synthetic symbols when __tls_get_addr_opt stub is generated
7235408 Tweak ppc32 tls_get_addr optimisation
642fe3b PowerPC64 thread-safe stubs not needed for iplt
2791b63 Use dynamic text relocs for protected vars
cff59f0 PowerPC64 GOLD: complain on misaligned _DS relocs
20951c8 Fix gold error: hidden symbol '...' is not defined locally
7428be5 [AArch64][2.25] Backport support for Cortex-A72
8093a8b [ARM][2.25] Backport support for Cortex-A72
f7cf878 [ARM] Backport "Skip private symbol when doing objdump"
031994d Add extern_protected_data and set it for x86

Additionally rearranges the local patches in sequence

Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 years agogdb: Minor upgrade to 7.9.1
Khem Raj [Thu, 28 May 2015 18:05:28 +0000 (11:05 -0700)]
gdb: Minor upgrade to 7.9.1

Drop backported patches

Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 years agoglibc: ignore for musl/uclibc but only for target recipes
Khem Raj [Tue, 28 Apr 2015 09:16:07 +0000 (02:16 -0700)]
glibc: ignore for musl/uclibc but only for target recipes

we still need nativesdk  or native recipes for libc to come
from glibc, but only be ignored for target recipes types

Change-Id: Ibaf8114f2aef63f1eadf493b264e78cd928535a0
Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 years agoglibc: remove duplicate --disable-nscd from EXTRA_OECONF
Andre McCurdy [Mon, 1 Jun 2015 23:33:34 +0000 (16:33 -0700)]
glibc: remove duplicate --disable-nscd from EXTRA_OECONF

An appropriate --enable-nscd or --disable-nscd option is added to
EXTRA_OECONF based on the 'libc-inet-anl' DISTRO_FEATURES check.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agorsync: backport a patch to fix CVE-2014-8242
Roy Li [Mon, 1 Jun 2015 06:58:00 +0000 (14:58 +0800)]
rsync: backport a patch to fix CVE-2014-8242

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agogawk: upgrade to 4.1.3
Chen Qi [Mon, 1 Jun 2015 09:44:13 +0000 (17:44 +0800)]
gawk: upgrade to 4.1.3

The following two patches are removed because they have been merged
in the new version.

    Use-DESTDIR-in-extension-Makefile.am-when-removing-..patch
    extension-Add-DESTDIR-prefix-to-remaining-pkgextensi.patch

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoutil-linux: upgrade to 2.26.2
Chen Qi [Mon, 1 Jun 2015 09:44:12 +0000 (17:44 +0800)]
util-linux: upgrade to 2.26.2

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoglibc: Fix __memcpy_chk on non-SSE2 CPUs
Andre McCurdy [Tue, 2 Jun 2015 01:06:44 +0000 (18:06 -0700)]
glibc: Fix __memcpy_chk on non-SSE2 CPUs

Backport from upstream glibc:

  https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=132a1328eccd20621b77f7810eebbeec0a1af187

Note that the fix is only required when glibc is built for i686/multiarch,
so is not applicable in the default oe-core x86 configuration (which builds
glibc for i586 and therefore does not include SSE2 optimised memcpy etc).

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agopackagegroup-core-full-cmdline: remove lighttpd
Robert Yang [Tue, 2 Jun 2015 09:06:19 +0000 (02:06 -0700)]
packagegroup-core-full-cmdline: remove lighttpd

The packagegroup-core-full-cmdline-sys-services should not pull in
lighttpd, move it to packagegroup-core-lsb since lsb needs it.

[YOCTO #7086]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agorecipeutils: Add get_recipe_upstream_version and get_recipe_pv_without_srcpv functions
Aníbal Limón [Mon, 1 Jun 2015 21:45:25 +0000 (16:45 -0500)]
recipeutils: Add get_recipe_upstream_version and get_recipe_pv_without_srcpv functions

The get_recipe_upstream_version functions tries to get the current
version of recipe in upstream it uses bb.fetch2 latest_versionstring
method also latest_revision when is SCM.

The get_recipe_pv_without_srcpv discards the SRCPV in SCM's recipe like
git it returns a tuple with the version, prefix and suffix of a PV.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
9 years agoboost: fix build for mips
Robert Yang [Mon, 1 Jun 2015 08:02:42 +0000 (01:02 -0700)]
boost: fix build for mips

Backport 2 patches to fix the build error on mips:
mips-poky-linux-g++: error: unrecognized command line option '-m32'

https://github.com/boostorg/build/commit/c0634341d9ee2c02d3a55c91dafb988afc066c49
https://github.com/boostorg/build/commit/9576ca216cae888d7efb5da97c009c245c5ba567

Apply the pacthes to both bjam-native and boost, so put the patches to
"files" dir.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agosstate: Add note when performing sstate mirror checks
Richard Purdie [Mon, 1 Jun 2015 21:17:21 +0000 (22:17 +0100)]
sstate: Add note when performing sstate mirror checks

The build can pause whilst remote sstate mirrors are checked for
sstate objects. Inform the user this is happening.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agosstate: Parallelise checkstatus calls for sstate mirror
Richard Purdie [Mon, 1 Jun 2015 21:16:17 +0000 (22:16 +0100)]
sstate: Parallelise checkstatus calls for sstate mirror

Currently the urls are checked serially which is a performance bottleneck when
looking at http:// urls in particular. This adds code to check the url status in
parallel, mirroring the way we do this elsewhere.

We need the datastore for the fetcher so we use threads, not multiprocess.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agooe/utils: Add simple threaded pool implementation
Richard Purdie [Mon, 1 Jun 2015 21:15:34 +0000 (22:15 +0100)]
oe/utils: Add simple threaded pool implementation

Python 2.7 doesn't have a threaded pool implementation, just a multiprocessing
one. We have need of a threaded implementation so add some simple class code
to support this.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agosoc-family.inc: Add a default SOC_FAMILY value
Richard Purdie [Mon, 1 Jun 2015 21:14:10 +0000 (22:14 +0100)]
soc-family.inc: Add a default SOC_FAMILY value

Otherwise, if MACHINEOVERRIDES is expanded before SOC_FAMILY is set
(which may happen as MACHINEOVERRIDES is included in OVERRIDES) we can
see:

ExpansionError: Failure expanding variable MACHINEOVERRIDES, expression was
${@['', '${SOC_FAMILY}:']['${SOC_FAMILY}' != '']}p1022ds
which triggered exception SyntaxError: EOL while scanning string literal (MACHINEOVERRIDES, line 1)

To avoid this, give SOC_FAMILY a default empty value so it doesn't
get read as None.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agobase: Fix license checksum rebuild problems
Richard Purdie [Mon, 1 Jun 2015 21:13:23 +0000 (22:13 +0100)]
base: Fix license checksum rebuild problems

"MACHINE=qemux86-64 bitbake init-ifupdown; MACHINE=genericx86-64 bitbake init-ifupdown"
shows a rebuild when it would be expected. The reason is a LIC_FILES_CHKSUM which
contains file://${WORKDIR}, an absolute path which doesn't exist in the first build
but does in the second, causing a signature change and a rebuild.

Fix the problem by ignoring any file:// url which resolves since TMPDIR for
license file dependency purposes.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agoqt4: unconditionally disable gstreamer 0.10 support in qt webkit
Alexander Kanavin [Wed, 27 May 2015 09:58:15 +0000 (12:58 +0300)]
qt4: unconditionally disable gstreamer 0.10 support in qt webkit

Previously it was auto-detected in a broken way, which was causing build errors
for qt-mobility. Qt4 build will fail if some gstreamer 0.10 packages are
available at build time, but not all. It will not fail if none of
the packages are available or if all of them are available. We can't guarantee either,
hence this patch.

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agoxserver-nodm: Support reboot from inside X
Ricardo Ribalda Delgado [Wed, 20 May 2015 18:44:18 +0000 (13:44 -0500)]
xserver-nodm: Support reboot from inside X

If reboot was called from inside the Xserver there could happen a race
condition where chvt would never end, and therefore the whole system was
stalled.

The user could not recover the system by ssh the machine or using the
keyboard.

Running chvt in background fixes the issue.

Also move sleep 1s inside stop to give time for killproc xinit for
fix issue when chvt 1 don't work because X server is still running.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agognutls: control zlib support via PACKAGECONFIG
Andre McCurdy [Wed, 27 May 2015 18:48:50 +0000 (11:48 -0700)]
gnutls: control zlib support via PACKAGECONFIG

Remains enabled by default, no functional change.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agognutls: use pkg-config to locate zlib
Andre McCurdy [Wed, 27 May 2015 18:48:49 +0000 (11:48 -0700)]
gnutls: use pkg-config to locate zlib

AC_LIB_HAVE_LINKFLAGS can sometimes find host libs and is therefore not
robust when cross-compiling. Remove it for zlib and use PKG_CHECK_MODULES
instead.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agoopenssl: Backport upstreamed version of patch to fix build on mips64
Khem Raj [Thu, 28 May 2015 04:51:55 +0000 (21:51 -0700)]
openssl: Backport upstreamed version of patch to fix build on mips64

Previous patch had a concern as well and this is a direct backport of
the patch fixing the problem.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agoalsa-plugins: Install 99-pulseaudio-default.conf when pulseaudio is enabled
Khem Raj [Thu, 28 May 2015 04:47:28 +0000 (21:47 -0700)]
alsa-plugins: Install 99-pulseaudio-default.conf when pulseaudio is enabled

The source file does not exist when pluseaudio is disabled

Change-Id: I78e0b9f4b8e66d8f41415c8672c1cb62c8fc5dc6
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agomesa: Upgrade 10.5.4 -> 10.5.6
Jussi Kukkonen [Thu, 28 May 2015 11:14:10 +0000 (14:14 +0300)]
mesa: Upgrade 10.5.4 -> 10.5.6

Among other things fixes a bug that prevents Weston from starting
on i965.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agopython3: fix build for shared object
Robert Yang [Thu, 28 May 2015 09:22:24 +0000 (02:22 -0700)]
python3: fix build for shared object

Fixed when build on armv7a_vfp_neon:
Python-3.3.3/Modules/_struct.o: relocation R_ARM_MOVW_ABS_NC against `a local symbol' can not be used when making a shared object; recompile with -fPIC

All the archs should use -fPIC when build shared object for linux.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agoalsa-tools: update makefile_no_gtk.patch
Kai Kang [Thu, 28 May 2015 08:23:04 +0000 (16:23 +0800)]
alsa-tools: update makefile_no_gtk.patch

makefile_no_gtk.patch will be applied when no 'x11' in distro features.
It fails to apply after update to version 1.0.29. Fix it.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agogrep: fix CVE-2015-1345
Kai Kang [Thu, 28 May 2015 01:26:15 +0000 (09:26 +0800)]
grep: fix CVE-2015-1345

Backport patch to fix CVE-2015-1345. The issue was introduced with
v2.18-90-g73893ff, and version 2.5.1a is not affected.

Replace tab with spaces in SRC_URI as well.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agogpgme: fix CVE-2014-3564
Kai Kang [Thu, 28 May 2015 01:26:14 +0000 (09:26 +0800)]
gpgme: fix CVE-2014-3564

Backport patch to fix CVE-2014-3564.

http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=commit;h=2cbd76f

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agosecurity_flags: Add comment about what it does and who uses it
Richard Purdie [Fri, 29 May 2015 13:16:50 +0000 (14:16 +0100)]
security_flags: Add comment about what it does and who uses it

It was pointed out that people couldn't easily see who used this or
why so add some comments about that.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 years agolttng-ust: 2.6.0 -> 2.6.1
Robert Yang [Thu, 28 May 2015 09:07:05 +0000 (02:07 -0700)]
lttng-ust: 2.6.0 -> 2.6.1

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agonasm: 2.11.06 -> 2.11.08
Robert Yang [Thu, 28 May 2015 08:51:31 +0000 (01:51 -0700)]
nasm: 2.11.06 -> 2.11.08

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agognupg: 2.1.2 -> 2.1.4
Robert Yang [Thu, 28 May 2015 05:34:15 +0000 (22:34 -0700)]
gnupg: 2.1.2 -> 2.1.4

Updated dirmngr-uses-libgpg-error.patch.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agoman-pages: 3.83 -> 4.00
Robert Yang [Thu, 28 May 2015 05:30:43 +0000 (22:30 -0700)]
man-pages: 3.83 -> 4.00

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
9 years agocracklib: 2.9.3 -> 2.9.4
Robert Yang [Thu, 28 May 2015 05:29:12 +0000 (22:29 -0700)]
cracklib: 2.9.3 -> 2.9.4

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>