Re: [OE-core] [PATCH v2 0/2] Yocto Bug #6945

2015-07-29 Thread He Zhe
Ping. Is there any comments on this? Zhe On 07/28/2015 11:17 AM, He Zhe wrote: > Ping. > > On 07/27/2015 10:51 AM, He Zhe wrote: >> Ping. >> >> On 07/23/2015 03:48 PM, He Zhe wrote: >>> Ping. >>> >>> On 07/21/2015 03:23 PM, zhe...@windriver.com wrote: From: He Zhe - To support b

[OE-core] [PATCH] bjam-native: inhibit sysroot strip

2015-07-29 Thread wenzong.fan
From: Wenzong Fan The bjam is already stripped by default. Fix warning: WARNING: File '.../tmp/sysroots/x86_64-linux/usr/bin/bjam' from \ bjam-native was already stripped, this will prevent future debugging! Signed-off-by: Wenzong Fan --- meta/recipes-support/boost/bjam-native_1.58.0.bb |

[OE-core] [PATCH] image: Fix a build error by adding kernel dependence to do_rootfs

2015-07-29 Thread Firo Yang
Issue: LIN7-4290 do_rootfs needs a file named kernel-abiversion generated by virtual/kernel:do_packagedata to run depmod. If do_rootfs scheduled before virtual/kernel:do_packagedata that will make do_roofs failed because of leaking the file kernel-abiversion. So add the dependence of virtual/kern

[OE-core] [PATCH] guile: Add earlyclobber constraint to the SMULL outputs.

2015-07-29 Thread jackie.huang
From: Jackie Huang backport a patch to fix issue: {standard input}: Assembler messages: {standard input}:16966: rdhi, rdlo and rm must all be different Signed-off-by: Jackie Huang --- ...guile-VM-ASM_MUL-for-ARM-Add-earlyclobber.patch | 43 ++ meta/recipes-devtools/guile/gu

Re: [OE-core] [PATCH] image: Fix a build error by adding kernel dependence to do_rootfs

2015-07-29 Thread Paul Eggleton
Hi Firo, On Wednesday 29 July 2015 15:48:28 Firo Yang wrote: > Issue: LIN7-4290 > > do_rootfs needs a file named kernel-abiversion generated by > virtual/kernel:do_packagedata to run depmod. > > If do_rootfs scheduled before virtual/kernel:do_packagedata that will > make do_roofs failed because

Re: [OE-core] [PATCH] image: Fix a build error by adding kernel dependence to do_rootfs

2015-07-29 Thread Firo Yang
On 07/29/2015 04:50 PM, Paul Eggleton wrote: Hi Firo, On Wednesday 29 July 2015 15:48:28 Firo Yang wrote: Issue: LIN7-4290 do_rootfs needs a file named kernel-abiversion generated by virtual/kernel:do_packagedata to run depmod. If do_rootfs scheduled before virtual/kernel:do_packagedata tha

[OE-core] [PATCH 1/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Robert Yang
Signed-off-by: Robert Yang --- meta/conf/bitbake.conf |1 + 1 file changed, 1 insertion(+) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 730ab80..6775393 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -577,6 +577,7 @@ XORG_MIRROR = "http://xorg.freed

[OE-core] [PATCH 2/2] meta: git://github.com -> ${GITHUB_GIT}

2015-07-29 Thread Robert Yang
Signed-off-by: Robert Yang --- .../connman/connman-gnome_0.7.bb |2 +- meta/recipes-core/update-rc.d/update-rc.d_0.7.bb |2 +- meta/recipes-devtools/bootchart2/bootchart2_git.bb |2 +- .../build-compare/build-compare_git.bb |2 +- meta/recipes-devto

[OE-core] [PATCH 0/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Robert Yang
The following changes since commit 27d068d05239c26a3848eb101571acab54635e37: harfbuzz: upgrade to 1.0.1 (2015-07-27 23:28:23 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/github http://cgit.openembedded.org/cgit.cgi/openembedded-co

Re: [OE-core] [poky][PATCH v2 4/6] gstreamer1.0-plugins-base: Add video-frame related patch

2015-07-29 Thread Zhu Carol
Hi Otavio, The 1.4.2 fix is ugly, so [OE-core] [poky][PATCH v3 5/6] gstreamer1.0-plugins-base: Add videofilter related patch is used to revert it. Actually these patches are all back port from 1.5.1, I will change the Upstream-Status and merge these two patches together. B.R. Carol -O

[OE-core] [PATCH] sshcontrol: Use os.environ.copy() instead of copy.copy()

2015-07-29 Thread Richard Purdie
os.environ is special and copy.copy() doesn't do what we'd expect, changes in the child object change the parent. copy.deepcopy() is also known to have issues with it. Use the dedicated .copy() method which will not influence the parent. This fixes selftest failures where the DISPLAY variable di

Re: [OE-core] [PATCH 4/6] devtool: also load plugins from BBPATH

2015-07-29 Thread Paul Eggleton
Hmm, I guess we will have to add a command-line parameter to specify BBPATH (or the full plugin search path) so that tinfoil doesn't have to be instantiated when it's specified. Cheers, Paul On Wednesday 29 July 2015 14:58:37 ChenQi wrote: > Hi Christopher, > > I suspect this patch is causing

Re: [OE-core] [PATCH 0/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Paul Eggleton
Hi Robert, On Wednesday 29 July 2015 02:11:53 Robert Yang wrote: > The following changes since commit 27d068d05239c26a3848eb101571acab54635e37: > > harfbuzz: upgrade to 1.0.1 (2015-07-27 23:28:23 +0100) > > are available in the git repository at: > > git://git.openembedded.org/openembedded-

Re: [OE-core] [PATCH 0/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Robert Yang
On 07/29/2015 06:11 PM, Paul Eggleton wrote: Hi Robert, On Wednesday 29 July 2015 02:11:53 Robert Yang wrote: The following changes since commit 27d068d05239c26a3848eb101571acab54635e37: harfbuzz: upgrade to 1.0.1 (2015-07-27 23:28:23 +0100) are available in the git repository at: gi

Re: [OE-core] [PATCH] bjam-native: inhibit sysroot strip

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 08:34, wrote: > +# bjam is already stripped, don't strip it again > +INHIBIT_SYSROOT_STRIP = "1" > In case it's even needed to debug bjam-native, how hard would it be to stop bjam from being stripped in the first place? Ross -- ___

[OE-core] [poky][PATCH v4 2/5] gstreamer1.0-plugins-base: handle audio/video decoder error

2015-07-29 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 v4 4/5] gstreamer1.0-plugins-base: Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF related patch

2015-07-29 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 v4 0/5] gstreamer1.0-plugins-base: Add patches for Gstreamer 1.4.5 base

2015-07-29 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 soft r

[OE-core] [poky][PATCH v4 1/5] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-07-29 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 v4 5/5] gstreamer1.0-plugins-base: Add videoencoder related patch

2015-07-29 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

[OE-core] [poky][PATCH v4 3/5] gstreamer1.0-plugins-base: update video alignment after video alignment

2015-07-29 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 +++

Re: [OE-core] [PATCH 0/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Olof Johansson
Excerpts from Robert Yang's message of 2015-07-29 12:19:06 +0200: > It is just like what GNOME_GIT, GNU_MIRROR and others did. Tbh, I don't understand them either, but maybe that's just me. What is the reason? I think it makes it harder to see what is happening. -- olof johansson -- ___

Re: [OE-core] [poky][PATCH v2 4/6] gstreamer1.0-plugins-base: Add video-frame related patch

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 6:22 AM, Zhu Carol wrote: >The 1.4.2 fix is ugly, so [OE-core] [poky][PATCH v3 5/6] > gstreamer1.0-plugins-base: Add videofilter related patch is used to revert it. >Actually these patches are all back port from 1.5.1, I will change the > Upstream-Status and merge

Re: [OE-core] [PATCH] tzdata: Add marking for config files in recipe

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 02:49, Li Zhou wrote: > meta/recipes-extended/tzdata/tzdata.inc |2 ++ > This inc file was removed last month, please rebase to master. Ross -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://

Re: [OE-core] [poky][PATCH v4 1/5] gstreamer1.0-plugins-base: Bug fix for id3demux issue

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 3:25 PM, Yuqing Zhu wrote: > 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 Acked-by: Otavio Salvador --

Re: [OE-core] [poky][PATCH v4 3/5] gstreamer1.0-plugins-base: update video alignment after video alignment

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 3:25 PM, Yuqing Zhu wrote: > 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 Acked-by: Otavio

Re: [OE-core] [poky][PATCH v4 4/5] gstreamer1.0-plugins-base: Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF related patch

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 3:25 PM, Yuqing Zhu wrote: > -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 o

Re: [OE-core] [poky][PATCH v4 5/5] gstreamer1.0-plugins-base: Add videoencoder related patch

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 3:25 PM, Yuqing Zhu wrote: > 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 Acked-by: Otav

Re: [OE-core] [PATCH v2] mdadm: 3.3.2 -> 3.3.3

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 05:13, Li xin wrote: > +++ b/meta/recipes-extended/mdadm/files/mdadm.conf > @@ -0,0 +1 @@ > +MAILADDR r...@mydomain.com > Can this line be commented out or at least a better domain used. mydomain.comm is a domain registrar so r...@mydomain.com is probably a real person... If

Re: [OE-core] [poky][PATCH v4 4/5] gstreamer1.0-plugins-base: Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF related patch

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 9:42 AM, Otavio Salvador wrote: > On Wed, Jul 29, 2015 at 3:25 PM, Yuqing Zhu wrote: >> -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. >>

Re: [OE-core] [poky][PATCH v4 2/5] gstreamer1.0-plugins-base: handle audio/video decoder error

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 3:25 PM, Yuqing Zhu wrote: > 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:

Re: [OE-core] [PATCH 2/9] file: 5.23 -> 5.24

2015-07-29 Thread Richard Purdie
On Tue, 2015-07-28 at 15:48 +0200, Martin Jansa wrote: > On Tue, Jul 28, 2015 at 02:08:20PM +0100, Burton, Ross wrote: > > On 28 July 2015 at 03:12, Robert Yang wrote: > > > > > * Use git repo rather than tarball since the original SRC_URI is not > > > stable, it is not reachable sometimes. > >

[OE-core] [PATCH] bitbake.conf: Remove replace call from MACHINE_ARCH

2015-07-29 Thread Ioan-Adrian Ratiu
This replace() hack was added to fix Yocto bug #946 [1] with commit id 69b3a11. It is time to fix this properly. It should not be an issue anymore with libzypp after 4.5 years, but if the initial bug still exists, then a more intelligent solution should be used to fix it. If a package build fails

Re: [OE-core] [PATCH v2 0/2] Yocto Bug #6945

2015-07-29 Thread Bruce Ashfield
On 15-07-29 03:32 AM, He Zhe wrote: Ping. Is there any comments on this? I'm obviously ok with the patch in its current RFC status. It works and I've tested it in my tree (hence why I've been quiet on this one). If it meets the style for merging into core, and that it doesn't break other laye

Re: [OE-core] [PATCH][resend] perl: fix build failure if building dir has the "blib" string

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 04:08, Rongqing Li wrote: > I have update the perl bug report > > https://rt.perl.org/Public/Bug/Display.html?id=125603 > Upstream now appears to agree with you - merging to mut. :) Ross -- ___ Openembedded-core mailing list Openem

Re: [OE-core] [PATCH 7/8] busybox: disable fstrim in defconfig

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 00:21, Andre McCurdy wrote: > The fstrim applet (to discard unused blocks on a mounted filesystem) > doesn't seem like core functionality, so disable by default. > With SSDs being more common, is this really true? What's the size impact of this? Ross --

Re: [OE-core] [PATCH 0/4] Fix builds for MIPS64 N32

2015-07-29 Thread Mark Hatle
On 7/28/15 12:26 PM, Dmitry Eremin-Solenikov wrote: > 2015-07-21 18:26 GMT+03:00 Mark Hatle : >> On 7/21/15 9:31 AM, Mark Hatle wrote: >>> On 7/21/15 3:23 AM, Dmitry Eremin-Solenikov wrote: Hello, 2015-07-20 18:47 GMT+03:00 Mark Hatle : > Between customer escalations, other work

Re: [OE-core] [PATCH 0/4] Fix builds for MIPS64 N32

2015-07-29 Thread Dmitry Eremin-Solenikov
2015-07-29 17:58 GMT+03:00 Mark Hatle : > On 7/28/15 12:26 PM, Dmitry Eremin-Solenikov wrote: >> 2015-07-21 18:26 GMT+03:00 Mark Hatle : >>> On 7/21/15 9:31 AM, Mark Hatle wrote: On 7/21/15 3:23 AM, Dmitry Eremin-Solenikov wrote: > Hello, > > 2015-07-20 18:47 GMT+03:00 Mark Hatle :

Re: [OE-core] [oe-commits] Ross Burton : gamin: remove

2015-07-29 Thread Martin Jansa
On Mon, Jul 20, 2015 at 09:41:46AM +, g...@git.openembedded.org wrote: > Module: openembedded-core.git > Branch: master > Commit: d29595925b699827fbd3279ee5368e32e0a380f3 > URL: > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d29595925b699827fbd3279ee5368e32e0a380f3 > > A

[OE-core] [poky][PATCH v4] pulseaudio

2015-07-29 Thread Yuqing Zhu
Fix no process to open pulseaudio in yocto. Yuqing Zhu (1): pulseaudio: revert commit 42156d2b5ac797e5f28f8d0d38b691053f3f6fc7 ...ch-Avoid-specifically-starting-PA-and-rel.patch | 31 ++ .../pulseaudio/pulseaudio_6.0.bb | 1 + 2 files changed, 32 inserti

[OE-core] [poky][PATCH v4] pulseaudio: revert commit 42156d2b5ac797e5f28f8d0d38b691053f3f6fc7

2015-07-29 Thread Yuqing Zhu
Revert "launch: Avoid specifically starting PA and rely on autospawn/socket activation" or the pulseaudio can't be opened in yocto. Signed-off-by: Yuqing Zhu --- ...ch-Avoid-specifically-starting-PA-and-rel.patch | 31 ++ .../pulseaudio/pulseaudio_6.0.bb |

Re: [OE-core] [poky][PATCH v4] pulseaudio: revert commit 42156d2b5ac797e5f28f8d0d38b691053f3f6fc7

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 8:49 PM, Yuqing Zhu wrote: > Revert "launch: Avoid specifically starting PA and rely on autospawn/socket > activation" > or the pulseaudio can't be opened in yocto. > > Signed-off-by: Yuqing Zhu Can you explain what this revert tries to fix? -- Otavio Salvador

Re: [OE-core] [PATCH 0/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 8:48 AM, Olof Johansson wrote: > Excerpts from Robert Yang's message of 2015-07-29 12:19:06 +0200: >> It is just like what GNOME_GIT, GNU_MIRROR and others did. > > Tbh, I don't understand them either, but maybe that's just me. What is > the reason? I think it makes it hard

Re: [OE-core] [PATCH 7/8] busybox: disable fstrim in defconfig

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 11:22 AM, Burton, Ross wrote: > > On 29 July 2015 at 00:21, Andre McCurdy wrote: >> >> The fstrim applet (to discard unused blocks on a mounted filesystem) >> doesn't seem like core functionality, so disable by default. > > > With SSDs being more common, is this really tru

Re: [OE-core] [PATCH 8/8] busybox: disable volumeid support for exFAT, F2FS and NILFS

2015-07-29 Thread Otavio Salvador
On Tue, Jul 28, 2015 at 8:21 PM, Andre McCurdy wrote: > These are less common filesystem formats, so disable volumeid support > for them by default. > > Signed-off-by: Andre McCurdy F2FS could be of use. It is being more adopted now that Android is starting to be deployed to some devices with it

Re: [OE-core] [PATCH 4/6] devtool: also load plugins from BBPATH

2015-07-29 Thread Christopher Larson
On Wed, Jul 29, 2015 at 2:56 AM, Paul Eggleton < paul.eggle...@linux.intel.com> wrote: > Hmm, I guess we will have to add a command-line parameter to specify BBPATH > (or the full plugin search path) so that tinfoil doesn't have to be > instantiated when it's specified. > Indeed, sorry about that

Re: [OE-core] [PATCH] watchdog: kill update-rc.d when not using sysvinit

2015-07-29 Thread Rehman, Abdur
watchdog_5.14.bb does not inherit systemd, and so INHIBIT_UPDATERCD_BBCLASS does not get set. While trying to build watchdog with systemd in DISTRO_FEATURES but not sysvinit, following warning is observed: WARNING: QA Issue: watchdog rdepends on initscripts-functions, but it isn't a build

Re: [OE-core] [poky][PATCH v4 4/5] gstreamer1.0-plugins-base: Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF related patch

2015-07-29 Thread Carlos Rafael Giani
Hi Zhu, This backport seems useful. If I understand it correctly, the main benefit is that buffers that come from the video decoder won't be copied when make_writable() is called, which otherwise would happen with this patch (because the video decoder still has a reference to the buffer). The

Re: [OE-core] [PATCH] watchdog: kill update-rc.d when not using sysvinit

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 19:05, Rehman, Abdur wrote: > watchdog_5.14.bb does not inherit systemd, and so > INHIBIT_UPDATERCD_BBCLASS does > not get set. > > While trying to build watchdog with systemd in DISTRO_FEATURES but not > sysvinit, > following warning is observed: > WARNING: QA Issue: watch

Re: [OE-core] [PATCH 7/8] busybox: disable fstrim in defconfig

2015-07-29 Thread Andre McCurdy
On Wed, Jul 29, 2015 at 9:28 AM, Otavio Salvador wrote: > On Wed, Jul 29, 2015 at 11:22 AM, Burton, Ross wrote: >> >> On 29 July 2015 at 00:21, Andre McCurdy wrote: >>> >>> The fstrim applet (to discard unused blocks on a mounted filesystem) >>> doesn't seem like core functionality, so disable b

Re: [OE-core] [PATCH 8/8] busybox: disable volumeid support for exFAT, F2FS and NILFS

2015-07-29 Thread Andre McCurdy
On Wed, Jul 29, 2015 at 9:33 AM, Otavio Salvador wrote: > On Tue, Jul 28, 2015 at 8:21 PM, Andre McCurdy wrote: >> These are less common filesystem formats, so disable volumeid support >> for them by default. >> >> Signed-off-by: Andre McCurdy > > F2FS could be of use. It is being more adopted n

Re: [OE-core] [PATCH 8/8] busybox: disable volumeid support for exFAT, F2FS and NILFS

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 3:49 PM, Andre McCurdy wrote: > On Wed, Jul 29, 2015 at 9:33 AM, Otavio Salvador > wrote: >> On Tue, Jul 28, 2015 at 8:21 PM, Andre McCurdy wrote: >>> These are less common filesystem formats, so disable volumeid support >>> for them by default. >>> >>> Signed-off-by: And

Re: [OE-core] [PATCH] watchdog: kill update-rc.d when not using sysvinit

2015-07-29 Thread Christopher Larson
On Wed, Jul 29, 2015 at 11:35 AM, Burton, Ross wrote: > On 29 July 2015 at 19:05, Rehman, Abdur wrote: > >> watchdog_5.14.bb does not inherit systemd, and so >> INHIBIT_UPDATERCD_BBCLASS does >> not get set. >> >> While trying to build watchdog with systemd in DISTRO_FEATURES but not >> sysvinit

Re: [OE-core] [PATCH] watchdog: kill update-rc.d when not using sysvinit

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 20:27, Christopher Larson wrote: > I don’t think we really want initscripts installed in a systemd-only > distro, particularly if systemd is built with sysvcompat enabled, as we > don’t want to run the sysvinit scripts for services which are already > covered by systemd proper,

[OE-core] [scripts][PATCH] yocto-layer: Stops duplication of "meta-" prefix

2015-07-29 Thread humberto . ibarra . lopez
From: Humberto Ibarra The yocto-layer script puts an extra "meta-" prefix to the given layer name even when the prefix is already there. This fix avoids duplicating the prefix in these situations. [YOCTO #8050] Signed-off-by: Humberto Ibarra --- scripts/yocto-layer | 2 ++ 1 file changed, 2 i

Re: [OE-core] [oe-commits] Ross Burton : gamin: remove

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 16:01, Martin Jansa wrote: > Someone interested in fixing tracer recipe? > > NOTE: Resolving any missing task queue dependencies > ERROR: Nothing PROVIDES 'gamin' (but > /home/jenkins/oe/world/shr-core/meta-openembedded/meta-gnome/recipes-support/tracker/ > tracker_0.14.2.bb DE

Re: [OE-core] [PATCH] watchdog: kill update-rc.d when not using sysvinit

2015-07-29 Thread Christopher Larson
On Wed, Jul 29, 2015 at 12:48 PM, Burton, Ross wrote: > On 29 July 2015 at 20:27, Christopher Larson > wrote: > >> I don’t think we really want initscripts installed in a systemd-only >> distro, particularly if systemd is built with sysvcompat enabled, as we >> don’t want to run the sysvinit scr

Re: [OE-core] [PATCH] watchdog: kill update-rc.d when not using sysvinit

2015-07-29 Thread Martin Jansa
On Wed, Jul 29, 2015 at 12:27:15PM -0700, Christopher Larson wrote: > On Wed, Jul 29, 2015 at 11:35 AM, Burton, Ross > wrote: > > > On 29 July 2015 at 19:05, Rehman, Abdur wrote: > > > >> watchdog_5.14.bb does not inherit systemd, and so > >> INHIBIT_UPDATERCD_BBCLASS does > >> not get set. > >>

Re: [OE-core] [poky][PATCH v4] pulseaudio: revert commit 42156d2b5ac797e5f28f8d0d38b691053f3f6fc7

2015-07-29 Thread Tanu Kaskinen
On Thu, 2015-07-30 at 07:49 +0800, Yuqing Zhu wrote: > Revert "launch: Avoid specifically starting PA and rely on autospawn/socket > activation" > or the pulseaudio can't be opened in yocto. > > Signed-off-by: Yuqing Zhu > --- > ...ch-Avoid-specifically-starting-PA-and-rel.patch | 31 > +++

Re: [OE-core] [poky][PATCH v4] pulseaudio: revert commit 42156d2b5ac797e5f28f8d0d38b691053f3f6fc7

2015-07-29 Thread Otavio Salvador
On Wed, Jul 29, 2015 at 5:49 PM, Tanu Kaskinen wrote: > This is safe to apply, but I'd like to understand why you think this is > needed. The commit message says that without this patch, "pulseaudio > can't be opened in yocto". PulseAudio works fine in core-image-sato at > least, so what is differ

[OE-core] [for-fido] Backport for perf - support for 4.1 kernels

2015-07-29 Thread Otavio Salvador
Hello, Is it possible for you to cherry-pick OE-Core:46f8420 for Fido? We got one board using 4.1 kernel and it fails badly. It is in use in master since April and had no change since its inclusion so it is fairly safe. Regards, -- Otavio Salvador O.S. Systems http:

Re: [OE-core] [PATCH 4/6] devtool: also load plugins from BBPATH

2015-07-29 Thread Christopher Larson
On Wed, Jul 29, 2015 at 9:40 AM, Christopher Larson wrote: > On Wed, Jul 29, 2015 at 2:56 AM, Paul Eggleton < > paul.eggle...@linux.intel.com> wrote: > >> Hmm, I guess we will have to add a command-line parameter to specify >> BBPATH >> (or the full plugin search path) so that tinfoil doesn't hav

Re: [OE-core] [poky][PATCH v4 2/5] gstreamer1.0-plugins-base: handle audio/video decoder error

2015-07-29 Thread Carlos Rafael Giani
This one is quite difficult. On one hand, I see the benefits. If for example an audio track is broken but the video track is fine, it should not stop the entire playback. On the other hand, the error message about no valid frames found is quite significant, and if a player suddenly stops becaus

[OE-core] [PATCH 0/3] Fix a couple populate_sdk_ext issues

2015-07-29 Thread Christopher Larson
From: Christopher Larson - Explicitly pass BBPATH to devtool as Paul Eggleton suggests, to avoid needing to acquire the bitbake lock, to resolve the issue in populate_sdk_ext. - Use the oe-core lnr script rather than ln -sr to improve host portability (not all hosts have recent coreutils).

[OE-core] [PATCH 2/3] devtool: add --bbpath argument

2015-07-29 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- scripts/devtool | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/scripts/devtool b/scripts/devtool index 557a830..4a1f2d6 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -189,6 +189,7 @@ d

[OE-core] [PATCH 3/3] populate_sdk_ext: pass BBPATH to devtool --bbpath

2015-07-29 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- meta/classes/populate_sdk_ext.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 0151468..a36bf16 100644 --- a/meta/clas

[OE-core] [PATCH 1/3] populate_sdk_ext: use lnr, not ln -sr, for portability

2015-07-29 Thread Christopher Larson
From: Christopher Larson Not all hosts are running sufficiently new coreutils. Signed-off-by: Christopher Larson --- meta/classes/populate_sdk_ext.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_

[OE-core] [oe-core][PATCH 1/1][v2] nss: advance to version 3.19.1

2015-07-29 Thread Joe Slater
Picks up fixes for CVE-2015-2721 and CVE-2015-2730. Specify previously overlooked license file COPYING. Fold nss.inc into recipe. Signed-off-by: Joe Slater --- meta/recipes-support/nss/nss_3.17.3.bb |7 --- .../recipes-support/nss/{nss.inc => nss_3.19.1.bb} | 14 +

Re: [OE-core] [PATCH 1/8] busybox: merge login-utilities.cfg into defconfig

2015-07-29 Thread Richard Purdie
On Tue, 2015-07-28 at 16:20 -0700, Andre McCurdy wrote: > The login-utilities.cfg busybox config fragment was added during the > transition of the default login manager from tinylogin to busybox [1]. > The tinylogin recipe was removed from oe-core prior to the 1.5 (dora) > release [2]. > > Merging

Re: [OE-core] [oe-core][PATCH 1/1] nss: advance to version 3.19.1

2015-07-29 Thread Slater, Joseph
ok. I think I just sent a new version of the patch (but for some reason I did not get a copy). Joe From: Burton, Ross [mailto:ross.bur...@intel.com] Sent: Tuesday, July 28, 2015 12:46 PM To: Slater, Joseph Cc: OE-core Subject: Re: [OE-core] [oe-core][PATCH 1/1] nss: advance to version 3.19.1

Re: [OE-core] [PATCH 0/2] bitbake.conf: add GITHUB_GIT

2015-07-29 Thread Robert Yang
On 07/30/2015 12:27 AM, Otavio Salvador wrote: On Wed, Jul 29, 2015 at 8:48 AM, Olof Johansson wrote: Excerpts from Robert Yang's message of 2015-07-29 12:19:06 +0200: It is just like what GNOME_GIT, GNU_MIRROR and others did. Tbh, I don't understand them either, but maybe that's just me.

Re: [OE-core] [PATCH] tzdata: Add marking for config files in recipe

2015-07-29 Thread Zhou, Li
I have setup up poky as below doc described: http://www.yoctoproject.org/docs/1.8/yocto-project-qs/yocto-project-qs.html $ git clone http://git.yoctoproject.org/git/poky $ cd poky $ git checkout -b fido origin/fido $ source oe-init-build-env Do you mean that I should use bran

[OE-core] [PATCH] alsa-utils: assume the alsa storing is success if machine has no sound card

2015-07-29 Thread rongqing.li
From: Roy Li Signed-off-by: Roy Li --- ...oring-is-success-if-not-sound-card-device.patch | 34 ++ meta/recipes-multimedia/alsa/alsa-utils_1.0.29.bb | 1 + 2 files changed, 35 insertions(+) create mode 100644 meta/recipes-multimedia/alsa/alsa-utils/assume-storing-is-succ

Re: [OE-core] [yocto] glibc 2.22

2015-07-29 Thread Khem Raj
On Tue, Jul 28, 2015 at 12:48 AM, Lei, Maohui wrote: > Hi Khem, > > >> glibc 2.22 will release end of this month. For some time I have put >> together the update here >> >> http://git.openembedded.org/openembedded-core-contrib/commit/?h=kraj/m >> aster&id=0 >> 2e73ea526d94f21c7ef82eb96b062eff8ebb8

[OE-core] [PATCH v2] tzdata: Add marking for config files in recipe

2015-07-29 Thread Li Zhou
The tzdata recipe does not mark the /etc/timezone file and /etc/localtime link as configuration files. An on target update would then overwite the user modified versions of those files. Add those files in CONFFILES_${PN}. Signed-off-by: Li Zhou --- meta/recipes-extended/tzdata/tzdata_2015e.bb |

Re: [OE-core] [PATCH] u-boot-mkimage: fix a building failure on OpenSus

2015-07-29 Thread Rongqing Li
On 2015年07月28日 19:47, Burton, Ross wrote: On 28 July 2015 at 03:00, mailto:rongqing...@windriver.com>> wrote: +config.mk will be included only if auto.conf is newer than .config +but in some system, the HPET is not enabled, the smallest unit of +time is seco

[OE-core] [PATCH 1/1] smartpm: set noprogress for pycurl

2015-07-29 Thread Kai Kang
Set NOPROGRESS for pycurl just as same as default operation in pycurl module itself. If set NOPROGRESS with 0 for pycurl, it causes dead lock issue of Python GIL when call smart library by python gui just like pygtk. Signed-off-by: Kai Kang --- .../smart-set-noprogress-for-pycurl.patch

[OE-core] [PATCH 0/1] Fix dead lock issue when use smart with pygtk

2015-07-29 Thread Kai Kang
Hi Ross, I sent this patch before, but no comment and has not been merged yet. So I re-send it for review. Thanks. The following changes since commit 2a1573841e2b5dbfce93aaaf27ad7177c71f45ab: sshcontrol: Use os.environ.copy() instead of copy.copy() (2015-07-29 22:54:12 +0100) are available

[OE-core] [PATCH v3] mdadm: 3.3.2 -> 3.3.3

2015-07-29 Thread Li xin
Upgrade mdadm from 3.3.2 to 3.3.3 1) Remove backported patch:inline.patch 2) update context of mdadm-3.3.2_x32_abi_time_t.patch 3) Add systemd support: add systemd service file mdmonitor.service and install conf example file. Signed-off-by: Li Xin --- meta/recipes-extended/mdadm/files/inline.