[OE-core] [PATCH 0/1] apr-util: enable ptest support

2014-01-17 Thread Chong Lu
The following changes since commit cfd1520b4b492ab27b2900ba3510abe6f288097e: oe-selftest: separated the SStateBase and SStateTests in different modules (2014-01-16 12:18:52 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib chonglu/apr-util

[OE-core] [PATCH 1/1] apr-util: enable ptest support

2014-01-17 Thread Chong Lu
Install apr-util test suite and run it as ptest. Signed-off-by: Chong Lu chong...@windriver.com --- meta/recipes-support/apr/apr-util/run-ptest | 6 ++ meta/recipes-support/apr/apr-util_1.5.2.bb | 19 ++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644

[OE-core] [PATCH 0/1] tcl: fix the TCL_INCLUDE_SPEC

2014-01-17 Thread Robert Yang
The following changes since commit 981567c4dfef59be08373f124b36739449a546a1: sstate.bbclass: remove previous version's stamp (2014-01-17 13:02:49 +0800) are available in the git repository at: git://git.pokylinux.org/poky-contrib rbt/tcl

[OE-core] [PATCH 1/1] tcl: fix the TCL_INCLUDE_SPEC

2014-01-17 Thread Robert Yang
configure and configure.in: -eval TCL_INCLUDE_SPEC=\-I${includedir}\ +eval TCL_INCLUDE_SPEC=\-I${includedir}/tcl${VERSION}\ The other changes are because I use git to create the patch while the previous one uses svn. (LOCAL REV: NOT UPSTREAM) -- Sent to oe-core on 20140117 [YOCTO #5732] Signed-off

[OE-core] [PATCH] oe-selftest: Patch sstate tests to work with new sstate-cache naming and content

2014-01-17 Thread Corneliu Stoicescu
Made modifications to account for: - .siginfo files present in sstate-cache from non sstate-enabled tasks - new naming format for sstate files Signed-off-by: Corneliu Stoicescu corneliux.stoice...@intel.com --- meta/lib/oeqa/selftest/sstatetests.py | 35 + 1

Re: [OE-core] [PATCH] oe-selftest: Patch sstate tests to work with new sstate-cache naming and content

2014-01-17 Thread Stoicescu, CorneliuX
I forgot a few comment lines. I will resend the patch. -Original Message- From: Stoicescu, CorneliuX Sent: Friday, January 17, 2014 1:11 PM To: openembedded-core@lists.openembedded.org Cc: Stoicescu, CorneliuX Subject: [PATCH] oe-selftest: Patch sstate tests to work with new sstate-

[OE-core] [PATCH] matchbox-keyboard: daemonize launch

2014-01-17 Thread Alexandre Belloni
The .shbg extension is not properly supported by the Xsession script provided by xserver-common. Move the main part of the Xsession.d script to a script in usr/bin then add a Xsession.d script to start it in the background. See discussion here:

[OE-core] [PATCH V2] oe-selftest: Patch sstate tests to work with new sstate-cache naming and content

2014-01-17 Thread Corneliu Stoicescu
Made modifications to account for: - .siginfo files present in sstate-cache from non sstate-enabled tasks - new naming format for sstate files Signed-off-by: Corneliu Stoicescu corneliux.stoice...@intel.com --- meta/lib/oeqa/selftest/sstatetests.py | 28 +++- 1 file

Re: [OE-core] [PATCH 0/5] systemd misc fixes

2014-01-17 Thread Martin Jansa
On Fri, Jan 17, 2014 at 02:46:33PM +0800, Chen Qi wrote: The following changes since commit cfd1520b4b492ab27b2900ba3510abe6f288097e: oe-selftest: separated the SStateBase and SStateTests in different modules (2014-01-16 12:18:52 +) are available in the git repository at:

[OE-core] [PATCH] update-alternatives: We now use u-a in nativesdk so make sure the dependency is present

2014-01-17 Thread Richard Purdie
When update-alternatives was part of opkg which got built in most nativesdk scenarios, this missing dependency wasn't an issue. We now need nativesdk-opkg-utils so we need to ensure the dependency is present in nativesdk cases. This avoids build failures with the recent u-a move to opkg-utils.

[OE-core] [PATCH] opkg/opkg-utils/chkconfig: Clean up u-a-cworth references

2014-01-17 Thread Richard Purdie
Catch some u-a-cworth references that slipped through the move of u-a to opkg-utils and its rename to -opkg. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb

Re: [OE-core] [PATCH 1/1] sstate.bbclass: remove previous version's stamp

2014-01-17 Thread Richard Purdie
On Fri, 2014-01-17 at 14:43 +0800, Robert Yang wrote: There is a potential problem if we don't remove the previous version's stamp, for example: The depend chain is: libtool-native - autoconf-native - m4-native We have two m4-native: 1.4.9 and 1.4.7 1) Clean all of them to make a fresh

[OE-core] [PATCH V2 0/5] systemd misc fixes

2014-01-17 Thread Chen Qi
The following changes since commit 8163854adf87ac42a8f08ee25685d0ce1efb4724: oe-selftest: separated the SStateBase and SStateTests in different modules (2014-01-16 12:18:44 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/systemd-misc-fixes2

[OE-core] [PATCH V2 1/5] systemd: add 'less' to its RDEPENDS

2014-01-17 Thread Chen Qi
The less command provided by busybox cannot interpret the control character, resulting in obscure output of the journalctl command in a systemd based image. Add the 'less' package to systemd's RDEPENDS so that the output of 'journalctl' looks clear to users. [YOCTO #5723] Signed-off-by: Chen Qi

[OE-core] [PATCH V2 2/5] dropbear: add systemd unit files

2014-01-17 Thread Chen Qi
This patch mainly comes from meta-systemd with a few modifications. The purpose is to get rid of the LSB init scripts in systemd images. [YOCTO #4420] Signed-off-by: Chen Qi qi.c...@windriver.com --- meta/recipes-core/dropbear/dropbear.inc| 17 -

[OE-core] [PATCH V2 3/5] openssh: fixes for systemd

2014-01-17 Thread Chen Qi
This patch contains a few fixes for the systemd unit files of openssh. The fixes use the same unit files in Fedora 20 as a reference. 1) Remove sshdgenkeys.service and sshd@.service from SYSTEMD_SERVICE. 2) Fix the dependency and logic of sshdgenkeys.service. Signed-off-by: Chen Qi

[OE-core] [PATCH V2 5/5] at: add systemd support

2014-01-17 Thread Chen Qi
Add systemd support for at. This patch mainly comes from meta-systemd. [YOCTO #4420] Signed-off-by: Chen Qi qi.c...@windriver.com --- meta/recipes-extended/at/at_3.1.14.bb | 10 +- meta/recipes-extended/at/files/atd.service |9 + 2 files changed, 18 insertions(+), 1

[OE-core] [PATCH V2 4/5] distcc: add systemd support

2014-01-17 Thread Chen Qi
Add systemd support for distcc. These unit files mainly use the same files in Fedora 20 as a reference. [YOCTO #4420] Signed-off-by: Chen Qi qi.c...@windriver.com --- meta/recipes-devtools/distcc/distcc_3.1.bb | 14 +++--- meta/recipes-devtools/distcc/files/default |

Re: [OE-core] [PATCH 0/5] systemd misc fixes

2014-01-17 Thread ChenQi
On 01/17/2014 06:20 PM, Martin Jansa wrote: On Fri, Jan 17, 2014 at 02:46:33PM +0800, Chen Qi wrote: The following changes since commit cfd1520b4b492ab27b2900ba3510abe6f288097e: oe-selftest: separated the SStateBase and SStateTests in different modules (2014-01-16 12:18:52 +) are

Re: [OE-core] [PATCH v2 0/3] Change update-alternatives provider

2014-01-17 Thread Richard Purdie
On Thu, 2014-01-16 at 17:59 +, Paul Barker wrote: The update-alternatives script has been copied from opkg to opkg-utils so the openembedded recipe for opkg-utils is updated accordingly. Changing the default provider of update-alternatives to opkg-utils allows dependencies to be added

[OE-core] [PATCH] glib-2.0: add explicit build dependency on DBus when ptest is enabled

2014-01-17 Thread Ross Burton
If the tests are enabled then configure will check for the presence DBus. It's generally present through the runtime dependencies so this often succeeds but as it isn't a build dependency it's possible for DBus to be present at configure time but removed at compile time, resulting in build

Re: [OE-core] [PATCH 1/1] sstate.bbclass: remove previous version's stamp

2014-01-17 Thread Robert Yang
On 01/17/2014 06:36 PM, Richard Purdie wrote: On Fri, 2014-01-17 at 14:43 +0800, Robert Yang wrote: +# Keep the sigdata +if not re.match(re_sigdata, stfile): +oe.path.remove(stfile) I'm not sure its worth the overhead of using regexps here. Can we not do

[OE-core] [PATCH V2] glib-2.0: add explicit build dependency on DBus when ptest is enabled

2014-01-17 Thread Ross Burton
If the tests are enabled then configure will check for the presence DBus. It's generally present through the runtime dependencies so this often succeeds but as it isn't a build dependency it's possible for DBus to be present at configure time but removed at compile time, resulting in build

[OE-core] [PATCH] opkg-utils: Add basic PACKAGECONFIG for python dependencies

2014-01-17 Thread Richard Purdie
In small configurations its useful not to have python dependencies. This patch adds code to disable those using PACKAGECONFIG. This allows us to fix poky-tiny after the recent move of update-alternatives to opkg-utils. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff

[OE-core] [PATCH] opkg-utils: Remove strange PACKAGES native override

2014-01-17 Thread Richard Purdie
This code makes no sense, native.bbclass clears PACKAGES anyway. Drop it. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org --- diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index 6a3cf55..80efa8f 100644 ---

Re: [OE-core] [PATCH V2 1/5] systemd: add 'less' to its RDEPENDS

2014-01-17 Thread Burton, Ross
On 17 January 2014 10:39, Chen Qi qi.c...@windriver.com wrote: The less command provided by busybox cannot interpret the control character, resulting in obscure output of the journalctl command in a systemd based image. Add the 'less' package to systemd's RDEPENDS so that the output of

Re: [OE-core] [PATCH 1/5] systemd: add 'less' to its RDEPENDS

2014-01-17 Thread Enrico Scholz
Chen Qi qi.chen-cwa4wttnnzf54taoqty...@public.gmane.org writes: +# less package is needed to correctly display the contents of 'journalctl' +RDEPENDS_${PN} += kmod dbus util-linux-mount less please make this an RRECOMMENDS; people can set 'SYSTEMD_PAGER=' or pipe the journalctl output and do

Re: [OE-core] [PATCH v2 0/3] Change update-alternatives provider

2014-01-17 Thread Paul Barker
On 17 January 2014 10:47, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Thu, 2014-01-16 at 17:59 +, Paul Barker wrote: The update-alternatives script has been copied from opkg to opkg-utils so the openembedded recipe for opkg-utils is updated accordingly. Changing the

Re: [OE-core] [PATCH 1/1] sstate.bbclass: remove previous version's stamp

2014-01-17 Thread Richard Purdie
On Fri, 2014-01-17 at 19:01 +0800, Robert Yang wrote: On 01/17/2014 06:36 PM, Richard Purdie wrote: On Fri, 2014-01-17 at 14:43 +0800, Robert Yang wrote: +# Keep the sigdata +if not re.match(re_sigdata, stfile): +oe.path.remove(stfile) I'm not sure its

Re: [OE-core] RFC: Maintain backwards compatibility or not for module-base.bbclass

2014-01-17 Thread Peter Kjellerstedt
I will aggregate my responses to Koen, Bruce and Phil below. -Original Message- From: Koen Kooi [mailto:k...@dominion.thruhere.net] Sent: den 16 januari 2014 20:19 To: Peter Kjellerstedt Cc: OE Core (openembedded-core@lists.openembedded.org); Phil Blundell Subject: Re: [OE-core]

Re: [OE-core] [PATCH] util-linux: add reset.1 manpage in update-alternatives

2014-01-17 Thread Matthieu CRAPET
Should I create an entry in https://bugzilla.yoctoproject.org/ (OE-Core component)? -Message d'origine- De : Matthieu Crapet [mailto:matthieu.cra...@ingenico.com] Envoyé : mardi 14 janvier 2014 16:10 À : openembedded-core@lists.openembedded.org Cc : Matthieu CRAPET Objet : [PATCH]

Re: [OE-core] [PATCH V3 2/2] Add missing RDEPENDS of initscripts-functions

2014-01-17 Thread Paul Eggleton
Hi Qi, On Monday 06 January 2014 15:27:35 Chen Qi wrote: Now that the initscripts-functions has been packaged separately, packages which may use the functions script should have a runtime dependency on it. Signed-off-by: Chen Qi qi.c...@windriver.com ---

Re: [OE-core] [PATCH] util-linux: add reset.1 manpage in update-alternatives

2014-01-17 Thread Paul Eggleton
On Friday 17 January 2014 13:55:13 Matthieu CRAPET wrote: Should I create an entry in https://bugzilla.yoctoproject.org/ (OE-Core component)? FYI, your patch has just been merged into master. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre

Re: [OE-core] [PATCH] Revert cross-canadian: Handle powerpc linux verses linux-gnuspe

2014-01-17 Thread alexandru.sar...@freescale.com
Hi, e500v1/v2 uses SPE to handle floating point operations using general purpose regs. So using the non-SPE compiler with SPE libraries won't work. However the soft-fp libraries are compatible with the e500 ABI (with a considerable performance penalty). From what I can see, eglibc is built with

[OE-core] [PATCH 1/1] adt_installer: do not install rootfs if target is not selected

2014-01-17 Thread Laurentiu Palcu
Currently, if YOCTOADT_TARGETS does not contain an architecture but the rootfs/machine settings are uncommented, then the rootfs is installed and adt will throw an error because is not able to find the toolchain environment script. This patch will: * not allow to install a target rootfs if the

[OE-core] [PATCH 0/1] adt_installer: do not install rootfs if target is not selected

2014-01-17 Thread Laurentiu Palcu
The following changes since commit cfd1520b4b492ab27b2900ba3510abe6f288097e: oe-selftest: separated the SStateBase and SStateTests in different modules (2014-01-16 12:18:52 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib lpalcu/b5727_adt_installer_fix

[OE-core] [Patch] lib/oe: copyhardlinktree - detect mount points

2014-01-17 Thread Jason Plum
Add function getmount to detect the mount point of the path, as os.stat(path).st_dev in copyhardlinktree fails in lxc containers to detect different paths as separate mounted filesystems (cp -l failure) ___ Openembedded-core mailing list

Re: [OE-core] [Patch] lib/oe: copyhardlinktree - detect mount points

2014-01-17 Thread Gary Thomas
On 2014-01-17 08:39, Jason Plum wrote: Add function getmount to detect the mount point of the path, as os.stat(path).st_dev in copyhardlinktree fails in lxc containers to detect different paths as separate mounted filesystems (cp -l failure) Patch missing? --

[OE-core] [Patch v2] lib/oe: copyhardlinktree - detect mount points

2014-01-17 Thread Jason Plum
lib/oe: copyhardlinktree - detect mount points Add function getmount to detect the mount point of the path, as os.stat(path).st_dev in copyhardlinktree fails in lxc containers to detect different paths as separate mounted filesystems (cp -l failure) Signed-off-by: Jason

Re: [OE-core] [PATCH V3 2/2] Add missing RDEPENDS of initscripts-functions

2014-01-17 Thread Martin Jansa
On Fri, Jan 17, 2014 at 02:11:39PM +, Paul Eggleton wrote: Hi Qi, On Monday 06 January 2014 15:27:35 Chen Qi wrote: Now that the initscripts-functions has been packaged separately, packages which may use the functions script should have a runtime dependency on it. Signed-off-by:

[OE-core] [PATCH] lib/oeqa: sshcontrol: fix false timeout failures

2014-01-17 Thread Stefan Stanacar
Ocasionally AB shows odd false fails like: http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/1/steps/Running%20Sanity%20Tests/logs/stdio This should fix that by checking for eof instead of polling the return code of the ssh process, because the process might still be there.

[OE-core] [PATCH 2/6] unfs3, unfs-server: Replace all instances of unfs-server with unfs3

2014-01-17 Thread Jason Wessel
Other recipes dependencies and even some comments need to be updated for the removal of unfs-server and the replacement with unfs3. The unfs3 is a complete drop in replacement providing all the prior functionality of NFSv2 but also adding NFSv3. [YOCTO #5639] Signed-off-by: Jason Wessel

[OE-core] [PATCH 0/6] Replace unfs-server with unfs3

2014-01-17 Thread Jason Wessel
[YOCTO #5639] The goal of this patchset it to upgrade the user mode NFS server from NFSv2 to NFSv3. To do so requires the use of a new server. The key reason this update needs to occurs is that the old server uses the inode from the file system for the NFS hash value. The former is now 64 bits

[OE-core] [PATCH 6/6] runqemu, runqemu-internal: Allow slirp for NFS and KVM use

2014-01-17 Thread Jason Wessel
The default slirp address for the NFS server is 10.0.2.2. If not using a tap interface this address must be used or the target system cannot connect properly. Also the ip=... kernel arguments need to be set to dhcp when using slirp or the root NFS will not get setup properly. The call to

[OE-core] [PATCH 3/6] runqemu: Use the newer unfs3 for serving user space nfs

2014-01-17 Thread Jason Wessel
From: Saul Wold s...@linux.intel.com This new version correctly handles the 64bit ext3 / ext4 issues we were seeing with the older unfs-server which did not handle 64bit file systems correctly, producing the duplicate cookies. [YOCTO #5639] Signed-off-by: Saul Wold s...@linux.intel.com ---

[OE-core] [PATCH 1/6] unfs3: Add a NFSv3 user mode server for use with runqemu

2014-01-17 Thread Jason Wessel
The user mode nfs server allows the use of runqemu without any root privileges and may even be accelerated with kvm. Example: runqemu-extract-sdk tmp-eglibc/deploy/images/qemux86-64/core-image-minimal-qemux86-64.tar.bz2 rootfs runqemu qemux86-64 `pwd`/rootfs nographic slirp kvm [YOCTO #5639]

[OE-core] [PATCH 3/6] runqemu: Use the newer unfs3 for serving user space nfs

2014-01-17 Thread Jason Wessel
From: Saul Wold s...@linux.intel.com This new version correctly handles the 64bit ext3 / ext4 issues we were seeing with the older unfs-server which did not handle 64bit file systems correctly, producing the duplicate cookies. [YOCTO #5639] Signed-off-by: Saul Wold s...@linux.intel.com ---

[OE-core] [PATCH 5/6] runqemu-export-rootfs: update for unfs3

2014-01-17 Thread Jason Wessel
The unfs3 no longer has an rpc.mountd component. There is just a single server for mountd and nfsd requests. This means changing the name of the server in the scripts that check for it. [YOCTO #5639] Signed-off-by: Jason Wessel jason.wes...@windriver.com --- scripts/runqemu-export-rootfs |

Re: [OE-core] [PATCH 1/6] unfs3: Add a NFSv3 user mode server for use with runqemu

2014-01-17 Thread Saul Wold
On 01/17/2014 08:37 AM, Jason Wessel wrote: The user mode nfs server allows the use of runqemu without any root privileges and may even be accelerated with kvm. Example: runqemu-extract-sdk tmp-eglibc/deploy/images/qemux86-64/core-image-minimal-qemux86-64.tar.bz2 rootfs runqemu qemux86-64

Re: [OE-core] [oe-core][PATCH 3/3] wayland-native: disable macro checks not used for scanner

2014-01-17 Thread Saul Wold
On 01/14/2014 01:49 AM, b28...@freescale.com wrote: From: Ting Liu b28...@freescale.com We only build wayland-native for the scanner, so disable the bits we don't actually need. This avoid build issue on older distro such as Centos 5.x: | error: 'O_CLOEXEC' undeclared (first use in this

Re: [OE-core] RFC: Maintain backwards compatibility or not for module-base.bbclass

2014-01-17 Thread Bruce Ashfield
On Fri, Jan 17, 2014 at 8:53 AM, Peter Kjellerstedt peter.kjellerst...@axis.com wrote: I will aggregate my responses to Koen, Bruce and Phil below. -Original Message- From: Koen Kooi [mailto:k...@dominion.thruhere.net] Sent: den 16 januari 2014 20:19 To: Peter Kjellerstedt [snip]

Re: [OE-core] [PATCH] lib/oe: copyhardlinktree - detect mount points Add function getmount to detect the mount point of the path, as os.stat(path).st_dev in copyhardlinktree fails in lxc containers to

2014-01-17 Thread Saul Wold
On 01/16/2014 02:08 PM, Jason Plum wrote: Signed-off-by: Jason Plum jp...@devonit.com --- meta/lib/oe/path.py | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) This patch did not apply cleanly, it's possible you patched against an older version of master. diff --git

[OE-core] [PATCH 2/7] Fix style using oe-stylize (no changes in the content of the recipe itself)

2014-01-17 Thread Fathi Boudra
Signed-off-by: Fathi Boudra fathi.bou...@linaro.org --- meta/recipes-extended/ltp/ltp_20140115.bb | 100 +++--- 1 file changed, 51 insertions(+), 49 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20140115.bb b/meta/recipes-extended/ltp/ltp_20140115.bb index

[OE-core] [PATCH 1/7] rename recipe to ltp_20140115.bb

2014-01-17 Thread Fathi Boudra
Signed-off-by: Fathi Boudra fathi.bou...@linaro.org --- meta/recipes-extended/ltp/ltp_20130904.bb | 78 --- meta/recipes-extended/ltp/ltp_20140115.bb | 78 +++ 2 files changed, 78 insertions(+), 78 deletions(-) delete mode 100644

[OE-core] [PATCH 0/7] Update LTP to 20140115 release

2014-01-17 Thread Fathi Boudra
This patchset update LTP to latest release and fix various style, cross-compilation issues. Fathi Boudra (7): rename recipe to ltp_20140115.bb Fix style using oe-stylize (no changes in the content of the recipe itself) drop do_unpack_append/do_extract_tarball Update SRC_REV to LTP

[OE-core] [PATCH 3/7] drop do_unpack_append/do_extract_tarball

2014-01-17 Thread Fathi Boudra
we don't use tarball anymore and switched to ltp github mirror. Signed-off-by: Fathi Boudra fathi.bou...@linaro.org --- meta/recipes-extended/ltp/ltp_20140115.bb | 12 1 file changed, 12 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20140115.bb

[OE-core] [PATCH 5/7] Update ffsb-6.0-rc2 license file path

2014-01-17 Thread Fathi Boudra
Signed-off-by: Fathi Boudra fathi.bou...@linaro.org --- meta/recipes-extended/ltp/ltp_20140115.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/ltp/ltp_20140115.bb b/meta/recipes-extended/ltp/ltp_20140115.bb index 287f73d..d9c707b 100644 ---

[OE-core] [PATCH 7/7] Fix ffsb ftbfs on arm64 and cross-compiled environment

2014-01-17 Thread Fathi Boudra
Add ffsb-arm64.patch: - get rid of the hardcoded configure call preventing cross-compilation - update config.guess/config.sub to add aarch64 supported Add do_configure_prepend to explicitly force regeneration the configure file and pass configure options as appropriate. Signed-off-by: Fathi

[OE-core] [PATCH 4/7] Update SRC_REV to LTP 20140115 release

2014-01-17 Thread Fathi Boudra
Signed-off-by: Fathi Boudra fathi.bou...@linaro.org --- meta/recipes-extended/ltp/ltp_20140115.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/ltp/ltp_20140115.bb b/meta/recipes-extended/ltp/ltp_20140115.bb index 73bd808..287f73d 100644 ---

[OE-core] [PATCH 6/7] Fix comment to refer to oe-core instead of poky

2014-01-17 Thread Fathi Boudra
Signed-off-by: Fathi Boudra fathi.bou...@linaro.org --- meta/recipes-extended/ltp/ltp_20140115.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/ltp/ltp_20140115.bb b/meta/recipes-extended/ltp/ltp_20140115.bb index d9c707b..4e20f24 100644 ---