[OE-core] [PATCH] Revert "unzip: fix CVE-2019-13232"

2019-07-20 Thread Khem Raj
See [1] This reverts commit 4df4de2ac8bc0e80446e1ad0ce67eb244e2d2a32. [1] http://lists.openembedded.org/pipermail/openembedded-core/2019-July/284859.html Signed-off-by: Khem Raj Cc: Anuj Mittal --- .../unzip/unzip/CVE-2019-13232.patch | 339 -- meta/recipes-extended/

Re: [OE-core] [meta-oe][PATCH 1/2] pegtl: Initial recipe

2019-07-20 Thread Khem Raj
wong mailing list. On Sat, Jul 20, 2019 at 9:09 AM Ayoub Zaki wrote: > > Introduce the Parsing Expression Grammar Template Library (PEGTL) > a zero-dependency C++ header-only parser combinator library for creating > parsers > according to the Parsing Expression Grammar (PEG). > > Signed-off-by:

Re: [OE-core] [meta-oe][PATCH 2/2] usbguard: Initial recipe

2019-07-20 Thread Khem Raj
wrong mailing list On Sat, Jul 20, 2019 at 9:09 AM Ayoub Zaki wrote: > > Introduce the USBGuard software framework that helps to protect against rogue > USB devices (a.k.a. BadUSB) > by implementing basic whitelisting and blacklisting capabilities based on > device attributes. > > Signed-off-by

Re: [OE-core] [PATCH 3/3] unzip: fix CVE-2019-13232

2019-07-20 Thread Khem Raj
This is causing issues in OE world build, unpacking zip SRC_URIs which have been working well see https://errors.yoctoproject.org/Errors/Build/84471/ https://errors.yoctoproject.org/Errors/Build/84470/ https://errors.yoctoproject.org/Errors/Build/84467/ Debian has the patch proposed here along w

[OE-core] [PATCH V4 3/4] elfutils: Fix eu-* utils builds for musl

2019-07-20 Thread Khem Raj
Re-organize the musl patches in three different areas namely libs, utils and tests, this will help maintain them in future version bumps Add obstack dependency on musl targets which is needed for eu-* PN and PN-binutils is not empty anymore on musl Signed-off-by: Khem Raj Signed-off-by: Richard

[OE-core] [PATCH V4 4/4] maintainers: Account for musl-obstack and libssp-nonshared

2019-07-20 Thread Khem Raj
Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/conf/distro/include/maintainers.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index d403ed7938..77a753a5bf 100644 --- a/meta/conf/distro

[OE-core] [PATCH V4 2/4] musl-obstack: Add recipe

2019-07-20 Thread Khem Raj
obstacks from GNUlib is used in some OE-Core packages e.g. elfutils and other packages outside OE-Core, this recipe helps provide this functionality standalone on musl systems, and helps in getting full versions of dependent packages Signed-off-by: Khem Raj --- meta/recipes-core/musl/musl-obstac

[OE-core] [PATCH V4 1/4] pam_systemd: Include missing.h for secure_getenv

2019-07-20 Thread Khem Raj
'secure_getenv' api is not uniformly implemented across all C libraries therefore its good to include missing.h so it can use the alternative implementation where its not awvailable Fixes ../git/src/login/pam_systemd.c:344:13: error: implicit declaration of function 'secure_getenv' is invalid in

[OE-core] [PATCH] python3-pbr: update to 5.4.1

2019-07-20 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- meta/recipes-devtools/python/python3-pbr_5.4.0.bb | 5 - meta/recipes-devtools/python/python3-pbr_5.4.1.bb | 5 + 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 meta/recipes-devtools/python/python3-pbr_5.4.0.bb create mode 10064

[OE-core] [meta-oe][PATCH 2/2] usbguard: Initial recipe

2019-07-20 Thread Ayoub Zaki
Introduce the USBGuard software framework that helps to protect against rogue USB devices (a.k.a. BadUSB) by implementing basic whitelisting and blacklisting capabilities based on device attributes. Signed-off-by: Ayoub Zaki --- .../usbguard/usbguard_0.7.4.bb| 37 ++

[OE-core] [meta-oe][PATCH 1/2] pegtl: Initial recipe

2019-07-20 Thread Ayoub Zaki
Introduce the Parsing Expression Grammar Template Library (PEGTL) a zero-dependency C++ header-only parser combinator library for creating parsers according to the Parsing Expression Grammar (PEG). Signed-off-by: Ayoub Zaki --- meta-oe/recipes-extended/pegtl/pegtl_2.1.4.bb | 12 1 f

[OE-core] [PATCH] udev-extraconf: do not mount swap partitions

2019-07-20 Thread Oleksandr Kravchuk
Swap is a special filesystem that cannot be mounted, so do not try to, otherwise we will have service that tries and fails to mount it with the following error: systemd[1]: Mounting /run/media/nvme0n1p3... mount[1229]: mount: /run/media/nvme0n1p3: unknown filesystem type 'swap'. Signed-off-by: Ol