Re: [yocto] Yocto build failed to include service file in /deplogy/images/image.wic.gz

2019-07-31 Thread Rudolf J Streif
JH, To enable systemd service for your application your  recipe needs to inherit the systemd class and install the service file in the proper directory. Here is what it should look like: inherit systemd SYSTEMD_SERVICE_${PN} = "my-app.service" SYSTEMD_AUTO_ENABLE = "enable" do_install_append

[yocto] Yocto build failed to include service file in /deplogy/images/image.wic.gz

2019-07-31 Thread JH
HI, I have been struggling to find a fix for missing service file, I found another solution posted from the Internet to use FILES_${PN} += "${systemd_system_unitdir}/dl-mgr.service" at the end of the bb file: install -d ${D}${systemd_system_unitdir} install -m 0644 ${WORKDIR}/dl-mgr.service

[yocto] [meta-integrity][PATCH] ima-evm-utils: bump to release 1.2.1

2019-07-31 Thread dbaryshkov
From: Dmitry Eremin-Solenikov Signed-off-by: Dmitry Eremin-Solenikov --- ...link-to-libcrypto-instead-of-OpenSSL.patch | 65 --- ...ls-replace-INCLUDES-with-AM_CPPFLAGS.patch | 43 ...clude-hash-info.gen-into-distributio.patch | 31 -

Re: [yocto] [meta-mono][PATCH] mono-5.xx: fix an issue with too long paths in doltlibtool

2019-07-31 Thread Alexander Kanavin
Awesome, thanks! Alex On Wed, 31 Jul 2019 at 17:04, Alex J Lennon wrote: > > On 18/06/2019 11:58, Alexander Kanavin wrote: > > Ping #2! > > > > Alex > > > Apologies for the long delay! The patch is in finally... > > > -- ___ yocto mailing list

[yocto] libgroove recipe

2019-07-31 Thread Andy Pont
Hello, Does anyone know if there is a recipe for librgoove[1] and supporting libraries? I have searched in the OpenEmbedded Layer Index and more widely on the web but can’t see anything but maybe someone knows a dark corner it may be hiding in. -Andy. 1 -

Re: [yocto] [yocto-docs][PATCH] ref-manual: Remove documentation for the removed gnome class

2019-07-31 Thread Adrian Bunk
On Wed, Jul 31, 2019 at 07:33:37AM -0700, Khem Raj wrote: > On Wed, Jul 31, 2019 at 6:30 AM Adrian Bunk wrote: > > > > When removed all it did was > > inherit gnomebase gtk-icon-cache gconf mime > > which would also be the most trivial replacement. > > > > Most of the time not all of these

Re: [yocto] [yocto-docs][PATCH] ref-manual: Remove documentation for the removed gnome class

2019-07-31 Thread Khem Raj
On Wed, Jul 31, 2019 at 6:30 AM Adrian Bunk wrote: > > When removed all it did was > inherit gnomebase gtk-icon-cache gconf mime > which would also be the most trivial replacement. > > Most of the time not all of these classes were needed, > and it is recommended to use only the ones actually

[yocto] [yocto-docs][PATCH] ref-manual: Remove documentation for the removed gnome class

2019-07-31 Thread Adrian Bunk
When removed all it did was inherit gnomebase gtk-icon-cache gconf mime which would also be the most trivial replacement. Most of the time not all of these classes were needed, and it is recommended to use only the ones actually required. Signed-off-by: Adrian Bunk ---

[yocto] Anyone tried to build and to use QUIC?

2019-07-31 Thread JH
Hi, I searched recipes for supporting QUIC, but could not find it. Has anyone tried to build and to use QUIC? Thank you. Kind regards, - JH -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [patchtest-oe][PATCH] test_python_pylint.py: correct filepath passed to pylint

2019-07-31 Thread changqing.li
From: Changqing Li we cannot get abspath of the added/modified file from info which is generated by unidiff, we can only get path like: "scripts/lib/wic/plugins/source/bootimg-biosplusefi.py" So pylint will responsed as "scripts/lib/wic/plugins/ source/bootimg-biosplusefi.py does not exist"