Re: [OE-core] [PATCH 1/2] initscripts: Fix various shellcheck warnings in populate-volatile.sh

2020-07-24 Thread Khem Raj
What all shells has it been tested for ? On Fri, Jul 24, 2020 at 10:12 AM Andrei Gherzan wrote: > Signed-off-by: Andrei Gherzan > --- > .../initscripts-1.0/populate-volatile.sh | 58 +-- > 1 file changed, 29 insertions(+), 29 deletions(-) > > diff --git >

[v1 resend][oe-core][PATCH 1/1] gconf: use python3

2020-07-24 Thread Joe Slater
Modify gsettings-schema-convert to use python3. Also add RDEPEND on python3-xml. Signed-off-by: Joe Slater --- meta/recipes-gnome/gnome/gconf/python3.patch | 60 meta/recipes-gnome/gnome/gconf_3.2.6.bb | 3 ++ 2 files changed, 63 insertions(+) create mode

[OE-core] [PATCH 1/2] initscripts: Fix various shellcheck warnings in populate-volatile.sh

2020-07-24 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan --- .../initscripts-1.0/populate-volatile.sh | 58 +-- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh

[OE-core] [PATCH 2/2] initscripts: Fix populate-volatile.sh bug when file/dir exists

2020-07-24 Thread Andrei Gherzan
The blocks which test for entry exitence (file or directory) use a `A && B || C` syntax. This form is not behaving as a if-then-else block even the code logic assumes that. C may run when A is true which breaks the case where VERBOSE is 'no' but the file/directory exists. Along with fixing these

[OE-core] ltp.py: compare dmesg before and after test

2020-07-24 Thread Matthew
Hi, I'm working on bugzilla 13802 by removing OOM killer test execution. Randy was suggesting before running ltp, we should clear the dmesg ring buffer, run the test, and then collect dmesg ring buffer again afterwards. Initially we would only print out the log, we could decide that a

Re: [OE-core] [yocto] error about cve_check after a 'do_populate_sdk: Succeeded' on poky master since 20 july on ubuntu18.04/Debian 10/Debian 9.12

2020-07-24 Thread akuster
This error has been reported earlier. I am working on a fix . -armin On 7/24/20 5:25 AM, vygu via lists.yoctoproject.org wrote: > Hello, > > We observe this following error about cve_check after a populate_sdk: > > ERROR: Execution of event handler 'cve_save_summary_handler' failed > Traceback

[OE-core] [PATCH v6 05/13] rpm: Move rootfs to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/rpm/rootfs.py | 148 ++ meta/lib/oe/rootfs.py |

[OE-core] [PATCH v6 08/13] rpm: Move sdk to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/rpm/sdk.py | 114 + meta/lib/oe/sdk.py | 106

[OE-core] [PATCH v6 04/13] deb: Move deb manifest to its own subdir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/manifest.py | 21 + meta/lib/oe/package_manager/deb/__init__.py | 3

[OE-core] [PATCH] mesa: enable freedreno Vulkan driver if freedreno is enabled

2020-07-24 Thread Dmitry Baryshkov
From: Dmitry Baryshkov If freedreno is enabled in PACKAGECONFIG, enable respective Vulkan driver. Signed-off-by: Dmitry Baryshkov --- meta/recipes-graphics/mesa/mesa.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-graphics/mesa/mesa.inc

[OE-core] [PATCH v6 07/13] deb: Move rootfs to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/deb/rootfs.py | 209 ++ meta/lib/oe/rootfs.py |

[OE-core] [PATCH 2/2] tune-cortexa55.inc: switch to using armv8.2a include file

2020-07-24 Thread Dmitry Baryshkov
From: Dmitry Baryshkov Since Cortex-A55 is an ARMv8.2 core, switch to using arch-armv8-2a.inc file. Signed-off-by: Dmitry Baryshkov --- meta/conf/machine/include/tune-cortexa55.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/machine/include/tune-cortexa55.inc

[OE-core] [PATCH v6 13/13] deb: Move package manager to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/__init__.py | 487 meta/lib/oe/package_manager/deb/__init__.py |

[OE-core] [PATCH v6 12/13] ipk: Move package manager to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/__init__.py | 432 - meta/lib/oe/package_manager/ipk/__init__.py | 501

[OE-core] [PATCH v6 03/13] ipk: Move ipk manifest to its own subdir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/manifest.py | 72 +--- meta/lib/oe/package_manager/ipk/__init__.py |

[OE-core] [PATCH v6 10/13] deb: Move sdk to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/deb/sdk.py | 95 ++ meta/lib/oe/sdk.py | 87

[OE-core] [PATCH v6 01/13] package_manager: Move to package_manager/__init__.py

2020-07-24 Thread Fredrik Gustafsson
This is part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/{package_manager.py => package_manager/__init__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-)

[OE-core] [PATCH v6 09/13] ipk: Move sdk to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/ipk/sdk.py | 96 ++ meta/lib/oe/sdk.py | 87

[OE-core] [PATCH v6] Add package managers as a plugin

2020-07-24 Thread Fredrik Gustafsson
OE-core today has three different package managers, the well-known formats deb and rpm is supported as well as ipkg that is good for embedded devices. When building and having a good cache hit, a significant amount of time is spent in the phase of generating a rootfs, which is really about the

[OE-core] [PATCH v6 02/13] rpm: Move manifest to its own subdir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/manifest.py | 53 +--- meta/lib/oe/package_manager/rpm/__init__.py |

[OE-core] [PATCH v6 11/13] rpm: Move package manager to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/__init__.py | 398 --- meta/lib/oe/package_manager/rpm/__init__.py | 399

[OE-core] [PATCH v6 06/13] ipk: Move rootfs to its own dir

2020-07-24 Thread Fredrik Gustafsson
This is a part of a refactor that will split the package manager code so that it's possible to use other package managers in other layers. Signed-off-by: Fredrik Gustafsson --- meta/lib/oe/package_manager/ipk/rootfs.py | 385 ++ meta/lib/oe/rootfs.py |

[OE-core] [PATCH 1/2] arch-armv8-2a.inc: add tune include for armv8.2a

2020-07-24 Thread Dmitry Baryshkov
From: Dmitry Baryshkov Add tune include for armv8.2a. This adds support only for bare armv8.2a (and for crypto extension). There is no support for additional instructions added by architecture extensions (except the main crypto extension support). Signed-off-by: Dmitry Baryshkov ---

[OE-core] error about cve_check after a 'do_populate_sdk: Succeeded' on poky master since 20 july on ubuntu18.04/Debian 10/Debian 9.12

2020-07-24 Thread vygu via lists.openembedded.org
Hello, We observe this following error about cve_check after a populate_sdk: ERROR: Execution of event handler 'cve_save_summary_handler' failed Traceback (most recent call last): File "/home/user/poky/meta/classes/cve-check.bbclass", line 65, in cve_save_summary_handler(e=): >

Re: Fw: [OE-core] [PATCH] wic/bootimg-efi: Add support for IMAGE_BOOT_FILES

2020-07-24 Thread Khasim Mohammed
Hi Lee, On Fri, 2020-07-24 at 12:12 +0530, Khasim Mohammed wrote: > > > From: openembedded-core@lists.openembedded.org < > openembedded-core@lists.openembedded.org> on behalf of Lee Chee Yang > via lists.openembedded.org < >

[OE-core] [PATCH] selftest: wic: IMAGE_BOOT_FILES test to run on bootimg-efi

2020-07-24 Thread Khasim Mohammed
bootimg-efi is updated to install files listed in IMAGE_BOOT_FILES into the boot partition. The test_mkefidisk in oeqa selftest is updated to run IMAGE_BOOT_FILES test for bootimg-efi. Change-Id: Id577e853fecc5fe58531c7afa33db3b1c00c8319 Signed-off-by: Khasim Syed Mohammed ---