[OE-core] [PATCH v3] python3: security: disable -pie and -fpie from Python3 compilation.

2015-08-06 Thread Topi Kuutela
If security_flags.inc is 'required' to the image, -pie and -fpie options are added to CFLAGS. These are not compatible with -shared GCC option. The result is several errors of following form and missing Python3 modules in the image: *.o In function `_start': *.S undefined reference to `main'

[OE-core] [PATCH] bind: upgrade to 9.10.2-p3

2015-08-06 Thread rongqing.li
From: Roy Li 9.10.2-p3 includes the fix for CVE-2015-5477: BIND 9.x before 9.9.7-P2 and 9.10.x before 9.10.2-P3 allows remote attackers to cause a denial of service (REQUIRE assertion failure and daemon exit) via TKEY queries. Signed-off-by: Roy Li --- .../bind/{bind_9.10.2-P2.bb => bind

[OE-core] [poky][PATCH v7 11/11] gstreamer1.0-plugins-base: Add encodebin related patch

2015-08-06 Thread Yuqing Zhu
Need more buffers in output queue for better performance. Signed-off-by: Yuqing Zhu --- ...eed-more-buffers-in-output-queue-for-bett.patch | 32 ++ .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 33 insertions(+) create mode 100644 meta/recipes-m

[OE-core] [poky][PATCH v7 07/11] gstreamer1.0-plugins-base: Add basetextoverlay related patch

2015-08-06 Thread Yuqing Zhu
Make memory copy when video buffer's memory is read only Signed-off-by: Yuqing Zhu --- ...rlay-make-memory-copy-when-video-buffer-s.patch | 129 + .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 130 insertions(+) create mode 100644 meta/recipes-

[OE-core] [poky][PATCH v7 04/11] gstreamer1.0-plugins-base: Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF related patch

2015-08-06 Thread Yuqing Zhu
-Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF This makes sure that the buffer is not reffed another time when storing it in the GstVideoFrame, keeping it writable if it was writable. -Use new GST_VIDEO_FRAME_MAP_FLAG_NO_REF to replace the old one because it's kind of ugly. -Don't ref buffers twice when

[OE-core] [poky][PATCH v7 00/11] gstreamer1.0-plugins-base: Add patches for Gstreamer 1.4.5 base

2015-08-06 Thread Yuqing Zhu
-Fix id3demux issue -Handle audio/video decoder error -Update video alignment after video alignment -Gstvideofilter use new GST_VIDEO_FRAME_MAP_FLAG_NO_REF Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF, keeping buffer writable Don't ref buffers twice when mapping -Keep sticky events around when doing a

[OE-core] [poky][PATCH v7 08/11] gstreamer1.0-plugins-base: Add gstplaysink related patch

2015-08-06 Thread Yuqing Zhu
Don't set async of custom text-sink to false. Setting async to false will lead A/V sync problem when seeking. The preroll need to use GAP event instead of setting async to false. Signed-off-by: Yuqing Zhu --- ...-don-t-set-async-of-custom-text-sink-to-f.patch | 31 ++ .../gst

[OE-core] [poky][PATCH v7 02/11] gstreamer1.0-plugins-base: handle audio/video decoder error

2015-08-06 Thread Yuqing Zhu
When there is input data and no output data to the end of the stream, it will send GST_ELEMENT_ERROR and quit from playing. The patch comments the GST_ELEMENT_ERROR() and just add GST_ERROR_OBJECT() information instead. Signed-off-by: Yuqing Zhu --- .../handle-audio-video-decoder-error.patch

[OE-core] [poky][PATCH v7 06/11] gstreamer1.0-plugins-base: Add gststreamsynchronizer related patch

2015-08-06 Thread Yuqing Zhu
-Sending EOS event instead of GAP event as GAP event has error if A/V have the different duration. -Stop sending second track EOS event when returing failure after sending the first track EOS. Fixed by ignoring the return error. Signed-off-by: Yuqing Zhu --- .../do-not-change-eos-event-to-ga

[OE-core] [poky][PATCH v7 09/11] gstreamer1.0-plugins-base: Add ssaparse related patch

2015-08-06 Thread Yuqing Zhu
Enhance SSA text lines parsing. Signed-off-by: Yuqing Zhu --- ...3-ssaparse-enhance-SSA-text-lines-parsing.patch | 225 + .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 226 insertions(+) create mode 100644 meta/recipes-multimedia/gstreamer/gstr

[OE-core] [poky][PATCH v7 10/11] gstreamer1.0-plugins-base: Add subparse related patch

2015-08-06 Thread Yuqing Zhu
Set need_segment after sink pad receive GST_EVENT_SEGMENT. Signed-off-by: Yuqing Zhu --- ...t-need_segment-after-sink-pad-received-GS.patch | 69 ++ .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 70 insertions(+) create mode 100644 meta/recipes-

[OE-core] [poky][PATCH v7 01/11] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-08-06 Thread Yuqing Zhu
Use g_utf16_to_utf8() instead of g_convert to fix the issue that id3 tags utf16 charaters cannot be extreacted in id3demux when try to get the id3v2 tag such as TIT2, TALB etc. Signed-off-by: Yuqing Zhu --- .../fix-id3demux-utf16-to-utf8-issue.patch | 54 ++ .../gstre

[OE-core] [poky][PATCH v7 03/11] gstreamer1.0-plugins-base: update video alignment after video alignment

2015-08-06 Thread Yuqing Zhu
Video buffer pool will update video alignment to respect stride alignment requirement. But haven't update it to video alignment in configure. Which will cause user get wrong video alignment. Signed-off-by: Yuqing Zhu --- .../videobuffer_updata_alignment_update.patch | 53 +++

[OE-core] [poky][PATCH v7 05/11] gstreamer1.0-plugins-base: Add videoencoder related patch

2015-08-06 Thread Yuqing Zhu
Keep sticky events around when doing a soft reset. The current code will first discard all frames, and then tries to copy all sticky events from the (now discarded) frames. So change the order. Signed-off-by: Yuqing Zhu --- ...p-sticky-events-around-when-doing-a-soft-.patch | 46

Re: [OE-core] meta-gplv2? [Was Re: parted_1.8.6.bb: add parted that not GPLv3]

2015-08-06 Thread Khem Raj
On Fri, Jul 31, 2015 at 4:41 AM, Alexander Kanavin wrote: > My issue here is quality control. Someone still has to review the work of > those volunteer developers, and take action when they fail to take action. > Yocto at the moment does not have such a self-sustaining community process - > it all

Re: [OE-core] meta-gplv2? [Was Re: parted_1.8.6.bb: add parted that not GPLv3]

2015-08-06 Thread Khem Raj
On Sat, Jul 11, 2015 at 12:57 AM, Richard Purdie wrote: >> As someone has volunteered to maintain the pre-GPLv3 parted recipe >> (and I'll volunteer as a secondary maintainer, if that helps) >> hopefully there would not be a "serious maintenance burden" on anyone >> who doesn't have an interest in

Re: [OE-core] [poky][PATCH v6 0/3] Add patches for Gstreamer 1.4.5 base

2015-08-06 Thread Zhu Carol
Hi Richard, Sorry for causing your confusion. Firstly, I sent five gstreamer1.0-plugins-base related patches and waiting for your feedback. Then, I sent three more patches, the status of them is unknown, I am still waiting for feedback. And this time, I sent the following three more pathes.

Re: [OE-core] [PATCH 19/21] epiphany: add a recipe from meta-gnome

2015-08-06 Thread Randy MacLeod
On 2015-07-30 10:27 AM, Alexander Kanavin wrote: Epiphany is replacing midori as the browser in oe-core recipe set and poky distribution. I just got caught up on oe-core and: https://www.mail-archive.com/yocto@yoctoproject.org/msg24522.html Please move the midori recipe and dependencies to

Re: [OE-core] [PATCH] oe-selftest: support selftests from other layers

2015-08-06 Thread Christopher Larson
On Thu, Aug 6, 2015 at 8:43 PM, Liu, Sharron wrote: > Thanks for your inputs. I tested my case with poky master which includes > the two commitments you mentioned: > > > https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d2023c34e4c3735d919c35d80daf991aab579500 > > > https://git.yoctoproj

Re: [OE-core] [PATCH] oe-selftest: support selftests from other layers

2015-08-06 Thread Liu, Sharron
Hi Chris, Thanks for your inputs. I tested my case with poky master which includes the two commitments you mentioned: https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d2023c34e4c3735d919c35d80daf991aab579500 https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=51d760e2a7e22f1b

Re: [OE-core] [PATCH 4/6] vte: Fix LICENSE to LGPL2.0

2015-08-06 Thread Khem Raj
> On Aug 6, 2015, at 1:42 AM, Jussi Kukkonen wrote: > > Current releases of vte are LGPL 2.1+ but the one we have is still > LGPL 2.0. > > Signed-off-by: Jussi Kukkonen > --- > meta/recipes-support/vte/vte.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/recipe

Re: [OE-core] [poky][PATCH v6 0/3] Add patches for Gstreamer 1.4.5 base

2015-08-06 Thread Richard Purdie
On Thu, 2015-08-06 at 18:29 +0800, Yuqing Zhu wrote: > Fix issue about gstreamer1.0-plugins-base > > -ssaparse: Enhance SSA text lines parsing. > > -subparse: Set need_segment after sink pad receive GST_EVENT_SEGMENT. > > -encodebin: Need more buffers in output queue for better performance. > >

Re: [OE-core] [PATCH v2] python3: security: disable -pie and -fpie from Python3 compilation.

2015-08-06 Thread Khem Raj
On Thu, Aug 6, 2015 at 3:48 AM, Topi Kuutela wrote: > If security_flags.inc is 'required' to the image, -pie and -fpie options > are added to CFLAGS. These are not compatible with -shared GCC option but > cause linker errors which are not reported by bitbake. what error do you run into ? can you

Re: [OE-core] [meta-oe][PATCH] dosfstools-2.11: Fix memory leak in mkdosfs

2015-08-06 Thread Khem Raj
On Thu, Aug 6, 2015 at 2:25 AM, Paul Eggleton wrote: > On Thursday 06 August 2015 12:12:35 Alexander Kanavin wrote: >> On 08/06/2015 12:06 PM, Amarnath Valluri wrote: >> > Added new patch that fixes the memory leak that was introduced in >> > mkdosfs-dir.patch. >> >> You should update the original

Re: [OE-core] About multilib packages rpm pkg name

2015-08-06 Thread Robert Yang
On 08/07/2015 04:57 AM, Mark Hatle wrote: On 8/5/15 9:33 PM, Robert Yang wrote: Hi Mark, Thank you very much, this makes things more clear now, I've tried to change packagegroup-core-standalone-sdk-target's PACKAGE_ARCH to MACHINE_ARCH or TUNE_PKGARCH, it didn't work (the rdepends lib32 are

Re: [OE-core] [PATCH 1/4] uclibc.inc: remove unused UCLIBC_EXTRA_LDFLAGS

2015-08-06 Thread Khem Raj
On Thu, Aug 6, 2015 at 6:54 PM, Andre McCurdy wrote: > Signed-off-by: Andre McCurdy > --- > meta/recipes-core/uclibc/uclibc.inc | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/meta/recipes-core/uclibc/uclibc.inc > b/meta/recipes-core/uclibc/uclibc.inc > index 08465c4..c483228 100644 > -

Re: [OE-core] [PATCH 2/3] security_flags.inc: clear SECURITY_CFLAGS for uclibc

2015-08-06 Thread Khem Raj
On Thu, Aug 6, 2015 at 12:41 PM, Andre McCurdy wrote: > uclibc fails to build when security_flags.inc is used. > > | i686-rdk-linux-uclibc-gcc -m32 -march=core2 -mtune=core2 -msse3 > -mfpmath=sse --sysroot=/build-vbox32/tmp/sysroots/vbox32-tcbootstrap -Wl,-EL > -Wl,--sort-common -Wl,--sort-se

[OE-core] [PATCH 2/4] uclibc.inc: fixup CFLAGS with _remove instead of oe_filter_out

2015-08-06 Thread Andre McCurdy
No functional change, but _remove is slightly cleaner and clearer. Signed-off-by: Andre McCurdy --- meta/recipes-core/uclibc/uclibc.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index c483228..

[OE-core] [PATCH 1/4] uclibc.inc: remove unused UCLIBC_EXTRA_LDFLAGS

2015-08-06 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-core/uclibc/uclibc.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index 08465c4..c483228 100644 --- a/meta/recipes-core/uclibc/uclibc.inc +++ b/meta/recipes-core/uclibc

[OE-core] [PATCH 3/4] uclibc.inc: avoid immediate expansion for UCLIBC_EXTRA_CFLAGS

2015-08-06 Thread Andre McCurdy
If immediate variable expansion is used, then UCLIBC_EXTRA_CFLAGS can sometimes be derived from a partially expanded value of CFLAGS. One specific problem case occurs when security_flags.inc is used: CFLAGS is evaluated before the SECURITY_CFLAGS_pn-uclibc over-ride has been applied and therefore

[OE-core] [PATCH 4/4] security_flags.inc: clear SECURITY_CFLAGS for uclibc

2015-08-06 Thread Andre McCurdy
uclibc fails to build when security_flags.inc is used. | i686-rdk-linux-uclibc-gcc -m32 -march=core2 -mtune=core2 -msse3 -mfpmath=sse --sysroot=/build-vbox32/tmp/sysroots/vbox32-tcbootstrap -Wl,-EL -Wl,--sort-common -Wl,--sort-section=alignment -m32 -shared -Wl,--warn-common -Wl,--warn-once

[OE-core] [PATCH v2 0/4] fix uclibc build with security_flags.inc

2015-08-06 Thread Andre McCurdy
v2 adds a new patch to fixup CFLAGS with _remove instead of oe_filter_out, which fixes CFLAGS circular reference build failures introduced in v1 when building for ARM. Andre McCurdy (4): uclibc.inc: remove unused UCLIBC_EXTRA_LDFLAGS uclibc.inc: fixup CFLAGS with _remove instead of oe_filter_o

Re: [OE-core] [PATCH 3/3] uclibc.inc: avoid immediate expansion for UCLIBC_EXTRA_CFLAGS

2015-08-06 Thread Andre McCurdy
On Thu, Aug 6, 2015 at 4:02 PM, Richard Purdie wrote: > On Thu, 2015-08-06 at 12:41 -0700, Andre McCurdy wrote: >> If immediate variable expansion is used, then UCLIBC_EXTRA_CFLAGS can >> sometimes be derived from a partially expanded value of CFLAGS. >> >> One specific problem case occurs when se

Re: [OE-core] [PATCH 3/3] uclibc.inc: avoid immediate expansion for UCLIBC_EXTRA_CFLAGS

2015-08-06 Thread Richard Purdie
On Thu, 2015-08-06 at 12:41 -0700, Andre McCurdy wrote: > If immediate variable expansion is used, then UCLIBC_EXTRA_CFLAGS can > sometimes be derived from a partially expanded value of CFLAGS. > > One specific problem case occurs when security_flags.inc is used: CFLAGS > is evaluated before the S

[OE-core] [PATCH v2] license.bbclass: Add support for deployed packages not in rootfs

2015-08-06 Thread mariano . lopez
From: Mariano Lopez This adds a new manifest file for the packages that were deployed but not included into rootfs. The new manifest file is in the same directory as the rootfs manifest but the name is image_license.manifest. It also creates the directory structure for the packages and add the l

[OE-core] [PATCH v2] Creates manifest/license files for deployed packages not in rootfs

2015-08-06 Thread mariano . lopez
From: Mariano Lopez The current license manifest creation behavior is to include only packages that were installed. This beahvior excludes packages that were deployed but not installed in the rootfs. An example would be the bootloader. This patch adds support for packages deployed but not inst

Re: [OE-core] About multilib packages rpm pkg name

2015-08-06 Thread Mark Hatle
On 8/5/15 9:33 PM, Robert Yang wrote: > > Hi Mark, > > Thank you very much, this makes things more clear now, I've tried > to change packagegroup-core-standalone-sdk-target's PACKAGE_ARCH > to MACHINE_ARCH or TUNE_PKGARCH, it didn't work (the rdepends lib32 > are still not installed), I will try

[OE-core] [PATCH 3/3] uclibc.inc: avoid immediate expansion for UCLIBC_EXTRA_CFLAGS

2015-08-06 Thread Andre McCurdy
If immediate variable expansion is used, then UCLIBC_EXTRA_CFLAGS can sometimes be derived from a partially expanded value of CFLAGS. One specific problem case occurs when security_flags.inc is used: CFLAGS is evaluated before the SECURITY_CFLAGS_pn-uclibc over-ride has been applied and therefore

[OE-core] [PATCH 2/3] security_flags.inc: clear SECURITY_CFLAGS for uclibc

2015-08-06 Thread Andre McCurdy
uclibc fails to build when security_flags.inc is used. | i686-rdk-linux-uclibc-gcc -m32 -march=core2 -mtune=core2 -msse3 -mfpmath=sse --sysroot=/build-vbox32/tmp/sysroots/vbox32-tcbootstrap -Wl,-EL -Wl,--sort-common -Wl,--sort-section=alignment -m32 -shared -Wl,--warn-common -Wl,--warn-once

[OE-core] [PATCH 0/3] fix uclibc build with security_flags.inc

2015-08-06 Thread Andre McCurdy
Andre McCurdy (3): uclibc.inc: remove unused UCLIBC_EXTRA_LDFLAGS security_flags.inc: clear SECURITY_CFLAGS for uclibc uclibc.inc: avoid immediate expansion for UCLIBC_EXTRA_CFLAGS meta/conf/distro/include/security_flags.inc | 2 ++ meta/recipes-core/uclibc/uclibc.inc | 5 ++--- 2 f

[OE-core] [PATCH 1/3] uclibc.inc: remove unused UCLIBC_EXTRA_LDFLAGS

2015-08-06 Thread Andre McCurdy
Signed-off-by: Andre McCurdy --- meta/recipes-core/uclibc/uclibc.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index 08465c4..c483228 100644 --- a/meta/recipes-core/uclibc/uclibc.inc +++ b/meta/recipes-core/uclibc

[OE-core] [PATCH] initscripts: Fix regression for requiring /bin/bash

2015-08-06 Thread Jason Wessel
It is not possible to create a rootfs with only busybox + initscipts. This is a result of a regression from commit a4b53872a8a9a2743299acbff015f7f2750a69d6 (initscripts: add /sbin/sushell for systemd service debug-shell). The /sbin/sushell should just use /bin/sh else you end up with a problem whe

[OE-core] [PATCH v3 1/1] qemurunner: Improves checking for server and target IPs on qemus parameters

2015-08-06 Thread Alejandro Hernandez
Fixes OS hanging infinitely waiting for qemus process to release bitbake.lock Signed-off-by: Alejandro Hernandez --- meta/lib/oeqa/utils/qemurunner.py | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemuru

[OE-core] [PATCH v2 1/1] qemurunner: Improves checking for server and target IPs on qemus parameters

2015-08-06 Thread Alejandro Hernandez
Fixes OS hanging infinitely waiting for qemus process to release bitbake.lock Signed-off-by: Alejandro Hernandez --- meta/lib/oeqa/utils/qemurunner.py | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemuru

[OE-core] [PATCH 1/3] wic: Add plugin for hybrid iso image

2015-08-06 Thread Mihaly Varga
This plugin creates a hybrid, legacy and EFI bootable ISO image. The generated image can be used on optical media as well as USB media. Legacy boot uses syslinux and EFI boot uses grub or gummiboot (not implemented yet) as bootloader. The plugin creates the directories required by bootloaders and

Re: [OE-core] wic: Add plugin for hybrid iso image

2015-08-06 Thread Mihaly Varga
Hi Ed, Thank you for your comments. There is a slightly modified version of the isoimage-isohybrid plugin, the kickstart file and the wic selftest extended with the iso image creation test case. On 7/28/2015 1:57 PM, Ed Bartosh wrote: > Hi Mihaly, > > The code looks ok to me. > > Can you plea

[OE-core] [PATCH 2/3] wic: add mkhybridiso kickstart file

2015-08-06 Thread Mihaly Varga
Add kickstart file for generating a hybrid bootable iso image using isoimage-isohybrid plugin, the output image is HYBRID_ISO_IMG-cd.iso, the label is HYBRIDISO, and the rootfs.img file is an image with ext3 file system, and uses grub as bootloader for EFI boot and syslinux for legacy boot. Signed

[OE-core] [PATCH 3/3] wic: Test creation of iso image

2015-08-06 Thread Mihaly Varga
Added new wic testcase, for testing the creation of the hybrid iso image with isoimage-isohybrid plugin. Signed-off-by: Mihaly Varga --- meta/lib/oeqa/selftest/wic.py | 8 1 file changed, 8 insertions(+) diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 0

Re: [OE-core] [PATCH] create-pull-request: cd to relative directory

2015-08-06 Thread Khem Raj
> On Aug 6, 2015, at 8:16 AM, Paul Eggleton > wrote: > > On Thursday 06 August 2015 08:05:40 Khem Raj wrote: >>> On Aug 6, 2015, at 1:38 AM, Paul Eggleton >>> wrote:> >>> On Wednesday 05 August 2015 20:33:48 Khem Raj wrote: On Wed, Aug 5, 2015 at 2:01 AM, Ed Bartosh >>> >>> wrote: >

[OE-core] [PATCH] qemu: upgrade to 2.4.0-rc4

2015-08-06 Thread Cristian Iorga
Bugfixes, bring it closer to 2.4.0 final release. Signed-off-by: Cristian Iorga --- meta/recipes-devtools/qemu/{qemu_2.4.0-rc3.bb => qemu_2.4.0-rc4.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-devtools/qemu/{qemu_2.4.0-rc3.bb => qemu_2.4.0-rc4.bb} (82%)

Re: [OE-core] [PATCH] create-pull-request: cd to relative directory

2015-08-06 Thread Paul Eggleton
On Thursday 06 August 2015 08:05:40 Khem Raj wrote: > > On Aug 6, 2015, at 1:38 AM, Paul Eggleton > > wrote:> > > On Wednesday 05 August 2015 20:33:48 Khem Raj wrote: > >> On Wed, Aug 5, 2015 at 2:01 AM, Ed Bartosh > > > > wrote: > >>> create-pull-request -d path creates empty patches if direct

Re: [OE-core] [PATCH] create-pull-request: cd to relative directory

2015-08-06 Thread Khem Raj
> On Aug 6, 2015, at 1:38 AM, Paul Eggleton > wrote: > > On Wednesday 05 August 2015 20:33:48 Khem Raj wrote: >> On Wed, Aug 5, 2015 at 2:01 AM, Ed Bartosh > wrote: >>> create-pull-request -d path creates empty patches if directory >>> is specified as a path, i.e. ./bitbake or ./bitbake/ or fu

Re: [OE-core] [PATCH] kernel-yocto: do_configme: Add $TOOLCHAIN_OPTIONS to CFLAGS

2015-08-06 Thread Ioan-Adrian Ratiu
On 06.08.2015 16:19, Bruce Ashfield wrote: On Thu, Aug 6, 2015 at 3:23 AM, Ioan-Adrian Ratiu wrote: On 05.08.2015 16:50, Bruce Ashfield wrote: On Wed, Aug 5, 2015 at 4:39 AM, Adrian Ratiu wrote: Bruce Ashfield wrote on 05.08.2015 05:17:14: On Tue, Aug 4, 2015 at 4:41 AM, Ioan-Adrian Rat

Re: [OE-core] [PATCH 1/1] qemurunner: Improves checking for Server and Target IPs on qemus parameters

2015-08-06 Thread Richard Purdie
On Wed, 2015-08-05 at 23:21 +, Alejandro Hernandez wrote: > Fixes server hanging infinitely waiting for qemus process to let go of > bitbake.lock > > Signed-off-by: Alejandro Hernandez > --- > meta/lib/oeqa/utils/qemurunner.py | 13 - > 1 file changed, 8 insertions(+), 5 deletio

Re: [OE-core] [PATCH] kernel-yocto: do_configme: Add $TOOLCHAIN_OPTIONS to CFLAGS

2015-08-06 Thread Bruce Ashfield
On Thu, Aug 6, 2015 at 3:23 AM, Ioan-Adrian Ratiu wrote: > On 05.08.2015 16:50, Bruce Ashfield wrote: >> >> On Wed, Aug 5, 2015 at 4:39 AM, Adrian Ratiu wrote: >>> >>> Bruce Ashfield wrote on 05.08.2015 05:17:14: >>> On Tue, Aug 4, 2015 at 4:41 AM, Ioan-Adrian Ratiu wrote: > >

Re: [OE-core] [meta-oe][PATCH] dosfstools-2.11: Fix memory leak in mkdosfs

2015-08-06 Thread Valluri, Amarnath
Alex & Paul, Thanks both of you, I have resubmitted the patch as per you suggestions. - Amarnath From: Paul Eggleton [paul.eggle...@linux.intel.com] Sent: Thursday, August 06, 2015 12:25 PM To: Alexander Kanavin; Valluri, Amarnath Cc: openembedded-core@lis

[OE-core] [meta-oe][PATCH v2] dosfstools-2.11: Fix memory leak in mkdosfs

2015-08-06 Thread Amarnath Valluri
Fix memory leak that was introduced in mkdosfs-dir.patch. Signed-off-by: Amarnath Valluri --- .../dosfstools/dosfstools/mkdosfs-dir.patch| 53 ++ 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/meta/recipes-devtools/dosfstools/dosfstools/mkdosfs-dir.pa

[OE-core] [PATCH v2] python3: security: disable -pie and -fpie from Python3 compilation.

2015-08-06 Thread Topi Kuutela
If security_flags.inc is 'required' to the image, -pie and -fpie options are added to CFLAGS. These are not compatible with -shared GCC option but cause linker errors which are not reported by bitbake. Signed-off-by: Topi Kuutela --- meta/conf/distro/include/security_flags.inc | 1 + 1 file chan

Re: [OE-core] [PATCH] python3: security: disable -pie -fpie from Python3 compilation CFLAGS when security_flags is inherited.

2015-08-06 Thread Kuutela, Topi
Several Python3 modules require use shared objects but -pie and -fpie GCC options are not compatible with -shared. This causes linker error which are not displayed during bitbake execution (unless verbose options are used) but the .so files are not generated or included in the image. > -Or

Re: [OE-core] [PATCH] python3: security: disable -pie -fpie from Python3 compilation CFLAGS when security_flags is inherited.

2015-08-06 Thread Jussi Kukkonen
On 6 August 2015 at 12:54, Topi Kuutela wrote: > Signed-off-by: Topi Kuutela Could you add an explanation why this change is done? Also, maybe cut the the subject line length to something more reasonable if you're re-submitting. Jussi > --- > meta/conf/distro/include/security_flags.inc | 1 +

[OE-core] [poky][PATCH v6 1/3] gstreamer1.0-plugins-base: Add ssaparse related patch

2015-08-06 Thread Yuqing Zhu
Enhance SSA text lines parsing. Signed-off-by: Yuqing Zhu --- ...3-ssaparse-enhance-SSA-text-lines-parsing.patch | 225 + .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 226 insertions(+) create mode 100644 meta/recipes-multimedia/gstreamer/gstr

[OE-core] [poky][PATCH v6 3/3] gstreamer1.0-plugins-base: Add encodebin related patch

2015-08-06 Thread Yuqing Zhu
Need more buffers in output queue for better performance. Signed-off-by: Yuqing Zhu --- ...eed-more-buffers-in-output-queue-for-bett.patch | 32 ++ .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 33 insertions(+) create mode 100644 meta/recipes-m

[OE-core] [poky][PATCH v6 0/3] Add patches for Gstreamer 1.4.5 base

2015-08-06 Thread Yuqing Zhu
Fix issue about gstreamer1.0-plugins-base -ssaparse: Enhance SSA text lines parsing. -subparse: Set need_segment after sink pad receive GST_EVENT_SEGMENT. -encodebin: Need more buffers in output queue for better performance. Yuqing Zhu (3): gstreamer1.0-plugins-base: Add ssaparse related pat

[OE-core] [poky][PATCH v6 2/3] gstreamer1.0-plugins-base: Add subparse related patch

2015-08-06 Thread Yuqing Zhu
Set need_segment after sink pad receive GST_EVENT_SEGMENT. Signed-off-by: Yuqing Zhu --- ...t-need_segment-after-sink-pad-received-GS.patch | 69 ++ .../gstreamer/gstreamer1.0-plugins-base_1.4.5.bb | 1 + 2 files changed, 70 insertions(+) create mode 100644 meta/recipes-

[OE-core] [PATCH] python3: security: disable -pie -fpie from Python3 compilation CFLAGS when security_flags is inherited.

2015-08-06 Thread Topi Kuutela
Signed-off-by: Topi Kuutela --- meta/conf/distro/include/security_flags.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/conf/distro/include/security_flags.inc b/meta/conf/distro/include/security_flags.inc index 3724972..ff600fa 100644 --- a/meta/conf/distro/include/security_flags.in

Re: [OE-core] [meta-oe][PATCH] dosfstools-2.11: Fix memory leak in mkdosfs

2015-08-06 Thread Paul Eggleton
On Thursday 06 August 2015 12:12:35 Alexander Kanavin wrote: > On 08/06/2015 12:06 PM, Amarnath Valluri wrote: > > Added new patch that fixes the memory leak that was introduced in > > mkdosfs-dir.patch. > > You should update the original patch then, not pile additional patches > on top. The least

Re: [OE-core] [meta-oe][PATCH] dosfstools-2.11: Fix memory leak in mkdosfs

2015-08-06 Thread Alexander Kanavin
On 08/06/2015 12:06 PM, Amarnath Valluri wrote: Added new patch that fixes the memory leak that was introduced in mkdosfs-dir.patch. You should update the original patch then, not pile additional patches on top. The least painful way is: 1) unpack the sources (manually from tarball, or using

Re: [OE-core] [PATCH] create-pull-request: cd to relative directory

2015-08-06 Thread Ed Bartosh
On Thu, Aug 06, 2015 at 09:38:16AM +0100, Paul Eggleton wrote: > On Wednesday 05 August 2015 20:33:48 Khem Raj wrote: > > On Wed, Aug 5, 2015 at 2:01 AM, Ed Bartosh > wrote: > > > create-pull-request -d path creates empty patches if directory > > > is specified as a path, i.e. ./bitbake or ./bitb

[OE-core] [meta-oe][PATCH] dosfstools-2.11: Fix memory leak in mkdosfs

2015-08-06 Thread Amarnath Valluri
Added new patch that fixes the memory leak that was introduced in mkdosfs-dir.patch. Signed-off-by: Amarnath Valluri --- .../dosfstools/dosfstools-Fix-memroy-leak.patch| 30 ++ .../recipes-devtools/dosfstools/dosfstools_2.11.bb | 1 + 2 files changed, 31 insertions(+) c

[OE-core] [PATCH 3/6] fontconfig: Upgrade 2.11.93 -> 2.11.94

2015-08-06 Thread Jussi Kukkonen
Signed-off-by: Jussi Kukkonen --- .../fontconfig/{fontconfig_2.11.93.bb => fontconfig_2.11.94.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/fontconfig/{fontconfig_2.11.93.bb => fontconfig_2.11.94.bb} (92%) diff --git a/meta/recipes-graphics/fo

[OE-core] [PATCH 1/6] gtk+3: Upgrade 3.16.4 -> 3.16.6

2015-08-06 Thread Jussi Kukkonen
Remove a backported patch. Signed-off-by: Jussi Kukkonen --- meta/recipes-gnome/gtk+/gtk+3/wayland-pango.patch | 28 -- .../gtk+/{gtk+3_3.16.4.bb => gtk+3_3.16.6.bb} | 5 ++-- 2 files changed, 2 insertions(+), 31 deletions(-) delete mode 100644 meta/recipes-gnome/gtk+

[OE-core] [PATCH 4/6] vte: Fix LICENSE to LGPL2.0

2015-08-06 Thread Jussi Kukkonen
Current releases of vte are LGPL 2.1+ but the one we have is still LGPL 2.0. Signed-off-by: Jussi Kukkonen --- meta/recipes-support/vte/vte.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/vte/vte.inc b/meta/recipes-support/vte/vte.inc index 4081a7f..8

[OE-core] [PATCH 6/6] which: Upgrade 2.20 -> 2.21

2015-08-06 Thread Jussi Kukkonen
* Drop one upstreamed patch, update the other one Signed-off-by: Jussi Kukkonen --- .../which/which-2.20/remove-declaration.patch | 18 -- .../which/{which-2.20 => which-2.21}/automake.patch| 14 +- .../which/{which_2.20.bb => which_2.21.bb} |

[OE-core] [PATCH 0/6] Bunch of version upgrades

2015-08-06 Thread Jussi Kukkonen
libinput goes to 0.21 which should be last release before 1.0. Other upgrades are minor. The vte change is just for LICENSE variable: our version is still LGPL2.0 instead of LGPL2.1+ like recent releases. The following changes since commit a8b723498c9a7106210db140452886894494b4d6: bitbake: c

[OE-core] [PATCH 2/6] gtk-icon-utils-native: Upgrade 3.16.4 -> 3.16.6

2015-08-06 Thread Jussi Kukkonen
Signed-off-by: Jussi Kukkonen --- ...tk-icon-utils-native_3.16.4.bb => gtk-icon-utils-native_3.16.6.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-gnome/gtk+/{gtk-icon-utils-native_3.16.4.bb => gtk-icon-utils-native_3.16.6.bb} (94%) diff --git a/meta/recipes-

[OE-core] [PATCH 5/6] libinput: Upgrade 0.18.0 -> 0.21.0

2015-08-06 Thread Jussi Kukkonen
Include a workaround patch suggested by upstream when using kernel 4.1.x. Signed-off-by: Jussi Kukkonen --- ...ics-need-to-fake-new-touches-on-TRIPLETAP.patch | 72 ++ .../{libinput_0.18.0.bb => libinput_0.21.0.bb} | 8 ++- 2 files changed, 77 insertions(+), 3 deletions(

Re: [OE-core] [PATCH] create-pull-request: cd to relative directory

2015-08-06 Thread Paul Eggleton
On Wednesday 05 August 2015 20:33:48 Khem Raj wrote: > On Wed, Aug 5, 2015 at 2:01 AM, Ed Bartosh wrote: > > create-pull-request -d path creates empty patches if directory > > is specified as a path, i.e. ./bitbake or ./bitbake/ or full path. > > It behaves expected way only if script is run with

Re: [OE-core] [PATCH] kernel-yocto: do_configme: Add $TOOLCHAIN_OPTIONS to CFLAGS

2015-08-06 Thread Ioan-Adrian Ratiu
On 05.08.2015 16:50, Bruce Ashfield wrote: On Wed, Aug 5, 2015 at 4:39 AM, Adrian Ratiu wrote: Bruce Ashfield wrote on 05.08.2015 05:17:14: On Tue, Aug 4, 2015 at 4:41 AM, Ioan-Adrian Ratiu wrote: The kernel configure step was broken by the sysroot poisoning in [1]. Can you be more preci