Hi,
This patchset fixes Bug 11372 - image.bbclass forces some flags for do_image_X
tasks
by replacing setVarFlag calls with appendVarFlag for prefuncs, postfuncs and
subimages
flags. This should allow to modify these flags in image_* classes.
The patchset contains a little bit of code cleanup a
Replaced repeated expression "do_image_%s" % t with
a variable 'task' to simplify the code and increase
readability.
Signed-off-by: Ed Bartosh
---
meta/classes/image.bbclass | 26 +-
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/meta/classes/image.bbclas
Added leading space to vardeps to avoid flag value to be
added to the existing value without a separator.
Signed-off-by: Ed Bartosh
---
meta/classes/image.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index e18
Replaced setVarFlag calls to appendVarFlag to allow
modification of prefuncs, postfuncs and subimages flags
in inherited image classes.
[YOCTO #11372]
Signed-off-by: Ed Bartosh
---
meta/classes/image.bbclass | 7 ---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/meta/classes
On Wed, 2017-06-14 at 08:24 +0200, Tobias Hagelborn wrote:
> New devtool deploy-target option --strip which enables deploying
> stripped binaries, saving some space on target.
>
> * Copies the files of ${D} into a new directory and strips them in
> place
> * Based on sysroot_strip from staging.bbc
On Tue, 2017-06-13 at 20:36 +0100, Burton, Ross wrote:
> If gdbm isn't present then the gdbm package isn't generated at all,
> which is as expected. python3-readline just contains the rlcompleter
> package which is basically an implementation detail and could
> arguably be deleted in a do_install_
* the /usr/lib/python3.5/_compression.py file is possibly incorrectly included
in python3-misc. This runtime dependency is needed in order to use e.g.
gzip.py in runtime:
>>> import tarfile, zlib, gzip
Traceback (most recent call last):
File "", line 1, in
File "/usr/lib/python3.5/
== Series Details ==
Series: python-3.5: add runtime dependency from python3-compression on
python3-misc (rev2)
Revision: 2
URL : https://patchwork.openembedded.org/series/6758/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automate
On Tue, 2017-06-13 at 09:14 +0200, Patrick Ohly wrote:
> On Mon, 2017-06-12 at 19:23 -0400, Denys Dmytriyenko wrote:
> > On Mon, Jun 12, 2017 at 11:05:19PM +0200, Patrick Ohly wrote:
> > > On Mon, 2017-06-12 at 15:46 -0400, Denys Dmytriyenko wrote:
> > > > This now breaks parsing my distro config o
This reverts commit 3b3ae91a22d6f685e804df4f32cdeebe1bd6bd88.
It turned out that the code which expands DISTRO_FEATURES early during
base config parsing can fail because some entries in DISTRO_FEATURES
might call Python functions like base_conditional() from base.bbclass
which aren't defined yet.
This achieves the same goal as the same change to bitbake.conf itself,
but because the class gets added later as part expanding INHERIT, this
new approach is less likely to run into problems when DISTRO_FEATURES
contains complex code.
Another difference is that the class currently does not get inh
On 6 June 2017 at 09:59, Jonathan Liu wrote:
> If ASSUME_PROVIDES contains libsdl-native, we need to add sdl-config
> to HOSTTOOLS to allow access to the host sdl-config.
>
> (From OE-Core rev: eeb248c1a017e07e36b6fbaafe45006e3869f41a)
>
> Signed-off-by: Jonathan Liu
> Signed-off-by: Ross Burton
On Wed, 2017-06-14 at 20:42 +1000, Jonathan Liu wrote:
> On 6 June 2017 at 09:59, Jonathan Liu wrote:
> >
> > If ASSUME_PROVIDES contains libsdl-native, we need to add sdl-
> > config
> > to HOSTTOOLS to allow access to the host sdl-config.
> >
> > (From OE-Core rev: eeb248c1a017e07e36b6fbaafe45
On Tue, 2017-06-13 at 08:55 -0700, Andre McCurdy wrote:
> On Tue, Jun 13, 2017 at 2:49 AM, Richard Purdie
> wrote:
> >
> > Since the processing code for signature generation is now threaded,
> > use higher thread values as examples in this code for better
> > performance.
> >
> > Signed-off-by:
== Series Details ==
Series: "[v2] bitbake.conf: DISTRO_FEAT..." and 1 more (rev3)
Revision: 3
URL : https://patchwork.openembedded.org/series/7163/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have
== Series Details ==
Series: "[v2] bitbake.conf: DISTRO_FEAT..." and 1 more (rev2)
Revision: 2
URL : https://patchwork.openembedded.org/series/7163/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have
List
--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core
Changes in v4:
- root symlinks creation for nativesdk images.
- added PACKAGECONFIG option for 'usrmerge' in systemd
Amarnath Valluri (7):
bitbake.conf: support for merged usr with DISTRO_FEATURE usrmerge
cross.bbclass: merged /usr support
systemd: changes to support merged /usr
im
A new configuration variable ${root_prefix} added, which shall be used by all
base_{lib,bin,sbin}dir variables. When usrmerge DISTRO_FEATURE is enabled
${root_prefix} points to ${exec_prefix} otherwise to ${base_prefix}
Signed-off-by: Amarnath Valluri
---
meta/conf/bitbake.conf | 10 ++
Use ${root_prefix} instead of ${base_prefix} while setting
${target_base_prefix}, otherwise we might loose the root prefix configuration
change in case of 'usrmerge' distro feature is enabled.
Signed-off-by: Amarnath Valluri
---
meta/classes/cross.bbclass | 2 +-
1 file changed, 1 insertion(+),
Added a new POPULATE_SDK_PRE_TARTET_COMMAND variable, which can contain
functions need to be executed at pre traget sysroot creation phase.
classes/populate_sdk_base.bbclass: Added POPULATE_SDK_PRE_TARTET_COMMAND to sdk
command variables list.
Signed-off-by: Amarnath Valluri
---
meta/classes/po
- Enable/disable the split-usr support in systemd based on 'usrmerge'
DISTRO_FEATURE.
- Modify rootprefix to point to ${root_prefix}, rather than ${base_prefix}.
- And fixed firmware path to use ${nonarch_base_libdir} instead of hard-coded
'/lib', because when 'usrmege' distro feature enabled t
This check makes sure that, when usrmerge distro feature enabled, no package
installs files to root (/bin, /sbin, /lib, /lib64) folders.
Signed-off-by: Amarnath Valluri
---
meta/classes/insane.bbclass | 16
1 file changed, 16 insertions(+)
diff --git a/meta/classes/insane.bbcla
Prepare the symlinks required for merged /usr at the time of rootfs creation.
The links created in rootfs are:
/bin --> /usr/sbin
/sbin --> /usr/sbin
/lib --> /usr/lib
/lib64 --> /usr/lib64
We cannot make these symlinks as part of 'base-files' or some other package.
Because at rootfs creation, in
To match with the target image, the generated nativesdk's target sysroot also
should have the root symlinks(/lib*, /bin/, /sbin). So, extended the
'create_merged_usr_symlinks' to reuse symlink creation part even for nativesdk
using POPULATE_SDK_PRE_TARGET_COMMAND.
Signed-off-by: Amarnath Valluri
On 06/14/2017 11:28 AM, Richard Purdie wrote:
On Wed, 2017-06-14 at 08:24 +0200, Tobias Hagelborn wrote:
New devtool deploy-target option --strip which enables deploying
stripped binaries, saving some space on target.
* Copies the files of ${D} into a new directory and strips them in
place
* Ba
On Wed, 2017-06-14 at 14:30 +0300, Amarnath Valluri wrote:
> A new configuration variable ${root_prefix} added, which shall be used by all
> base_{lib,bin,sbin}dir variables. When usrmerge DISTRO_FEATURE is enabled
> ${root_prefix} points to ${exec_prefix} otherwise to ${base_prefix}
>
> Signed-of
On 06/13/2017 10:56 PM, jose.perez.carra...@linux.intel.com wrote:
From: Jose Perez Carranza
Add test cases to test “exclude” and “installroot“ options, also modify
the logic of filtering packages on the feed to have all the packages
needed by the tests.
Looks good. Hopefully this is the last
On 06/14/2017 07:00 AM, Alexander Kanavin wrote:
On 06/13/2017 10:56 PM, jose.perez.carra...@linux.intel.com wrote:
From: Jose Perez Carranza
Add test cases to test “exclude” and “installroot“ options, also modify
the logic of filtering packages on the feed to have all the packages
needed by
http://www.openembedded.org/wiki/Bitbake_World_Status
== Number of issues - stats ==
{| class='wikitable'
!|Date !!colspan='3'|Failed tasks
!!|Signatures !!colspan='14'|QA !!Comment
|-
|| ||qemuarm ||qemux86 ||qemux86_64
I don't know if they are supposed to work now, but the output from git
remote indicates that they probably don't work:
remote: /usr/local/patchwork/tools/post-receive_standalone.hook: line 65:
$4: unbound variable
remote: ++ git -C Next rev-parse
remote: ++ git -C Next rev-list --stdin --no-merge
On Wed, 2017-06-14 at 12:48 +0100, Richard Purdie wrote:
> On Wed, 2017-06-14 at 14:30 +0300, Amarnath Valluri wrote:
> >
> > A new configuration variable ${root_prefix} added, which shall be
> > used by all
> > base_{lib,bin,sbin}dir variables. When usrmerge DISTRO_FEATURE is
> > enabled
> > ${ro
A new configuration variable ${root_prefix} added, which shall be used by all
base_{lib,bin,sbin}dir variables. When usrmerge DISTRO_FEATURE is enabled
${root_prefix} points to ${exec_prefix} otherwise to ${base_prefix}
Signed-off-by: Amarnath Valluri
---
meta/conf/bitbake.conf | 10 ++
> -Original Message-
> From: openembedded-core-boun...@lists.openembedded.org
> [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of
> Amarnath Valluri
> Sent: den 14 juni 2017 13:31
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [PATCH v4 7/7] image.b
Allow the creation of ipks to happen in parallel, making best use of resources
on multiprocessor systems.
Signed-off-by: Richard Purdie
---
meta/classes/package_ipk.bbclass | 19 +--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/meta/classes/package_ipk.bbclass b
If we have large amounts of parallelism, pseudo can end up with too
many open connections and will no longer accept further connections,
hanging. This patch works around that by closing some clients, allowing
turnover of connections and unblocking the system. The downside is a small
but theoretical
Allow the creation of debs to happen in parallel, making best use of resources
on multiprocessor systems.
Signed-off-by: Richard Purdie
---
meta/classes/package_deb.bbclass | 19 +--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/meta/classes/package_deb.bbclass b
On 2017-06-14 15:42, Richard Purdie wrote:
If we have large amounts of parallelism, pseudo can end up with too
many open connections and will no longer accept further connections,
hanging. This patch works around that by closing some clients, allowing
turnover of connections and unblocking the sy
== Series Details ==
Series: "pseudo: Handle too many files ..." and 2 more
Revision: 1
URL : https://patchwork.openembedded.org/series/7239/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been e
When the kernel's menuconfig target is called while using the esdk or an
esdk-based container, the pkg-config info that is found is not correct.
The pkg-config info is for the target, but we need the eSDK's information
in order to build the host based menuconfig.
The new pkg-config script checks b
On Wed, Jun 14, 2017 at 02:42:37PM +0100, Richard Purdie wrote:
> Allow the creation of ipks to happen in parallel, making best use of resources
> on multiprocessor systems.
This is nice! Thanks for looking into the issue of not optimal utilization of
all the available processors and cores.
> S
GCCPIE flag which is empty by default adds "--enable-default-pie"
configure option for harderned distros
We do not require to add -fpie -pie flag externally anymore
Signed-off-by: Khem Raj
---
meta/conf/distro/include/security_flags.inc| 4 +++-
meta/recipes-devtools/gcc/gcc-configure-c
* This patchset add a switch to configure gcc driver with PIE defaults
* Add support for generating static PIE in gcc
* Gets rid of lot of bandaids from distro security flags file
* Adjust recipes for new way of specifying pie
* Upgrade and Fix mips build for ffmpeg along the way
The following cha
GCC is configured correctly to pass PIE cflags/ldflags
Signed-off-by: Khem Raj
---
meta/conf/distro/include/security_flags.inc | 83 -
1 file changed, 22 insertions(+), 61 deletions(-)
diff --git a/meta/conf/distro/include/security_flags.inc
b/meta/conf/distro/inclu
gcc can handle PIE in gcc driver
Signed-off-by: Khem Raj
---
meta/classes/distutils-common-base.bbclass | 2 --
meta/classes/setuptools.bbclass| 2 --
2 files changed, 4 deletions(-)
diff --git a/meta/classes/distutils-common-base.bbclass
b/meta/classes/distutils-common-base.bbclas
* Fix mips/mips64 along the way, it was broken in 3.3 as well
Signed-off-by: Khem Raj
---
.../ffmpeg/ffmpeg/0001-build-fix-for-mips.patch| 44 ++
.../ffmpeg/{ffmpeg_3.3.bb => ffmpeg_3.3.2.bb} | 5 ++-
2 files changed, 47 insertions(+), 2 deletions(-)
create mode 10
It has been moved to distro security include file
Signed-off-by: Khem Raj
---
meta/recipes-devtools/valgrind/valgrind_3.12.0.bb | 1 -
1 file changed, 1 deletion(-)
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.12.0.bb
b/meta/recipes-devtools/valgrind/valgrind_3.12.0.bb
index d7b6d770
Fix ptest generation
Signed-off-by: Khem Raj
---
meta/recipes-core/zlib/zlib_1.2.11.bb | 12 +++-
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/meta/recipes-core/zlib/zlib_1.2.11.bb
b/meta/recipes-core/zlib/zlib_1.2.11.bb
index d4a81820df..ba216f679a 100644
--- a/meta/re
Signed-off-by: Khem Raj
---
meta/recipes-support/libunwind/libunwind_1.2.bb | 4
1 file changed, 4 deletions(-)
diff --git a/meta/recipes-support/libunwind/libunwind_1.2.bb
b/meta/recipes-support/libunwind/libunwind_1.2.bb
index e598e40c6f..c6312f24fd 100644
--- a/meta/recipes-support/libu
sigaltstack is no more exposed by glibc see (bug 21517)
therefore adjust to use stack_t instead
Use res_state typedef instead of referring to __res_state struct
Signed-off-by: Khem Raj
---
meta/recipes-devtools/gcc/gcc-7.1.inc | 1 +
...r-Use-stack_t-instead-of-struct-sigaltsta.p
Signed-off-by: Khem Raj
---
meta/recipes-gnome/gobject-introspection/gobject-introspection_1.50.0.bb | 1 +
1 file changed, 1 insertion(+)
diff --git
a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.50.0.bb
b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.50
Signed-off-by: Khem Raj
---
meta/recipes-devtools/gcc/gcc-7.1.inc | 1 +
.../gcc/gcc-7.1/0049-gcc-Enable-static-PIE.patch | 37 ++
2 files changed, 38 insertions(+)
create mode 100644
meta/recipes-devtools/gcc/gcc-7.1/0049-gcc-Enable-static-PIE.patch
diff --
xmlSnprintfElementContent failed to correctly check the available
buffer space in two locations.
Fixes bug 781333 and bug 781701
CVE: CVE-2017-9047 CVE-2017-9048
Signed-off-by: Andrej Valek
---
.../libxml2-CVE-2017-9047_CVE-2017-9048.patch | 103 +
meta/recipes-core/lib
Fix CVE:
- CVE-2017-0663
- CVE-2017-9047
- CVE-2017-9048
- CVE-2017-9049
- CVE-2017-9050
- CVE-2017-5969
- Sync necessary changes for CVE fixing from master.
Andrej Valek (7):
libxml2-2.9.4: Disable LeakSanitizer when running API testsFix
CVE-2016-4658
libxml2-2.9.4: Avoid reparsing
The new flag doesn't work and the change even broke the XML_PARSE_NONET option.
Signed-off-by: Andrej Valek
---
.../libxml/libxml2/CVE-2016-9318.patch | 207 -
meta/recipes-core/libxml/libxml2_2.9.4.bb | 1 -
2 files changed, 208 deletions(-)
delete mo
Signed-off-by: Andrej Valek
---
...ibxml2-fix_and_simplify_xmlParseStartTag2.patch | 591 +
meta/recipes-core/libxml/libxml2_2.9.4.bb | 1 +
2 files changed, 592 insertions(+)
create mode 100644
meta/recipes-core/libxml/libxml2/libxml2-fix_and_simplify_xmlParseSta
Fix handling of parameter-entity references
There were two bugs where parameter-entity references could lead to an
unexpected change of the input buffer in xmlParseNameComplex and
xmlDictLookup being called with an invalid pointer.
Fixes bug 781205 and bug 781361
CVE: CVE-2017-9049 CVE-2017-9050
Fix NULL pointer deref in xmlDumpElementContent
Can only be triggered in recovery mode.
Fixes bug 758422
CVE: CVE-2017-5969
Signed-off-by: Andrej Valek
---
.../libxml/libxml2/libxml2-CVE-2017-5969.patch | 62 ++
meta/recipes-core/libxml/libxml2_2.9.4.bb | 1 +
Makefile.am: Disable LeakSanitizer when running API tests
The autogenerated API tests leak memory.
Upstream-Status: Backported -
[https://git.gnome.org/browse/libxml2/commit/?id=ac9a4560ee85b18811ff8ab7791ddfff7b144b0a]
CVE: -
Signed-off-by: Andrej Valek
---
meta/recipes-core/libxml/libxml2/ru
Fix type confusion in xmlValidateOneNamespace
Comment out code that casts xmlNsPtr to xmlAttrPtr. ID types
on namespace declarations make no practical sense anyway.
Fixes bug 780228
CVE: CVE-2017-0663
Signed-off-by: Andrej Valek
---
.../libxml/libxml2/libxml2-CVE-2017-0663.patch | 40 +
== Series Details ==
Series: Fix multiple CVEs
Revision: 1
URL : https://patchwork.openembedded.org/series/7243/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
serie
On 14 June 2017 at 16:26, Andrej Valek wrote:
> CVE: -
>
If there's no CVE, please don't set the tag.
Also:
Applying: libxml2-2.9.4: Disable LeakSanitizer when running API testsFix
CVE-2016-4658
error: cannot convert from y to UTF-8
fatal: could not parse patch
When it asked you what encoding
>
> def register_commands(subparsers, context):
> """Register devtool subcommands from the deploy plugin"""
> +
> parser_deploy = subparsers.add_parser('deploy-target',
>help='Deploy recipe output files
> to live target machine',
>
On Wed, 2017-06-14 at 14:42 +0100, Richard Purdie wrote:
> Allow the creation of ipks to happen in parallel, making best use of resources
> on multiprocessor systems.
>
> Signed-off-by: Richard Purdie
> ---
> meta/classes/package_ipk.bbclass | 19 +--
> 1 file changed, 17 inserti
On 06/14/2017 07:57 AM, Martin Jansa wrote:
> I don't know if they are supposed to work now, but the output from git
> remote indicates that they probably don't work:
>
Yes, we found this issue when enabling the hook for automated updates
for all the Patchwork projects.
I've disabled the hook wh
Use bfd linker on ppc, this is because gold fails to link
webkit libraries when PIE is enabled
Signed-off-by: Khem Raj
---
meta/recipes-sato/webkit/webkitgtk/ppc-musl-fix.patch| 12 ++--
.../webkit/{webkitgtk_2.16.1.bb => webkitgtk_2.16.3.bb} | 5 +++--
2 files changed, 9 i
For some recipes (llvm, chromium, chromium-wayland) I've noticed this
function to fail with:
ERROR: llvm3.3-3.3-r0 do_unpack: Error executing a python function in
exec_python_func() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_python_func
From: Leonardo Sandoval
The class nopackages deletes tasks needed by the archiver, so in case
the latter is globally inherited, do not inherit nopackages. Without
this patch, the following error occurs:
ERROR: Task do_deploy_archives in
.../meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.b
Thanks, it seems there is not-too-great error checking implemented. There is an
assumption if there is
a git folder there is also a git repo (and "git" binary in PATH). Seems the
assumption is wrong.
I'll add some error checking/improved error message. The problem with git repos
is they modify t
On 14 June 2017 at 16:23, Khem Raj wrote:
> sigaltstack is no more exposed by glibc see (bug 21517)
> therefore adjust to use stack_t instead
>
> Use res_state typedef instead of referring to __res_state struct
>
Doesn't work against master:
| In file included from
../../../../../../../../../wo
On Wed, Jun 14, 2017 at 3:47 PM Burton, Ross wrote:
>
> On 14 June 2017 at 16:23, Khem Raj wrote:
>
>> sigaltstack is no more exposed by glibc see (bug 21517)
>> therefore adjust to use stack_t instead
>>
>> Use res_state typedef instead of referring to __res_state struct
>>
>
> Doesn't work aga
On 06/08/2017 11:39 AM, Bruce Ashfield wrote:
Integration the -stable updates to 4.8, which comprise the following
commits:
merged to staging.
thanks,
armin
ae51b3b4efe6 Linux 4.8.24
accb950219c0 nvme/pci: Disable on removal when disconnected
995be68699ef padata: avoid race in
From: Choong YinThong
Added default argument for ubi and ubifs image creation.
MKUBIFS_ARGS and UBINIZE_ARGS both argument still able to
edit in local.conf
[YOCTO #11589]
Signed-off-by: Choong YinThong
---
meta/classes/image_types.bbclass | 9 +
1 file changed, 9 insertions(+)
diff -
From: Choong YinThong
Default argument added into bbclass for
ubi and ubifs image creation
Choong YinThong (1):
image_types.bbclass: Added default argument for ubi and ubifs
image creation
meta/classes/image_types.bbclass | 9 +
1 file changed, 9 insertions(+)
--
2.7.4
--
On Wed, Jun 14, 2017 at 10:31:17AM -0700, yin.thong.cho...@intel.com wrote:
> From: Choong YinThong
>
> Added default argument for ubi and ubifs image creation.
> MKUBIFS_ARGS and UBINIZE_ARGS both argument still able to
> edit in local.conf
>
> [YOCTO #11589]
>
> Signed-off-by: Choong YinThong
Current osselftest print confusing assertion message when using
self.assertTrue(os.path.exists(filepath)) to test file path,
example of confusing assertion message:
AssertionError: False is not true
Replce assertTrue/assertFalse with assertExists/assertNotExists to test
file path, this wil
*** replace file assertTrue/False with assertExists/NotExists to improve assert
message and simplify codes ***
Yeoh Ee Peng (1):
selftest/devtool: replace file assertTrue/False with assertExists/NotExists
meta/lib/oeqa/selftest/devtool.py | 128 +++---
1 file c
Ping.
> -Original Message-
> From: openembedded-core-boun...@lists.openembedded.org
> [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of
> jackie.hu...@windriver.com
> Sent: Wednesday, May 31, 2017 16:27
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core
From: Choong YinThong
Default argument added into bbclass for ubi and ubifs image creation
Choong YinThong (1):
image_types.bbclass: Added default argument for ubi and ubifs
image creation
meta/classes/image_types.bbclass | 9 +
1 file changed, 9 insertions(+)
--
2.7.4
--
From: Choong YinThong
Added default argument for ubi and ubifs image creation.
MKUBIFS_ARGS and UBINIZE_ARGS both argument still able to
edit in local.conf
[YOCTO #11589]
Signed-off-by: Choong YinThong
---
meta/classes/image_types.bbclass | 9 +
1 file changed, 9 insertions(+)
diff -
From: Choong YinThong
Added default argument for ubi and ubifs image creation.
MKUBIFS_ARGS and UBINIZE_ARGS both argument still able to
edit in local.conf
[YOCTO #11589]
Signed-off-by: Choong YinThong
---
meta/classes/image_types.bbclass | 9 +
1 file changed, 9 insertions(+)
diff -
From: Choong YinThong
Default argument added into bbclass for ubi and ubifs image creation
Choong YinThong (1):
image_types.bbclass: Added default argument for ubi and ubifs
image creation
meta/classes/image_types.bbclass | 9 +
1 file changed, 9 insertions(+)
--
2.7.4
--
Fix handling of parameter-entity references
There were two bugs where parameter-entity references could lead to an
unexpected change of the input buffer in xmlParseNameComplex and
xmlDictLookup being called with an invalid pointer.
Fixes bug 781205 and bug 781361
CVE: CVE-2017-9049 CVE-2017-9050
Makefile.am: Disable LeakSanitizer when running API tests
The autogenerated API tests leak memory.
Upstream-Status: Backported -
[https://git.gnome.org/browse/libxml2/commit/?id=ac9a4560ee85b18811ff8ab7791ddfff7b144b0a]
Signed-off-by: Andrej Valek
---
meta/recipes-core/libxml/libxml2/runtest.p
Signed-off-by: Andrej Valek
---
...ibxml2-fix_and_simplify_xmlParseStartTag2.patch | 590 +
meta/recipes-core/libxml/libxml2_2.9.4.bb | 1 +
2 files changed, 591 insertions(+)
create mode 100644
meta/recipes-core/libxml/libxml2/libxml2-fix_and_simplify_xmlParseSta
Fix CVE:
- CVE-2017-0663
- CVE-2017-9047
- CVE-2017-9048
- CVE-2017-9049
- CVE-2017-9050
- CVE-2017-5969
- Sync necessary changes for CVE fixing from master.
Andrej Valek (7):
libxml2: Disable LeakSanitizer when running API tests
libxml2: Avoid reparsing and simplify control flow in
xmlSnprintfElementContent failed to correctly check the available
buffer space in two locations.
Fixes bug 781333 and bug 781701
CVE: CVE-2017-9047 CVE-2017-9048
Signed-off-by: Andrej Valek
---
.../libxml2-CVE-2017-9047_CVE-2017-9048.patch | 103 +
meta/recipes-core/lib
Fix NULL pointer deref in xmlDumpElementContent
Can only be triggered in recovery mode.
Fixes bug 758422
CVE: CVE-2017-5969
Signed-off-by: Andrej Valek
---
.../libxml/libxml2/libxml2-CVE-2017-5969.patch | 62 ++
meta/recipes-core/libxml/libxml2_2.9.4.bb | 1 +
The new flag doesn't work and the change even broke the XML_PARSE_NONET option.
Signed-off-by: Andrej Valek
---
.../libxml/libxml2/CVE-2016-9318.patch | 207 -
meta/recipes-core/libxml/libxml2_2.9.4.bb | 1 -
2 files changed, 208 deletions(-)
delete mo
Fix type confusion in xmlValidateOneNamespace
Comment out code that casts xmlNsPtr to xmlAttrPtr. ID types
on namespace declarations make no practical sense anyway.
Fixes bug 780228
CVE: CVE-2017-0663
Signed-off-by: Andrej Valek
---
.../libxml/libxml2/libxml2-CVE-2017-0663.patch | 40 +
On Mon, Jun 12, 2017 at 4:38 PM, Khem Raj wrote:
> Switch default compiler to gcc 7
>
I'll try to switch back to gcc 6 to confirm this, but something in latest
oe-core upgrade made WORKDIR to be significantly bigger (even when using
rm_work and building in smaller steps) so now it doesn't fit in
This issue exists for very long time.
I know that when the builder runs out of disk space there are multiple
things which might go wrong (I've seen bad archives on premirrors, bad
sstate archives caused by this), so this issue isn't the main problem, but
still would be nice to fail faster.
In las
92 matches
Mail list logo