[OE-core] [PATCH] pseudo: Upgrade to latest master

2018-04-03 Thread Richard Purdie
This change includes several bug fixes and improvements, including better path handling (the existance of . and .. for files), handling of the sticky bit, and syscall renameat2 handling and interception through syscall() which was breaking coreutils mv operations on fedora27. [YOCTO #12594] [YOCTO

Re: [OE-core] [PATCH] python3: Improve logging capabilities for do_create_manifest

2018-04-03 Thread Richard Purdie
On Mon, 2018-04-02 at 13:08 -0700, Alejandro Enedino Hernandez Samaniego wrote: > Adds a couple of prints to get a nicer log, and creates a > small summary or report after checking every module, it > makes it more feasible for adoption, easier to debug why > a module ended at a certain package and

Re: [OE-core] [PATCH] python3: Improve logging capabilities for do_create_manifest

2018-04-03 Thread Richard Purdie
On Tue, 2018-04-03 at 11:04 +0100, Richard Purdie wrote: > On Mon, 2018-04-02 at 13:08 -0700, Alejandro Enedino Hernandez > Samaniego wrote: > > > > Adds a couple of prints to get a nicer log, and creates a > > small summary or report after checking every module, it > > makes it more feasible for

Re: [OE-core] [PATCH] pseudo: Upgrade to latest master

2018-04-03 Thread Seebs
On Tue, 3 Apr 2018 10:51:28 +0100 Richard Purdie wrote: > This change includes several bug fixes and improvements, including > better path handling (the existance of . and .. for files), handling > of the sticky bit, and syscall renameat2 handling and interception > through syscall() which was b

Re: [OE-core] [PATCH] kernel.bbclass: improve reproducibility

2018-04-03 Thread Bruce Ashfield
On Tue, Apr 3, 2018 at 12:23 AM, Jonathan Liu wrote: > Set KBUILD_BUILD_VERSION=1 to avoid build version being incremented on > every build. It is visible in the output of "cat /proc/version" after > the hash character. It is possible that someone might actually want this feature, for debug or di

Re: [OE-core] [PATCH] uninative: add variables to the whitelist so that it does not re-triger recipe parsing

2018-04-03 Thread Richard Purdie
On Fri, 2018-03-30 at 12:45 +, Cuero Bugot wrote: > > > > > > > > > > > > > On Fri, Mar 16, 2018 at 10:31 AM Cuero Bugot > > > rrawireless.com> wrote: > > > > When uninative is activated (poky's default) internal > > > > datastore  > > > > variables are modified (NATIVEL

Re: [OE-core] [PATCH] kernel.bbclass: improve reproducibility

2018-04-03 Thread Richard Purdie
On Tue, 2018-04-03 at 08:58 -0400, Bruce Ashfield wrote: > On Tue, Apr 3, 2018 at 12:23 AM, Jonathan Liu > wrote: > > > > Set KBUILD_BUILD_VERSION=1 to avoid build version being incremented > > on > > every build. It is visible in the output of "cat /proc/version" > > after > > the hash character

Re: [OE-core] [PATCH] kernel.bbclass: improve reproducibility

2018-04-03 Thread Bruce Ashfield
On Tue, Apr 3, 2018 at 9:59 AM, Richard Purdie wrote: > On Tue, 2018-04-03 at 08:58 -0400, Bruce Ashfield wrote: >> On Tue, Apr 3, 2018 at 12:23 AM, Jonathan Liu >> wrote: >> > >> > Set KBUILD_BUILD_VERSION=1 to avoid build version being incremented >> > on >> > every build. It is visible in the

Re: [OE-core] [PATCH] uninative: add variables to the whitelist so that it does not re-triger recipe parsing

2018-04-03 Thread Cuero Bugot
> In short the answer is that no, we shouldn't and your patch is the better > option. I've queued it in sumo-next. Thanks for figuring it out as it is an > annoying problem. Hey no prb ! Given he traffic on this list I understand everyone is busy! Would it be possible to add it to rocko-next as

Re: [OE-core] [PATCH] core-image-minimal-initramfs: prepare initramfs for NFS boot

2018-04-03 Thread André Draszik
Thanks! On Fri, 2018-03-16 at 20:20 +0200, Oleksii Konoplitskyi wrote: > Taking into account your recommendations, module should have the next > content: > > nfsrootfs_enabled() { > [ -z ${bootparam_nfsroot+x} ] && return 1 > return 0 > } > > nfsrootfs_run() { > nfs_mount_point=$

Re: [OE-core] [PATCH] kernel.bbclass: improve reproducibility

2018-04-03 Thread Richard Purdie
On Tue, 2018-04-03 at 10:11 -0400, Bruce Ashfield wrote: > On Tue, Apr 3, 2018 at 9:59 AM, Richard Purdie > wrote: > > > > On Tue, 2018-04-03 at 08:58 -0400, Bruce Ashfield wrote: > > > > > > On Tue, Apr 3, 2018 at 12:23 AM, Jonathan Liu > > > wrote: > > > > > > > > > > > > Set KBUILD_BUILD_V

[OE-core] [PATCH v2] oeqa/runtime/stap.py: add runtime test for systemtap

2018-04-03 Thread Victor Kamensky
Add runtime test for stap to test basic SystemTap operations: can compile very basic module and run on target device. Note we disable (-DSTP_NO_VERREL_CHECK) SystemTap additional kernel release check since during OE testing mismatching kernel-devsrc and kernels are used. Signed-off-by: Victor Kam

[OE-core] [PATCH 3/8] package_manager.py: move postinst_intercept dir initialization from RootFS to PackageManager class

2018-04-03 Thread Alexander Kanavin
This will allow handling postinst_intercepts when populating SDKs (which use PackageManager class directly, and do not utilize RootFS class). Signed-off-by: Alexander Kanavin --- meta/lib/oe/package_manager.py | 25 +++-- meta/lib/oe/rootfs.py | 13 + 2 f

[OE-core] [PATCH 6/8] sdk.py: run postinst intercepts

2018-04-03 Thread Alexander Kanavin
Previously this wasn't done, and so any packages installed from populate_sdk would not have the postinsts fully executed (particularly generation of various caches via running nativesdk or target binaries with qemu wasn't working). [YOCTO #12630] Signed-off-by: Alexander Kanavin --- meta/classe

[OE-core] [PATCH 7/8] gio-module-cache.bbclass: pass in ${libexecdir}

2018-04-03 Thread Alexander Kanavin
When it was something else than /usr/libexec (e.g. when installing native SDK packages), things broke down. Signed-off-by: Alexander Kanavin --- meta/classes/gio-module-cache.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/gio-module-cache.bbclass b/meta/classes/gio-mod

[OE-core] [PATCH 4/8] package_manager.py: move intercept running logic from rootfs class to PackageManager class

2018-04-03 Thread Alexander Kanavin
This allows running the intercepts when creating SDKs, which previously wasn't possible, as SDK code does not use the rootfs class, and calls into PackageManager methods directly. Signed-off-by: Alexander Kanavin --- meta/lib/oe/package_manager.py | 58 ++ met

[OE-core] [PATCH 8/8] glib-2.0/glib.inc: apply MLPREFIX renaming to all package classes

2018-04-03 Thread Alexander Kanavin
Now that we have postinst intercept execution working for SDK generation, adding MLPREFIX again makes sense in all cases, as the intercepts do require that it is there. This reverts commit 4ffb728df4bdf21daef31d89cfa5771eaf0d90f8. Signed-off-by: Alexander Kanavin --- meta/recipes-core/glib-2.0/

[OE-core] [PATCH 1/8] nativesdk-postinst-intercept: remove the recipe

2018-04-03 Thread Alexander Kanavin
Its use required a script from an external repo which hasn't been updated in 4 years, the recipe itself is out of date (doesn't install all intercepts), and there is no oe-selftest or documentation for this. If anyone still wants this, please do it in a separate layer. Signed-off-by: Alexander Kan

[OE-core] [PATCH 2/8] package_manager.py: move target_rootfs property to common ancestor class

2018-04-03 Thread Alexander Kanavin
This will be useful when also moving postinst_intercept handling to package manager class from rootfs class. Signed-off-by: Alexander Kanavin --- meta/lib/oe/package_manager.py | 16 +++- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/meta/lib/oe/package_manager.py b/m

[OE-core] [PATCH 5/8] package_manager.py: do not hardcode the task name when referring to log files

2018-04-03 Thread Alexander Kanavin
This can be do_rootfs or do_populate_sdk, or anything else. Signed-off-by: Alexander Kanavin --- meta/lib/oe/package_manager.py | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 6c85a6d2c78..840a7bc34

[OE-core] ✗ patchtest: failure for "nativesdk-postinst-intercept: ..." and 7 more

2018-04-03 Thread Patchwork
== Series Details == Series: "nativesdk-postinst-intercept: ..." and 7 more Revision: 1 URL : https://patchwork.openembedded.org/series/11661/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been

[OE-core] [PATCH] elfutils: Clean up comments

2018-04-03 Thread Peter Kjellerstedt
The list of patches in SRC_URI was restructured in 49aae1d7, and left a comment about patches from Debian hanging without context. Move and reword it to make it remain useful. There was also a leftover comment that referred to two .h files and do_configure_prepend() that were removed in f960c026.

[OE-core] [PATCH v2 5/5] crosstap: replace script with new python based implementation

2018-04-03 Thread Victor Kamensky
New crosstap python implementation is total replacement for crosstap shell script, that has superseding capabilities. New script support cross compiling of SystemTap scripts for user-land, by using supplied image rootfs. Whereas old script could only deal with scripts against kernel. New script has

[OE-core] [PATCH v2 0/5] systemtap adding sysroot, cross compiling of user land related scripts

2018-04-03 Thread Victor Kamensky
Hi, This is second version of patch series of SystemTap supporting sysroot and SystemTap script cross compilation, integrated with OE workflow. Since first, RFC, version [1] the following changes were done: image: add image-combined-dbg helper class Needed to create rootfs-dbg that con

[OE-core] [PATCH v2 3/5] systemtap: support --sysroot option in variety of situations in cross build

2018-04-03 Thread Victor Kamensky
For details on issues fixed please look at commit message of individual patches. Upstream-Status: Backport [system...@sourceware.org] Signed-off-by: Victor Kamensky --- ...001-Added-a-couple-of-small-sysroot-fixes.patch | 42 +++ ...g-sysroot-path-to-module-name-in-case-of-.patch | 61

[OE-core] [PATCH v2 1/5] image: add image-combined-dbg helper class

2018-04-03 Thread Victor Kamensky
There is IMAGE_GEN_DEBUGFS="1" variable that enables build of additional rootfs-dbg and additional archive that contains complimentary symbols files for a given image. But the issue with this resulting directory and tarball that before use it has to be combined with original image content. It is re

[OE-core] [PATCH v2 2/5] Revert "systemtap: Cross compilation fix"

2018-04-03 Thread Victor Kamensky
This reverts commit 787bed708676fc04aee2850825e803273152f657. Signed-off-by: Victor Kamensky --- .../systemtap/systemtap/system_map_location.patch | 23 -- meta/recipes-kernel/systemtap/systemtap_git.inc| 1 - 2 files changed, 24 deletions(-) delete mode 100644 meta/r

[OE-core] [PATCH v2 4/5] systemtap: create translator packageconfig

2018-04-03 Thread Victor Kamensky
For cases when systemap module compilation happens on host in cross-compilation mode, and it is desirable to minimize systemtap presense on target we need to have just smallest possible set of utilties that are required to run compiled modules. Introduce new "translator" PACKAGECONFIG, if it is no

Re: [OE-core] [PATCH v2 1/5] image: add image-combined-dbg helper class

2018-04-03 Thread Richard Purdie
On Tue, 2018-04-03 at 10:23 -0700, Victor Kamensky wrote: > There is IMAGE_GEN_DEBUGFS="1" variable that enables build of > additional rootfs-dbg and additional archive that contains > complimentary symbols files for a given image. But the issue > with this resulting directory and tarball that befo

Re: [OE-core] [PATCH] python3: Improve logging capabilities for do_create_manifest

2018-04-03 Thread Alejandro Enedino Hernandez Samaniego
Hey Richard, -Original Message- From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] Sent: Tuesday, April 3, 2018 3:09 AM To: Alejandro Enedino Hernandez Samaniego ; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] python3: Improve logging capabilities

Re: [OE-core] [PATCH] pseudo: Upgrade to latest master

2018-04-03 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Richard Purdie > Sent: den 3 april 2018 11:51 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH] pseudo: Upgrade

Re: [OE-core] [PATCH V2 4/7] libgpg-error: 1.27 -> 1.28

2018-04-03 Thread Martin Jansa
This seems to cause: | ../../libgpg-error-1.28/src/logging.c: In function '_gpgrt_log_printhex': | ../../libgpg-error-1.28/src/logging.c:1153:49: error: incompatible type for argument 4 of '_gpgrt_logv_printhex' | _gpgrt_logv_printhex (buffer, length, NULL, NULL); |

Re: [OE-core] [morty][PATCH] lib/oe/terminal.py: use an absolute path to execute oe-gnome-terminal-phonehome

2018-04-03 Thread Andre McCurdy
On Fri, Mar 30, 2018 at 2:13 AM, Richard Purdie wrote: > On Wed, 2018-03-28 at 15:55 -0700, Andre McCurdy wrote: >> On Fri, Mar 9, 2018 at 8:15 PM, Andre McCurdy >> wrote: >> > >> > On Wed, Feb 21, 2018 at 1:40 PM, Andre McCurdy > > > wrote: >> > > >> > > On Tue, Jan 23, 2018 at 12:16 PM, Andre M

Re: [OE-core] [PATCH 4/4] llvm: Upgrade to 6.0 release

2018-04-03 Thread Martin Jansa
Please update mesa.inc to require the new version. Now it depends on removed 5.0: meta/recipes-graphics/mesa/mesa.inc:MESA_LLVM_RELEASE ?= "5.0" On Sun, Apr 1, 2018 at 9:19 AM, Khem Raj wrote: > Signed-off-by: Khem Raj > --- > ...etLibraryInfo-Undefine-libc-functions-if-th.patch | 20 > ++

[OE-core] netmap

2018-04-03 Thread C Michael Sundius
I do not see netmap in the most recent version of meta-openembedded (i.e. http://info.iet.unipi.it/~luigi/netmap ) though, while googling around I see references to a recipe that existed some time ago. did this get removed for some reason ... it didn't work well or there are better more reliabl

Re: [OE-core] netmap

2018-04-03 Thread Martin Jansa
Use git log and you'll quickly find 216e95669c6b884735f3f8a5ca1ee37a28d68b3e where it got blacklisted couple years ago and then ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 where the blacklisted recipe was removed. Both commits contain a bit longer explanation why. On Tue, Apr 3, 2018 at 10:04 PM, C M

Re: [OE-core] netmap

2018-04-03 Thread Mark Hatle
On 4/3/18 3:04 PM, C Michael Sundius wrote: > I do not see netmap in the most recent version of meta-openembedded > (i.e.  http://info.iet.unipi.it/~luigi/netmap ) > > though, while googling around I see references to a recipe that existed some > time ago. > > did this get removed for some reason

[OE-core] [PATCH 1/2] archiver: Fix build errors for kernels that don't use kernel-yocto.bbclass

2018-04-03 Thread Tom Hochstein
Special handling for kernel source in work-shared was incorrectly limited to kernel-yocto.bbclass instead of kernel.bbclass. Signed-off-by: Tom Hochstein --- meta/classes/archiver.bbclass | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/classes/archiver.bbclass b/

[OE-core] [PATCH] package_manager.py: Skip gpgcheck while using dnf on target

2018-04-03 Thread Manjukumar Matha
By default, RPM_SIGN_PACKAGES is not defined. Add gpgcheck=0 to oe-remote-repo.repo file, otherwise dnf will complain during install operation on target Note, RPM_SIGN_PACKAGES is set only when you inherit sign_rpm explicitly Signed-off-by: Manjukumar Matha --- meta/lib/oe/package_manager.py |

[OE-core] [PATCH] mesa: Upgrade 17.3.7 -> 17.3.8

2018-04-03 Thread Otavio Salvador
This version has been published at April 03, 2018, and it is a bugfix only release. The release includes several important fixes that were made as part of 18.0.1 development cycle. Full list of bug fixes can be see online at: https://www.mesa3d.org/relnotes/17.3.8.html Signed-off-by: Otavio Sa

[OE-core] ✗ patchtest: failure for mesa: Upgrade 17.3.7 -> 17.3.8

2018-04-03 Thread Patchwork
== Series Details == Series: mesa: Upgrade 17.3.7 -> 17.3.8 Revision: 1 URL : https://patchwork.openembedded.org/series/11667/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

Re: [OE-core] [PATCH] base.bbclass: fix do_unpack[cleandirs] varflag handling

2018-04-03 Thread Richard Purdie
On Sun, 2018-01-21 at 00:44 +0100, Enrico Jorns wrote: > As introduced by a56fb90dc3805494eeaf04c60538425e8d52efc5 ('base.bbclass > wipe ${S} before unpacking source') the base.bbclass uses a python > anonymous function to set the 'do_unpack' varflag 'cleandirs' to either > '${S}' or '${S}/patches'

Re: [OE-core] ✗ patchtest: failure for mesa: Upgrade 17.3.7 -> 17.3.8

2018-04-03 Thread Otavio Salvador
On Tue, Apr 3, 2018 at 6:32 PM, Patchwork wrote: > == Series Details == > > Series: mesa: Upgrade 17.3.7 -> 17.3.8 ... > * Issue Series does not apply on top of target branch > [test_series_merge_on_head] > Suggested fixRebase your series on top of targeted branch > Targeted b

Re: [OE-core] [PATCH] base.bbclass: fix do_unpack[cleandirs] varflag handling

2018-04-03 Thread Paul Eggleton
On Wednesday, 4 April 2018 10:20:45 AM NZST Richard Purdie wrote: > On Sun, 2018-01-21 at 00:44 +0100, Enrico Jorns wrote: > > As introduced by a56fb90dc3805494eeaf04c60538425e8d52efc5 ('base.bbclass > > wipe ${S} before unpacking source') the base.bbclass uses a python > > anonymous function to se

[OE-core] [PATCH 04/21] xkbcomp: update to 1.4.1

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../xorg-app/{xkbcomp_1.4.0.bb => xkbcomp_1.4.1.bb} | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) rename meta/recipes-graphics/xorg-app/{xkbcomp_1.4.0.bb => xkbcomp_1.4.1.bb} (75%) diff --git a/meta/recipes-grap

[OE-core] [PATCH 03/21] xkeypboard-config: update to 2.23.1

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../xorg-lib/{xkeyboard-config_2.22.bb => xkeyboard-config_2.23.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{xkeyboard-config_2.22.bb => xkeyboard-config_2.23.1.bb} (87%) diff --git a

[OE-core] [PATCH 01/21] libpcre2: update to 10.31

2018-04-03 Thread Armin Kuster
From: Armin Kuster LICENSE changed do to updating copyrige date Signed-off-by: Armin Kuster --- .../libpcre/{libpcre2_10.30.bb => libpcre2_10.31.bb}| 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-support/libpcre/{libpcre2_10.30.bb => libpcre2_10

[OE-core] [PATCH 00/21] Package updates for Master

2018-04-03 Thread Armin Kuster
Please concider these changes for master next. The X11 changes should not go in sumo. These changes will affect meta-oe and possible others The following changes since commit 4cedddb83623c79980b354642dfeaf78218ca4b7: libpcre-ptest: skip locale test (2018-03-30 09:40:34 +0100) are available in

[OE-core] [PATCH 02/21] xprop: update to 1.2.3

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-graphics/xorg-app/{xprop_1.2.2.bb => xprop_1.2.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{xprop_1.2.2.bb => xprop_1.2.3.bb} (78%) diff --git a/meta/recipes-graphics/xorg

[OE-core] [PATCH 06/21] xwininfo: update to 1.1.4

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../xorg-app/{xwininfo_1.1.3.bb => xwininfo_1.1.4.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{xwininfo_1.1.3.bb => xwininfo_1.1.4.bb} (72%) diff --git a/meta/recipes-gr

[OE-core] [PATCH 05/21] xinit: update to 1.4.0

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-graphics/xorg-app/{xinit_1.3.4.bb => xinit_1.4.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{xinit_1.3.4.bb => xinit_1.4.0.bb} (79%) diff --git a/meta/recipes-graphics/xorg

[OE-core] [PATCH 09/21] libshmfence: update to 1.3

2018-04-03 Thread Armin Kuster
From: Armin Kuster refreshed patch Signed-off-by: Armin Kuster --- .../xorg-lib/libxshmfence/extensions.patch | 14 -- .../xorg-lib/{libxshmfence_1.2.bb => libxshmfence_1.3.bb} | 4 ++-- 2 files changed, 10 insertions(+), 8 deletions(-) rename meta/recipes-graphi

[OE-core] [PATCH 10/21] xset: update to 1.2.4

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-graphics/xorg-app/{xset_1.2.3.bb => xset_1.2.4.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{xset_1.2.3.bb => xset_1.2.4.bb} (77%) diff --git a/meta/recipes-graphics/xorg-app

[OE-core] [PATCH 12/21] curl: update to 7.59.0

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-support/curl/{curl_7.58.0.bb => curl_7.59.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/curl/{curl_7.58.0.bb => curl_7.59.0.bb} (95%) diff --git a/meta/recipes-support/curl/curl_7.58.

[OE-core] [PATCH 07/21] gnutls: update to 3.6.2

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-support/gnutls/{gnutls_3.6.1.bb => gnutls_3.6.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/gnutls/{gnutls_3.6.1.bb => gnutls_3.6.2.bb} (54%) diff --git a/meta/recipes-support/gnutls/

[OE-core] [PATCH 13/21] mkfontscale: update to 1.1.3

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../xorg-app/{mkfontscale_1.1.2.bb => mkfontscale_1.1.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{mkfontscale_1.1.2.bb => mkfontscale_1.1.3.bb} (80%) diff --git a/meta/reci

[OE-core] [PATCH 08/21] xeyes: update to 1.1.2

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-graphics/xorg-app/{xeyes_1.1.1.bb => xeyes_1.1.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-app/{xeyes_1.1.1.bb => xeyes_1.1.2.bb} (72%) diff --git a/meta/recipes-graphics/xorg

[OE-core] [PATCH 14/21] util-macros: update to 1.19.2

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../xorg-util/{util-macros_1.19.1.bb => util-macros_1.19.2.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-util/{util-macros_1.19.1.bb => util-macros_1.19.2.bb} (75%) diff --git a/meta/r

[OE-core] [PATCH 11/21] xcb-proto: update to 1.13

2018-04-03 Thread Armin Kuster
From: Armin Kuster drop patches included in update Signed-off-by: Armin Kuster --- .../0001-Make-whitespace-use-consistent.patch | 215 - ...print-is-a-function-and-needs-parentheses.patch | 75 --- .../{xcb-proto_1.12.bb => xcb-proto_1.13.bb} | 10 +- 3 fi

[OE-core] [PATCH 15/21] libxcb: update to 1.13

2018-04-03 Thread Armin Kuster
From: Armin Kuster patch 0001-include-stdint.h-for-SSIZE_MAX-and-SIZE_MAX-definiti.patch remove as it is included in update Signed-off-by: Armin Kuster --- .../Fix-inconsistent-use-of-tabs-vs.-space.patch | 62 -- .../xorg-lib/{libxcb_1.12.bb => libxcb_1.13.bb}| 6 +-

[OE-core] [PATCH 20/21] xorg: replace depricated *proto depends with xorgproto

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-graphics/mesa/mesa.inc | 6 +++--- meta/recipes-graphics/xorg-app/mkfontscale_1.1.3.bb | 2 +- meta/recipes-graphics/xorg-app/rgb_1.0.6.bb | 2 +- m

[OE-core] [PATCH 19/21] maintainers and distro: replace deprecated *protro header files with xorgproto

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/conf/distro/include/distro_alias.inc | 30 +- meta/conf/distro/include/maintainers.inc | 28 +--- 2 files changed, 2 insertions(+), 56 deletions(-) diff --git a/meta/conf/distro/include

[OE-core] [PATCH 21/21] maintainers: update email address

2018-04-03 Thread Armin Kuster
Signed-off-by: Armin Kuster --- meta/conf/distro/include/maintainers.inc | 212 +++ 1 file changed, 106 insertions(+), 106 deletions(-) diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index 5b142c0..d7a7a1a 100644 ---

[OE-core] [PATCH 17/21] xorgproto: add replacement for depricated calibrateproto

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-graphics/xorg-proto/xorgproto_2018.4.bb | 14 ++ 1 file changed, 14 insertions(+) create mode 100644 meta/recipes-graphics/xorg-proto/xorgproto_2018.4.bb diff --git a/meta/recipes-graphics/xorg-proto/xorgproto_2018.4.

[OE-core] [PATCH 18/21] *proto: remove depricated xorg proto header recipes and replace by xorgproto

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../xorg-proto/bigreqsproto_1.1.2.bb | 16 - .../xorg-proto/calibrateproto/fix.patch| 42 -- .../xorg-proto/calibrateproto_git.bb | 21 --- .../xorg-proto/compositeprot

[OE-core] [PATCH 16/21] xf86-video-vesa: update 2.4.0 update

2018-04-03 Thread Armin Kuster
From: Armin Kuster Signed-off-by: Armin Kuster --- .../{xf86-video-vesa_2.3.4.bb => xf86-video-vesa_2.4.0.bb} | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) rename meta/recipes-graphics/xorg-driver/{xf86-video-vesa_2.3.4.bb => xf86-video-vesa_2.4.0.bb} (77%) diff --git

[OE-core] ✗ patchtest: failure for Package updates for Master

2018-04-03 Thread Patchwork
== Series Details == Series: Package updates for Master Revision: 1 URL : https://patchwork.openembedded.org/series/11671/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the prop

Re: [OE-core] [PATCH 1/1] systemd: fix typo in sulogin-path setting

2018-04-03 Thread Paul Eggleton
On Monday, 26 March 2018 9:05:20 PM NZST Chen Qi wrote: > Fix typo in sulogin-path setting. It should be ${base_sbindir} instead of > just {base_sbindir}. > > Signed-off-by: Chen Qi > --- > meta/recipes-core/systemd/systemd_237.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff

[OE-core] [PATCH 2/2] archiver: Fix archive for linked kernel source

2018-04-03 Thread Tom Hochstein
When archiving a kernel, if S is ${WORKDIR}/git, then ${WORKDIR}/git is in fact a soft link into work-shared, and the archive contains just the soft link. Fix by archiving the real directory. Signed-off-by: Tom Hochstein --- meta/classes/archiver.bbclass | 5 + 1 file changed, 5 insertions(+

Re: [OE-core] [PATCH V2 4/7] libgpg-error: 1.27 -> 1.28

2018-04-03 Thread Hongxu Jia
On 2018年04月04日 02:35, Martin Jansa wrote: This seems to cause: | ../../libgpg-error-1.28/src/logging.c: In function '_gpgrt_log_printhex': | ../../libgpg-error-1.28/src/logging.c:1153:49: error: incompatible type for argument 4 of '_gpgrt_logv_printhex' |      _gpgrt_logv_printhex (buffer, le

[OE-core] [PATCH V3] libgpg-error: 1.27 -> 1.28

2018-04-03 Thread Hongxu Jia
- Rebase pkgconfig.patch - Fix regression on arm64 due to invalid use of va_list License-Update: copyright years Signed-off-by: Hongxu Jia --- ...gression-on-arm64-due-to-invalid-use-of-v.patch | 61 .../libgpg-error/libgpg-error/pkgconfig.patch | 67 +