- Apr 08, 2022
-
-
Robert Drab authored
Signed-off-by:
Robert Drab <robert.drab@huawei.com>
-
Robert Drab authored
This reverts commit 82e0bd85. The build directory is created in the do_configure task that is executing GN which relies on the build directory check. The os.path.samefile() raises an exception when os.stat() fails and therefore cannot be used to compare paths of non-existing directories. Signed-off-by:
Robert Drab <robert.drab@huawei.com>
-
Robert Drab authored
Signed-off-by:
Robert Drab <robert.drab@huawei.com>
-
Robert Drab authored
Currently only the case where GN_TARGET_ARCH_NAME variable is undefined was caught. The variable defined as an empty string would bypass the check. Signed-off-by:
Robert Drab <robert.drab@huawei.com>
-
Signed-off-by:
Chase Qi <chase.qi@linaro.org>
-
Add the recipe to `-base-tests` image for kselftest. Add kernel-selftest.bbappend to install the kselftest runner scripts and also make it compatible with libc-musl. Signed-off-by:
Chase Qi <chase.qi@linaro.org>
-
- Apr 07, 2022
-
-
- convert to kirkstone override syntax - restrict example package to include only examples directory Signed-off-by:
Francesco Pham <francesco.pham@huawei.com>
-
Esben Haabendal authored
This provides a gn_base.bbclass which can be used instead of gn.bbclass in recipes where a different method for managing toolchain configuration is used. Note, any recipes calling gn_do_configure or gn_do_compile will need to call the new gn_base_do_configure and gn_base_do_compile respectively instead. Signed-off-by:
Esben Haabendal <esben.haabendal@huawei.com>
-
- Apr 05, 2022
-
-
Stefan Schmidt authored
According to discussions with upstream the focus has now moved towards stabilization. Making sure we update from time to time to include these bug fixes until there is a 1.0 release at some point this year. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Stefan Schmidt authored
This patch has been submitted upstream now. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Stefan Schmidt authored
Only re-ordering of lines, no functionality changes. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Stefan Schmidt authored
The main changes are the update to a newer upstream revision and the switch to using the cmake build system of openthread. We also disabled the fetch of external git submodules in third party to reduce the code and involved licenses (which are not needed for the posix build). Last but not least Thread 1.2 and spinel reset connection have been enabled to work better with the meta-zephyr generated firmware images on the radios. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Stefan Schmidt authored
Only re-ordering of lines, no functionality changes. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Stefan Schmidt authored
This project is pretty inactive and the bump to HEAD does only include two patches. The security fix we already carried localy and a documentation update without any impact on the code. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Natalia Kovalenko authored
Fix override for op-tee preferred version. This will build the right op-tee recipe, which contains the necessary configurations for the board with 4Gb of RAM Signed-off-by:
Natalia Kovalenko <waykovalenko@gmail.com>
-
Zygmunt Krynicki authored
Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Zygmunt Krynicki authored
Read-only Oniro images now have space to provision rauc-hawkbit-updater configuration file. The startup of the update service is conditional on the presence of that file. The default configuration file is stored as an example in the read-only image. Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Zygmunt Krynicki authored
This fixes a crash on NULL pointer on startup. Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Zygmunt Krynicki authored
Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Andrei Gherzan authored
Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
- Apr 04, 2022
-
-
Andrei Gherzan authored
Closes #487 Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
Andrei Gherzan authored
The EF infrastructure (GitLab) doesn't support image registry. This moves the CI logic of building and deploying all the container images to the OSTC instance while EF catches up[1]. [1] eclipsefdn/helpdesk#1108 Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
Davide Gardenal authored
Signed-off-by:
Davide Gardenal <davide.gardenal@huawei.com>
-
- Apr 01, 2022
-
-
Stefan Schmidt authored
The new revision does offer more Thread 1.2 features we are starting to use now. One patch got obsolete and the number of third_party modules was reduced (and with it the number of license files and licenses). An additional fix is needed for the systemd unit file to start. Fixes: eclipse/oniro-core/oniro#38 Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Francesco Pham authored
drop mbedtls patch because mbedtls has been updated to v2.28.0 in oe-core -Wformat-truncation level has been reduces upstream so this patch is not necessary anymore: https://github.com/Mbed-TLS/mbedtls/commit/2065a8d8af27c6cb1e40c9462b5933336dca7434 Signed-off-by:
Francesco Pham <francesco.pham@huawei.com>
-
- Mar 30, 2022
-
-
Marta Rybczynska authored
This patch implements the YAML output for CVE-check and re-implements the coverage pass using this format (also simplifies the logic). Add an option to output the CVE check in a JSON-based format. This format is easier to parse in software than the original text-based one and allows post-processing by other tools. Output formats are now handed by CVE_CHECK_FORMAT_TEXT and CVE_CHECK_FORMAT_JSON. Both of them are enabled by default. The JSON output format gets generated in a similar way to the text format with the exception of the manifest: appending to JSON arrays requires parsing the file. Because of that we first write JSON fragments and then assemble them in one pass at the end. Until now the CVE checker was giving information about CVEs found for a product (or more products) contained in a recipe. However, there was no easy way to find out which products or recipes have no CVEs. Having no reported CVEs might mean there are simply none, but can also mean a product name (CPE) mismatch. This patch adds CVE_CHECK_COVERAGE option enabling a new type of statistics. Then we use the new JSON format to report the information. The legacy text mode report does not contain it. This option is expected to help with an identification of recipes with mismatched CPEs, issues in the database and more. This work is based on [1], but adding the JSON format makes it easier to implement, without additional result files. [1] https://lists.openembedded.org/g/openembedded-core/message/159873 This is a backported version of two patches submitted upstream: https://lists.openembedded.org/g/openembedded-core/message/163745 and https://lists.openembedded.org/g/openembedded-core/message/163746 The difference is that we bring back the yaml merge function that is in the lib/ directory in the upstream proposal. Signed-off-by:
Marta Rybczynska <marta.rybczynska@huawei.com>
-
Marta Rybczynska authored
Update the class to OE-core 6002bdc77643c363a8326bf163baecba8b36e3e0. This includes: - inclusive language changes - the rework of the database lock Signed-off-by:
Marta Rybczynska <marta.rybczynska@huawei.com>
-
- Mar 29, 2022
-
-
Andrei Gherzan authored
This avoids warnings like: warning: redirecting to https://gitlab.eclipse.org/eclipse/oniro-core/oniro.git/ Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
- Mar 25, 2022
-
-
Andrei Gherzan authored
Version 0.28 will come with these patches merged in. This will happen as soon as the relevant upstream merge gets in[1]. [1] eclipse/oniro-core/meta-zephyr!1 Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
Original upstream commit: https://git.openembedded.org/openembedded-core/commit/?id=9829c16301bf2dce39fa046401a984f112fa0322 Add directory creation to be sure the destination directory exists before performing the file copy. FileNotFoundError occurs when running CI, caused by the fact that the destination directory doen't exists. Signed-off-by:
Davide Gardenal <davide.gardenal@huawei.com>
-
Stefan Schmidt authored
Adding the currently available Matter example for Linux. This will give us more test applications. Before we upstream this we would need to decide if we want to split these off into a dedicated package. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
-
Andrei Gherzan authored
Yet another upstream rebase. We also raised this with them and they will start using merges. Hopefully this is the last one to fix. Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
This saves half of the space used by compressed disk artifacts. I ran into the issue when creating grubenv recovery logic. To my surprise the execution flow ended up in the case where both slots are available and timestamp on the kernel is used to break the tie. Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
- Mar 24, 2022
-
-
Andrei Gherzan authored
The revision is not only for pinned SHAs. It can also use branches - which are updated accordingly by repo. Drop the comments which assume that revision is only for pinned versions. Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
As defined on https://booting.oniroproject.org/distro/infra/ Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Historically the DCO check was routed to a dedicated but slow machine that guaranteed that no CI would be stuck waiting on the miniscule compliance job. With the Eclipse migration and CI/CD being slightly out of our control, it's just more convenient to drop this tag rather than request configuration change in the instance. Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Historically the REUSE check was routed to a dedicated but slow machine that guaranteed that no CI would be stuck waiting on the miniscule compliance job. With the Eclipse migration and CI/CD being slightly out of our control, it's just more convenient to drop this tag rather than request configuration change in the instance. Signed-off-by:
Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
-
Andrei Gherzan authored
This is now the currently main development branch. Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
Andrei Gherzan authored
The repository holding the repo manifests is now under Eclipse infrastructure. Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com>
-
Pavel Zhukov authored
Template has been taken from old gitlab instance. Signed-off-by:
Pavel Zhukov <pavel.zhukov@huawei.com> (cherry picked from commit d79daf1c)
-