Re: [OE-core] [PATCH] flex: fix the DEPENDS setting

2014-09-23 Thread Rongqing Li
Drop this, I see Christopher Larson' patch has been merged. commit fce2be6dcf8e7320b7b9df9947745e78fd160815 Author: Christopher Larson Date: Tue Sep 16 18:22:02 2014 -0700 flex: fix the deps for ptest builds Building the tests for flex requires flex-native and bison-native, but the

[OE-core] [PATCH] ltp: make setregid02 be able to pass

2014-09-23 Thread rongqing.li
From: "Roy.Li" [YOCTO #6748] replace "nobody" group with "nogroup", since the user "nobody" belongs to "nogroup" group and no "nobody" group in oe-core Signed-off-by: Roy.Li --- .../ltp/ltp/make-setregid02-work.patch | 61 meta/recipes-extended/ltp/ltp_20140

Re: [OE-core] [PATCH 9/9] perf: disable libunwind support for aarch64

2014-09-23 Thread Fathi Boudra
On 23 September 2014 09:11, Kang Kai wrote: > On 2014年09月23日 00:01, Fathi Boudra wrote: >> >> On 19 September 2014 12:21, Kai Kang wrote: >>> >>> Disable libunwind support of perl for aarch aarch64 that libunwind >>> doesn't support aarch64. >> >> typo: >> perl -> perf >> aarch -> arch >> >> Othe

Re: [OE-core] [PATCH 9/9] perf: disable libunwind support for aarch64

2014-09-23 Thread Kang Kai
On 2014年09月23日 16:23, Fathi Boudra wrote: On 23 September 2014 09:11, Kang Kai wrote: On 2014年09月23日 00:01, Fathi Boudra wrote: On 19 September 2014 12:21, Kai Kang wrote: Disable libunwind support of perl for aarch aarch64 that libunwind doesn't support aarch64. typo: perl -> perf aarch ->

[OE-core] [oe-core][PATCH] valgrind: pass -maltivec only if it supported

2014-09-23 Thread ting.liu
From: Ting Liu none/tests/ppc64/Makefile.am (and ppc32, too) passes the flag -maltivec unconditionally. Build will fail if Altivec not supported. add the flag only if HAS_ALTIVEC defined. Reference: see https://bugs.kde.org/show_bug.cgi?id=338731 Signed-off-by: Ting Liu --- .../pass-maltivec-

[OE-core] [PATCH 1/1] systemtap: disable libvirt

2014-09-23 Thread wenzong.fan
From: Wenzong Fan libvirt is automatically linked to if present, this undetermined dependency may cause build errors like: ../lib/libvirt.so: undefined reference to `libssh2_channel_open_ex' ../lib/libvirt.so: undefined reference to `libssh2_session_hostkey' ... Both libvirt and libssh2 a

[OE-core] [PATCH 0/1] systemtap: disable libvirt

2014-09-23 Thread wenzong.fan
From: Wenzong Fan libvirt is automatically linked to if present, this undetermined dependency may cause build errors like: ../lib/libvirt.so: undefined reference to `libssh2_channel_open_ex' ../lib/libvirt.so: undefined reference to `libssh2_session_hostkey' ... Both libvirt and libssh2 a

Re: [OE-core] [oe-core][PATCH] valgrind: pass -maltivec only if it supported

2014-09-23 Thread Burton, Ross
On 23 September 2014 10:20, wrote: > +Upstream-status: pending For machine-readability please use Upstream-Status: Pending, and this is missing a Signed-off-by tag. Ross -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org h

Re: [OE-core] [PATCH 1/1] ncurses: enable-pc-files requires PKG_CONFIG_LIBDIR existed

2014-09-23 Thread Burton, Ross
On 23 September 2014 05:31, Robert Yang wrote: > The configure.in checks: > [snip] > if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then > [snip] > > Create PKG_CONFIG_LIBDIR in do_configure will fix the problem. > > We can reproduce the problem by: > Set SSTATE_DIR=/path/to/sst

[OE-core] hash generation/PR service problem with xuser-account and other packages

2014-09-23 Thread Steffen Sledz
As i mentioned in another thread before we're investigating some problems related with package versions going backwards using a PR service. Now i have some more information. But i'm not able to understand and fix the problem for myself. Assume we have a clean workspace and i bitbake the xuser-a

Re: [OE-core] [PATCH v2] pinentry: add recipes

2014-09-23 Thread Burton, Ross
On 22 September 2014 04:18, wrote: > +DESCRIPTION = "\ > + Pinentry is a collection of simple PIN or passphrase entry dialogs > which \ > + utilize the Assuan protocol as described by the aegypten project; see > \ > + http://www.gnupg.org/aegypten/ for details. \ > + Thi

Re: [OE-core] hash generation/PR service problem with xuser-account and other packages

2014-09-23 Thread Richard Purdie
On Tue, 2014-09-23 at 14:07 +0200, Steffen Sledz wrote: > As i mentioned in another thread before we're investigating some problems > related with package versions going backwards using a PR service. > > Now i have some more information. But i'm not able to understand and fix the > problem for m

[OE-core] [PATCH 0/3] man/info: fix not support xz/bz2 compression

2014-09-23 Thread Hongxu Jia
Test Case: vim local.conf .. IMAGE_INSTALL_append = " man man-doc texinfo texinfo-doc info info-doc" INHERIT += "compress_doc" DOC_COMPRESS = "xz" or DOC_COMPRESS = "bz2" .. bitbake core-image-minimal runqemu qemux86 On target, ... root@qemux86:~# man man root@qemux86:~# info info ... //Hongx

[OE-core] [PATCH 1/3] busybox: enable CONFIG_BZIP2/CONFIG_XZ/CONFIG_UNXZ by default

2014-09-23 Thread Hongxu Jia
It was required by info/man command to compress/decompress doc pages with xz/bz2 compression. [YOCTO #6750] [YOCTO #6751] Signed-off-by: Hongxu Jia --- meta/recipes-core/busybox/busybox/defconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-core/busybox

[OE-core] [PATCH 2/3] man: fix not support xz/bz2 compression

2014-09-23 Thread Hongxu Jia
In oe-core, bunzip and unzx located in /usr/bin/ rather than /usr, so tweak man's config. [YOCTO #6750] Signed-off-by: Hongxu Jia --- meta/recipes-extended/man/man/man.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/man/man/man.conf b/meta/recip

[OE-core] [PATCH 3/3] texinfo: fix info not work

2014-09-23 Thread Hongxu Jia
In texinfo, we didn't have info/dir entries, which caused info not work. ... root@qemux86:~# info info info: dir: No such file or directory ... Invoke install-info to create info/dir entries in pkg_postinst_info. Also fix a QA Issue ... ERROR: QA Issue: texinfo: Files/directories were installed bu

Re: [OE-core] [PATCH 1/3] busybox: enable CONFIG_BZIP2/CONFIG_XZ/CONFIG_UNXZ by default

2014-09-23 Thread Burton, Ross
On 23 September 2014 15:19, Hongxu Jia wrote: > It was required by info/man command to compress/decompress > doc pages with xz/bz2 compression. When changing busybox configuration, it's helpful to list the size change. So for anyone else curious, buildhistory reports the package size (not the bi

Re: [OE-core] [PATCH 3/3] texinfo: fix info not work

2014-09-23 Thread Burton, Ross
On 23 September 2014 15:19, Hongxu Jia wrote: > +pkg_postinst_info () { > +for f in `find $D/${infodir} -name "*.info*"`; do > +install-info $f $D/${infodir}/dir > +done > +} For future, this seems like the sort of thing we need a class for. There is a texinfo.bbclass now... Ross

[OE-core] [PATCH] oe-init-build-env-memres: Fix automatic port usage

2014-09-23 Thread Richard Purdie
The use of an automatic port wasn't working correctly since the server was never getting started when port == -1. This fixes things so the server is started when port is not specified (i.e. automatic) ensuring this happens before BBSERVER is set. [YOCTO #6563] Signed-off-by: Richard Purdie dif

Re: [OE-core] hash generation/PR service problem with xuser-account and other packages

2014-09-23 Thread Steffen Sledz
On 23.09.2014 15:21, Richard Purdie wrote: > On Tue, 2014-09-23 at 14:07 +0200, Steffen Sledz wrote: >> As i mentioned in another thread before we're investigating some problems >> related with package versions going backwards using a PR service. >> >> Now i have some more information. But i'm not

[OE-core] [PATCH 2/7] linux-yocto/3.14: update to v3.14.18 and -rt9

2014-09-23 Thread Bruce Ashfield
Refreshing the 3.14 kernel to a new korg stable and -rt release. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb | 8 meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_3.14.bb | 18 +--

[OE-core] [PATCH 3/7] linux-yocto/3.17: update to v3.17-rc5

2014-09-23 Thread Bruce Ashfield
Bumping the SRCREVs to import the latest korg -rc. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_3.17.bb | 18 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/meta/r

[OE-core] [PATCH 1/7] linux-yocto/3.10: update to v3.10.54 and -rt55

2014-09-23 Thread Bruce Ashfield
The 3.10 kernel needed a refresh to the latest -stable and -rt releases. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb | 8 meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_3.10.bb | 18 +++

[OE-core] [PATCH 6/7] linux-yocto/3.10: update to v3.10.55

2014-09-23 Thread Bruce Ashfield
Updating to the latest korg -stable update. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb | 8 meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_3.10.bb | 18 +- 3 files chan

[OE-core] [PATCH 0/7] linux-yocto: consolidated pull request

2014-09-23 Thread Bruce Ashfield
Hi all, Some parts of this request are repeated from one I sent a while ago, since they didn't make it into the tree. These are the release 1.7 kernel updates. For 3.10 and 3.14 they represent the pickup of -stable fixes (in particular CVEs) and -rt fixes. For 3.17, we follow the march to the r

[OE-core] [PATCH 5/7] linux-yocto/3.17: bump to v3.17-rc6

2014-09-23 Thread Bruce Ashfield
Updating the 3.17 recipe to -rc6. This is nearly the release kernel, and should have very few changes aftert this point. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_3.17.bb | 18 +- 2

[OE-core] [PATCH 7/7] linux-yocto/3.14: update to v3.14.19

2014-09-23 Thread Bruce Ashfield
Updating to the latest korg -stable update. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb | 8 meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_3.14.bb | 18 +- 3 files chan

[OE-core] [PATCH 4/7] linux-yocto/3.17: switch to dedicated 3.17 repository

2014-09-23 Thread Bruce Ashfield
The 3.17 repository is ready, so we no longer need to reuse the linux-yocto-dev tree. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto_3.17.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/linux/linux-yocto_3.17.bb b/meta/recipes-

Re: [OE-core] [PATCH 0/3] man/info: fix not support xz/bz2 compression

2014-09-23 Thread Mark Hatle
On 9/23/14, 9:19 AM, Hongxu Jia wrote: Test Case: vim local.conf .. IMAGE_INSTALL_append = " man man-doc texinfo texinfo-doc info info-doc" INHERIT += "compress_doc" DOC_COMPRESS = "xz" or DOC_COMPRESS = "bz2" .. Patch 1/3 the busybox change. I'm not sure we really want to make that change a

Re: [OE-core] hash generation/PR service problem with xuser-account and other packages

2014-09-23 Thread Richard Purdie
On Tue, 2014-09-23 at 16:51 +0200, Steffen Sledz wrote: > Hi Richard, thanx for this detailled explanation. It is another step on my > way to understand all this. ;-) > > > The other recipes will need investigating since I doubt its this issue > > for them. > > Is there someone who can do this w

Re: [OE-core] [PATCH] kernel.bbclass: use one package split for all firmware filename extensions

2014-09-23 Thread Denys Dmytriyenko
On Sun, Sep 21, 2014 at 01:08:55PM +0200, Carlos Rafael Giani wrote: > Signed-off-by: Carlos Rafael Giani > --- > meta/classes/kernel.bbclass | 5 + > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass > index 4710719..78

Re: [OE-core] [PATCH] kernel.bbclass: use one package split for all firmware filename extensions

2014-09-23 Thread Peter A. Bigot
On 09/23/2014 11:38 AM, Denys Dmytriyenko wrote: On Sun, Sep 21, 2014 at 01:08:55PM +0200, Carlos Rafael Giani wrote: Signed-off-by: Carlos Rafael Giani --- meta/classes/kernel.bbclass | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta/classes/kernel.bbclass b/meta/

Re: [OE-core] [PATCH 9/9] beaglebone.conf: add IMAGE_BOOT_FILES

2014-09-23 Thread Denys Dmytriyenko
On Mon, Sep 22, 2014 at 01:35:21PM +0200, Maciej Borzecki wrote: > Set IMAGE_BOOT_FILES to list of files that end up in boot > partition. This in turn is used by wic to generate a bootable SD card > image. > > Signed-off-by: Maciej Borzecki > Signed-off-by: Maciek Borzecki Acked-by: Denys Dmytr

[OE-core] [PATCH] layer.conf: Add in useradd dependencies as ABISAFE dependencies

2014-09-23 Thread Richard Purdie
Currently allarch recipes using useradd rebuild each time MACHINE changes which is not desireable. Adding the useradd dependencies to this list ensures they do not change under these circumstances. Signed-off-by: Richard Purdie diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 9143b

[OE-core] [PATCH] update-rc.d/systemd: Remove OVERRIDES dependency

2014-09-23 Thread Richard Purdie
Taking run-postinsts and building for two machines which have different OVERRIDES leads to two different sets of stamps for an allarch package. We don't need to depend on OVERRIDES in these classes, the end resulting variables are good enough. We can therefore exclude the dependency and allow a si

[OE-core] [PATCH] layer.conf: Mark opkg-utils as ABISAFE for update-alternatives usage

2014-09-23 Thread Richard Purdie
Currently linux-firmware rebuilds for each machine due to its usage of update-alternatives which in turn means a dependency on opkg-utils. Marking opkg-utils as ABISAFE is the only option we have right now to avoid this. Signed-off-by: Richard Purdie diff --git a/meta/conf/layer.conf b/meta/conf

Re: [OE-core] [PATCH 9/9] beaglebone.conf: add IMAGE_BOOT_FILES

2014-09-23 Thread Maciej Borzecki
On Tuesday 23 of September 2014 14:31:13 Denys Dmytriyenko wrote: > On Mon, Sep 22, 2014 at 01:35:21PM +0200, Maciej Borzecki wrote: > > Set IMAGE_BOOT_FILES to list of files that end up in boot > > partition. This in turn is used by wic to generate a bootable SD card > > image. > > > > Signed-off

Re: [OE-core] [PATCH 9/9] beaglebone.conf: add IMAGE_BOOT_FILES

2014-09-23 Thread Richard Purdie
On Tue, 2014-09-23 at 21:04 +0200, Maciej Borzecki wrote: > On Tuesday 23 of September 2014 14:31:13 Denys Dmytriyenko wrote: > > On Mon, Sep 22, 2014 at 01:35:21PM +0200, Maciej Borzecki wrote: > > > Set IMAGE_BOOT_FILES to list of files that end up in boot > > > partition. This in turn is used by

Re: [OE-core] [daisy][PATCH] qemu: Explicitly disable libiscsi, its not in DEPENDS

2014-09-23 Thread Richard Purdie
On Fri, 2014-09-19 at 17:05 -0500, Saul Wold wrote: > On 09/18/2014 02:45 AM, Jonathan Liu wrote: > > On 29 August 2014 23:48, Jonathan Liu wrote: > >> Signed-off-by: Jonathan Liu > >> --- > >> meta/recipes-devtools/qemu/qemu.inc | 2 +- > >> 1 file changed, 1 insertion(+), 1 deletion(-) > >>

Re: [OE-core] [PATCH 9/9] beaglebone.conf: add IMAGE_BOOT_FILES

2014-09-23 Thread Maciej Borzecki
On Tuesday 23 of September 2014 20:09:19 Richard Purdie wrote: > On Tue, 2014-09-23 at 21:04 +0200, Maciej Borzecki wrote: > > On Tuesday 23 of September 2014 14:31:13 Denys Dmytriyenko wrote: > > > On Mon, Sep 22, 2014 at 01:35:21PM +0200, Maciej Borzecki wrote: > > > > Set IMAGE_BOOT_FILES to lis

Re: [OE-core] [Patch 0/9]: support for generating SD images from wic

2014-09-23 Thread Tom Zanussi
On Mon, 2014-09-22 at 13:35 +0200, Maciej Borzecki wrote: > This patch series is a proposal that adds support for generating SD > card images for embedded boards using wic. I did not want to cross > post to meta-ti and meta-freescale so Denys and Otavio are added in > CC. I would be glad to receive

[OE-core] [PATCH 2/3] wayland: update version to 1.6.0

2014-09-23 Thread Denys Dmytriyenko
From: Denys Dmytriyenko Signed-off-by: Denys Dmytriyenko --- meta/recipes-graphics/wayland/{wayland_1.5.0.bb => wayland_1.6.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/wayland/{wayland_1.5.0.bb => wayland_1.6.0.bb} (92%) diff --git a/meta/reci

[OE-core] [PATCH 1/3] libinput: add 0.6.0 version

2014-09-23 Thread Denys Dmytriyenko
From: Denys Dmytriyenko libinput is an optional dependency for Weston to handle input devices externally, which provides better support especially for touch devices. Signed-off-by: Denys Dmytriyenko --- meta/recipes-graphics/wayland/libinput_0.6.0.bb | 14 ++ 1 file changed, 14 ins

[OE-core] [PATCH] libunwind: add aarch64 support

2014-09-23 Thread Fathi Boudra
Signed-off-by: Fathi Boudra --- .../libunwind/libunwind-1.1/AArch64-port.patch | 2529 meta/recipes-support/libunwind/libunwind.inc |1 + meta/recipes-support/libunwind/libunwind_1.1.bb|2 + 3 files changed, 2532 insertions(+) create mode 100644 meta/r

Re: [OE-core] [PATCH 1/3] libinput: add 0.6.0 version

2014-09-23 Thread Burton, Ross
I didn't see a 3/3 for this series on the list. It's also too late for 1.7, so I'll queue this in my staging branch for 1.8. Ross On 23 September 2014 20:31, Denys Dmytriyenko wrote: > From: Denys Dmytriyenko > > libinput is an optional dependency for Weston to handle input devices > externall

Re: [OE-core] [PATCH v2 2/2] u-boot: update to version 2014.07

2014-09-23 Thread Denys Dmytriyenko
Just to confirm - this patch was purposefully skipped in this merge cycle, right? On Tue, Sep 16, 2014 at 07:10:01PM -0400, Denys Dmytriyenko wrote: > From: Denys Dmytriyenko > > Signed-off-by: Denys Dmytriyenko > --- > ...h-Add-use-DEFAULT_LINUX_BOOT_ENV-environm.patch | 74 > -

Re: [OE-core] [PATCH 1/3] libinput: add 0.6.0 version

2014-09-23 Thread Denys Dmytriyenko
On Tue, Sep 23, 2014 at 09:27:19PM +0100, Burton, Ross wrote: > I didn't see a 3/3 for this series on the list. It's also too late > for 1.7, so I'll queue this in my staging branch for 1.8. This is fine to wait until 1.8 opens. Not sure where 3/3 got stuck - sometimes my emails to the list got

[OE-core] [PATCH] syslog: Change unused variable declaration LOCAL=0 to LOG_LOCAL=1

2014-09-23 Thread Michael Gloff
This fix allows the correct appending of -L to syslogd arguments when both file and remote logging are selected. Signed-off-by: Michael Gloff --- meta/recipes-core/busybox/files/syslog |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/busybox/files/syslog

Re: [OE-core] [PATCH 3/3] texinfo: fix info not work

2014-09-23 Thread Richard Purdie
On Tue, 2014-09-23 at 22:19 +0800, Hongxu Jia wrote: > In texinfo, we didn't have info/dir entries, which caused > info not work. > ... > root@qemux86:~# info info > info: dir: No such file or directory > ... > Invoke install-info to create info/dir entries in pkg_postinst_info. > > Also fix a QA

Re: [OE-core] [PATCH v2 2/2] u-boot: update to version 2014.07

2014-09-23 Thread Burton, Ross
On 23 September 2014 21:27, Denys Dmytriyenko wrote: > Just to confirm - this patch was purposefully skipped in this merge cycle, > right? Yes. Pending a good rationale for why to break the freeze for u-boot it will wait for 1.8. (poky-contrib:ross/unfreeze is where i'm staging patches that loo

[OE-core] [PATCH 3/3] weston: update to version 1.6.0, add libinput PACKAGECONFIG

2014-09-23 Thread Denys Dmytriyenko
From: Denys Dmytriyenko Signed-off-by: Denys Dmytriyenko --- meta/recipes-graphics/wayland/{weston_1.5.0.bb => weston_1.6.0.bb} | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) rename meta/recipes-graphics/wayland/{weston_1.5.0.bb => weston_1.6.0.bb} (93%) diff --git a/meta/recipes

Re: [OE-core] [PATCH 3/3] texinfo: fix info not work

2014-09-23 Thread Burton, Ross
On 23 September 2014 21:37, Richard Purdie wrote: > I think there are a few issues here. Firstly, this postinst can run at > build time which means there is a dependency on texinfo-native. I guess > if this fails, it will just run on target so its probably "harmless" but > not deterministic. Secon

Re: [OE-core] [PATCH v2 2/2] u-boot: update to version 2014.07

2014-09-23 Thread Denys Dmytriyenko
On Tue, Sep 23, 2014 at 09:31:43PM +0100, Burton, Ross wrote: > On 23 September 2014 21:27, Denys Dmytriyenko wrote: > > Just to confirm - this patch was purposefully skipped in this merge cycle, > > right? > > Yes. Pending a good rationale for why to break the freeze for u-boot > it will wait f

Re: [OE-core] [PATCH v2 2/2] u-boot: update to version 2014.07

2014-09-23 Thread Burton, Ross
On 23 September 2014 21:42, Denys Dmytriyenko wrote: > If it has to wait until 1.8 window opens, I'll overlay it locally and will try > to update to 2014.10 as soon as it gets released... That would be great. As I said I've queued 2014.07 locally so assuming it continues to build that will go in

Re: [OE-core] [PATCH] systemd: disable resolv.conf symlink unless resolved is enabled

2014-09-23 Thread Peter A. Bigot
Ping? This has missed a couple merges; if the focus is elsewhere or there's a problem with it fine, but I think this belongs in 1.7 as without it systemd+connman doesn't function as it did before the update to 216. Peter On 09/18/2014 10:16 AM, Peter A. Bigot wrote: The tmpfiles configurati

[OE-core] [PATCH][V3] pinentry: add recipes

2014-09-23 Thread rongqing.li
From: Roy Li gnupg 2.x.x needs pinentry to work Signed-off-by: Roy Li --- meta/recipes-support/pinentry/pinentry_0.8.4.bb | 31 +++ 1 file changed, 31 insertions(+) create mode 100644 meta/recipes-support/pinentry/pinentry_0.8.4.bb diff --git a/meta/recipes-support/pine

Re: [OE-core] [PATCH 1/1] rootfs.py: fix PRE/POSTPROCESS_COMMANDS for rpm and deb

2014-09-23 Thread Robert Yang
Ping, I think that we need it since it is a function lost. // Robert On 09/09/2014 06:16 PM, Robert Yang wrote: The rpm didn't run RPM_PREPROCESS_COMMANDS or RPM_POSTPROCESS_COMMANDS, the similar to deb, this patch fix the problem. And fix a typo: DEB_POSTPROCESS_COMMAND -> DEB_POSTPROCESS_CO

Re: [OE-core] [PATCH 1/1] xinetd: add systemd unit file

2014-09-23 Thread Chong Lu
ping //Chong On 09/09/2014 01:32 PM, Chong Lu wrote: Add systemd unit file for xinetd. Signed-off-by: Chong Lu --- meta/recipes-extended/xinetd/xinetd/xinetd.service | 13 + meta/recipes-extended/xinetd/xinetd_2.3.15.bb | 12 +++- 2 files changed, 24 insertions(+)