[OE-core] [PATCH] module-base: use modules_prepare build target in do_make_scripts()

2018-01-31 Thread Enrico Jorns
K_VALIDATION in kernel config enabled, module build will fail with | make[5]: *** No rule to make target 'tools/objtool/objtool', needed by '[...]' The 'modules_prepare' target also requires bc-native to be present in sysroot. Signed-off-by: Enrico Jorns --- meta/cl

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

2018-01-20 Thread Enrico Jorns
of the cleandirs varflag in base.bbclass to a simple variable assignment as almost all other recipes do it. This now again allows overwriting or appending the varflag with common methods such as done in kernel.bbclass. This issue affects morty, pyro, rocko and master. Signed-off-by: Enr

[OE-core] [PATCH] systemd: make vconsole a PACKAGECONFIG option

2017-03-29 Thread Enrico Jorns
sole-setup': No such file or directory | systemd-udevd[96]: Process '/lib/systemd/systemd-vconsole-setup' failed with exit code 2. as the 90-vconsole.rules will still be installed with having a RUN+="/lib/systemd/systemd-vconsole-setup" in it that attempts to execute a non

[OE-core] [PATCH] image_types: perform fsck on created ext image

2017-03-24 Thread Enrico Jorns
oes not have a recent time set. This patch moves the initial fsck run that performs the optimization from the target to the host system and thus prevents the target from performing an avoidable reboot. Signed-off-by: Enrico Jorns Signed-off-by: Ulrich Ölmann --- meta/classes/image_types.bbc

[OE-core] [PATCH][krogoth] bs4: fix bitbake build error with latest html5lib version

2016-11-29 Thread Enrico Jorns
s of the `_base` module to `base`. Note that this patch will break builds with older versions of python-html5lib. Signed-off-by: Enrico Jorns --- bitbake/lib/bs4/builder/_html5lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/bs4/builder/_html5lib.py b/bi

[OE-core] [PATCH v2][krogoth] nss: fix compilation with glibc-2.24

2016-11-08 Thread Enrico Jorns
The issue is reported in nss bug tracker (https://bugzilla.mozilla.org/show_bug.cgi?id=1254334) and fixed in nss mainline. The fixing patch is extracted from the nss source code repository. Signed-off-by: Enrico Jorns --- Added missing upstream status. .../nss/nss/use-readdir-ins

[OE-core] [PATCH v2][krogoth] pseudo: backport 'Work around issues with glibc 2.24'

2016-10-27 Thread Enrico Jorns
This patch is required for krogoth, too in order to make it properly work with glibc 2.24. Signed-off-by: Enrico Jorns Below the message of the original commit: There are issues with a change made to RTLD_NEXT behaviour in glibc 2.24 and that change was also backported to older glibc versions

[OE-core] [PATCH][krogoth] pseudo: backport 'Work around issues with glibc 2.24'

2016-10-27 Thread Enrico Jorns
This patch is required for krogoth, too in order to make it properly work with glibc 2.24. Signed-off-by: Enrico Jorns Below the message of the original commit: There are issues with a change made to RTLD_NEXT behaviour in glibc 2.24 and that change was also backported to older glibc versions

[OE-core] [PATCH][krogoth] nss: fix compilation with glibc-2.24

2016-10-27 Thread Enrico Jorns
The issue is reported in nss bug tracker (https://bugzilla.mozilla.org/show_bug.cgi?id=1254334) and fixed in nss mainline. The fixing patch is extracted from the nss source code repository. Signed-off-by: Enrico Jorns --- .../nss/nss/use-readdir-instead-of-readdir_r.patch | 95

[OE-core] [PATCH][krogoth] db: let fix-parallel-build.patch apply again

2016-10-27 Thread Enrico Jorns
This patch fails to apply with quilt for the 6.0.30 version of db in some cases. This issue is fixed in upstream, this is a minimal version of the fix, adapted to krogoth stable branch. Signed-off-by: Enrico Jorns --- meta/recipes-support/db/db/fix-parallel-build.patch | 2 +- 1 file changed, 1

[OE-core] [PATCH][krogoth] Python signal module RDEPENDS fix

2016-10-26 Thread Enrico Jorns
The attached patch from OE-core master branch (6306dc8351c19059c4c2a8e75bb5733e64532732) fixes a dependency issue introduces with OE-Core patch 0575e8c9fb52a7b594025fd20445a2edd06e3c69 "python3: Fixes several python3 dependency problems". As the latter patch also made its way into the krogoth bran

[OE-core] [PATCH] python-3.5-manifest.inc: the signal module RDEPENDS on enum

2016-10-26 Thread Enrico Jorns
From: Robert Yang Fixed: $ python3 >>> import signal Traceback (most recent call last): File "", line 1, in File "/path/to/sdk/sysroots/x86_64-pokysdk-linux/usr/lib/python3.5/signal.py", line 4, in from enum import IntEnum as _IntEnum ImportError: No module named 'enum' (From OE-Core

[OE-core] [PATCH] systemd: fix useradd parameter generation

2016-08-08 Thread Enrico Jorns
rror code. Fortunately, there is no problem when having a "commandA;;commandB" in the useradd string, this will be ignored. Thus using "_append" instead of "+=" is sufficient here. Signed-off-by: Enrico Jorns --- meta/recipes-core/systemd/systemd_230.bb | 14 +++--

[OE-core] [PATCH][krogoth] perl-ptest.inc: fix tar call to prevent objcopy failure

2016-06-29 Thread Enrico Jorns
which is unnecessary in this case Note that this could also be a candidate for backporting. Signed-off-by: Enrico Jorns --- meta/recipes-devtools/perl/perl-ptest.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/perl/perl-ptest.inc b/meta/reci

[OE-core] [PATCH][jethro] perl-ptest.inc: fix tar call to prevent objcopy failure

2016-06-29 Thread Enrico Jorns
which is unnecessary in this case Note that this could also be a candidate for backporting. Signed-off-by: Enrico Jorns --- meta/recipes-devtools/perl/perl-ptest.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/perl/perl-ptest.inc b/meta/reci

[OE-core] [PATCH] perl-ptest.inc: fix tar call to prevent objcopy failure

2016-05-30 Thread Enrico Jorns
ding an archive file, which is unnecessary in this case Note that this could also be a candidate for backporting. Signed-off-by: Enrico Jorns --- I just wanted to send my patch when I saw you had already send it. Will send this one instead as I added some more changes that might be useful. Mayb

[OE-core] [PATCH] autoconf: add missing perl-module-file-find to RDEPENDS

2016-01-12 Thread Enrico Jorns
The autoscan script uses the File.pm module which was missing in the list of RDEPENDS. This caused autoscan to fail with % autoscan [...] Can't locate File/Find.pm in @INC [...] Signed-off-by: Enrico Jorns --- meta/recipes-devtools/autoconf/autoconf.inc | 1 + 1 file changed, 1 inse

[OE-core] [PATCH] systemd: fix systemctl enable script for template units

2016-01-12 Thread Enrico Jorns
hes in the `DefaultInstance` string is required so that sed does not expand the escaped characters. Signed-off-by: Enrico Jorns --- meta/recipes-core/systemd/systemd-systemctl/systemctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd-systemctl/systemc