[meta-zephyr][PATCH 2/5] zephyr-echo-client: Add recipe for echo client
Amit Kucheria
From: Amit Kucheria <amit.kucheria.ext@...>
This sample application provides an example of using the the MBEDTLS library. Signed-off-by: Amit Kucheria <amit.kucheria.ext@...> --- recipes-kernel/zephyr-kernel/zephyr-echo-client.bb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes-kernel/zephyr-kernel/zephyr-echo-client.bb diff --git a/recipes-kernel/zephyr-kernel/zephyr-echo-client.bb b/recipes-kernel/zephyr-kernel/zephyr-echo-client.bb new file mode 100644 index 000000000000..c17e1e78f6b5 --- /dev/null +++ b/recipes-kernel/zephyr-kernel/zephyr-echo-client.bb @@ -0,0 +1,5 @@ +include zephyr-sample.inc + +ZEPHYR_SRC_DIR = "${S}/samples/net/sockets/echo_client" + +ZEPHYR_MODULES_append = "\;${S}/modules/lib/mbedtls" -- 2.25.1
|
|
[meta-zephyr][PATCH 1/5] zephyr-kernel: Clone mbedtls
Amit Kucheria
From: Amit Kucheria <amit.kucheria.ext@...>
MBed TLS is a library that implements cryptographic primitives and SSL/TLS and DTLS protocols that are needed in secure network communications. Add it to the kernel include files to build and link against applications that need mbedtls. Signed-off-by: Amit Kucheria <amit.kucheria.ext@...> --- recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc | 1 + recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.6.0-rc1.inc | 1 + recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc | 1 + 3 files changed, 3 insertions(+) diff --git a/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc b/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc index 330fe59aebe5..c9acbbbc3645 100644 --- a/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc +++ b/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc @@ -28,6 +28,7 @@ ZEPHYR_MODULES = "" ZEPHYR_MODULES_append_arm = "\;${S}/modules/cmsis" ZEPHYR_MODULES_append_nordic = "\;${S}/modules/hal/nordic" ZEPHYR_MODULES_append_stm32 = "\;${S}/modules/hal/stm32" +ZEPHYR_MODULES_append_mbedtls = "\;${S}/modules/lib/mbedtls" ZEPHYR_MODULES_append_openamp = "\;${S}/modules/lib/open-amp\;${S}/modules/hal/libmetal" EXTRA_OECMAKE_append = " -DZEPHYR_MODULES=${ZEPHYR_MODULES}" diff --git a/recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.6.0-rc1.inc b/recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.6.0-rc1.inc index 6ea15931607d..a0e358ecd4f4 100644 --- a/recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.6.0-rc1.inc +++ b/recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.6.0-rc1.inc @@ -6,5 +6,6 @@ SRCREV_stm32 = "f8ff8d25aa0a9e65948040c7b47ec67f3fa300df" SRCREV_open-amp = "6010f0523cbc75f551d9256cf782f173177acdef" SRCREV_libmetal = "39d049d4ae68e6f6d595fce7de1dcfc1024fb4eb" SRCREV_tinycrypt = "3e9a49d2672ec01435ffbf0d788db6d95ef28de0" +SRCREV_mbedtls = "5765cb7f75a9973ae9232d438e361a9d7bbc49e7" PV = "2.6.0-rc1+git${SRCPV}" diff --git a/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc b/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc index 9fc08baaf210..8dcfec6f1f88 100644 --- a/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc +++ b/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc @@ -17,6 +17,7 @@ SRC_URI = "\ git://github.com/zephyrproject-rtos/cmsis.git;protocol=https;destsuffix=git/modules/cmsis;name=cmsis \ git://github.com/zephyrproject-rtos/hal_nordic.git;protocol=https;destsuffix=git/modules/hal/nordic;name=nordic \ git://github.com/zephyrproject-rtos/hal_stm32.git;protocol=https;destsuffix=git/modules/hal/stm32;name=stm32 \ + git://github.com/zephyrproject-rtos/mbedtls.git;protocol=https;destsuffix=git/modules/lib/mbedtls;name=mbedtls \ git://github.com/zephyrproject-rtos/open-amp.git;protocol=https;destsuffix=git/modules/lib/open-amp;name=open-amp \ git://github.com/zephyrproject-rtos/libmetal.git;protocol=https;destsuffix=git/modules/hal/libmetal;name=libmetal \ git://github.com/zephyrproject-rtos/tinycrypt.git;protocol=https;destsuffix=git/modules/crypto/tinycrypt;name=tinycrypt \ -- 2.25.1
|
|
[meta-zephyr][PATCH 0/5] Add mbedtls support and sample applications
Amit Kucheria
From: Amit Kucheria <amit.kucheria.ext@...>
MBed TLS is a library that implements cryptographic primitives and SSL/TLS and DTLS protocols that are needed in secure network communications. Add it to the kernel include files to build and link against applications that need mbedtls. Add a few sample applications that utilize mbedtls library too. Amit Kucheria (5): zephyr-kernel: Clone mbedtls zephyr-echo-client: Add recipe for echo client zephyr-http-client: Add recipe for http client zephyr-websocket-client: Add recipe for websocket client zephyr-mqtt-publisher: Add recipe for mqtt publisher recipes-kernel/zephyr-kernel/zephyr-echo-client.bb | 5 +++++ recipes-kernel/zephyr-kernel/zephyr-http-client.bb | 5 +++++ recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc | 1 + recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.6.0-rc1.inc | 1 + recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc | 1 + recipes-kernel/zephyr-kernel/zephyr-mqtt-publisher.bb | 5 +++++ recipes-kernel/zephyr-kernel/zephyr-websocket-client.bb | 5 +++++ 7 files changed, 23 insertions(+) create mode 100644 recipes-kernel/zephyr-kernel/zephyr-echo-client.bb create mode 100644 recipes-kernel/zephyr-kernel/zephyr-http-client.bb create mode 100644 recipes-kernel/zephyr-kernel/zephyr-mqtt-publisher.bb create mode 100644 recipes-kernel/zephyr-kernel/zephyr-websocket-client.bb -- 2.25.1
|
|
[meta-mingw][PATCH] zstd: Fix MinGW builds
Joshua Watt
Fixes the MinGW builds for zstd
Signed-off-by: Joshua Watt <JPEWhacker@...> --- recipes-extended/zstd/zstd_%.bbappend | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 recipes-extended/zstd/zstd_%.bbappend diff --git a/recipes-extended/zstd/zstd_%.bbappend b/recipes-extended/zstd/zstd_%.bbappend new file mode 100644 index 0000000..3b2b991 --- /dev/null +++ b/recipes-extended/zstd/zstd_%.bbappend @@ -0,0 +1,2 @@ +EXTRA_OEMAKE_append_mingw32 = " OS=Windows" +FILES_${PN}_append_mingw32 = " ${libdir}/*.dll" -- 2.31.1
|
|
[meta-parsec][PATCH] Correct typo: crago-bitbake
Signed-off-by: Randy MacLeod <Randy.MacLeod@...>
--- meta-parsec/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-parsec/README.md b/meta-parsec/README.md index a2736b6..6d938a6 100644 --- a/meta-parsec/README.md +++ b/meta-parsec/README.md @@ -75,7 +75,7 @@ to ensure maximum reproducibility. versions of parsec recipes. https://github.com/meta-rust/cargo-bitbake - When you have crago-bitbake built: + When you have cargo-bitbake built: 1. Checkout the required version of parsec repository. 2. Run cargo-bitbake inside the repository. It will produce a BB file. 3. Create a new include file with SRC_URI and LIC_FILES_CHKSUM from the BB file. -- 2.27.0
|
|
Re: using grpc fails with linker error: file in wrong format
Juergen Landwehr
Hello Khem,
we use CMake as build system. I checked the "sysdig" recipe and they defined both the "grpc" and "grpc-native" (same with protbuf) in the DEPENDS variable like so: DEPENDS += "... grpc grpc-native protobuf protobuf-native ..." If I do this in my recipe I get the following error: which is correct as the directory ".../recipe-sysroot/usr/bin" does not contain any grpc plugins. However the directory ".../recipe-sysroot-native/usr/bin" does (due to the dependency to grpc-native). -- Found Protobuf: /data/jenkins/workspace/e0_mbient_yocto_mbient_manifests_master_downstream/build/tmp/work/corei7-64-mbient-linux/tokenmaster-client/git-r0/recipe-sysroot/usr/lib/libprotobuf.so;-lpthread (found version "3.12.3") CMake Error at /data/jenkins/workspace/e0_mbient_yocto_mbient_manifests_master_downstream/build/tmp/work/corei7-64-mbient-linux/tokenmaster-client/git-r0/recipe-sysroot/usr/lib/cmake/grpc/gRPCTargets.cmake:197 (message): The imported target "gRPC::grpc_cpp_plugin" references the file "/data/jenkins/workspace/e0_mbient_yocto_mbient_manifests_master_downstream/build/tmp/work/corei7-64-mbient-linux/tokenmaster-client/git-r0/recipe-sysroot/usr/bin/grpc_cpp_plugin" but this file does not exist. Possible reasons include: It seems to work for sysdig, as they do not use "find_package(Protobuf)" or "find_package("gRPC") to detect gRPC related libraries/programs but use some custom code. So it looks like: 1) If I use "DEPENDS += "... grpc-native protobuf-native ..." I am able to generate grpc stubs and I am also able to successfully build my component, but only, if the build-host and target-host are compatible => NO CROSS COMPING 2) If I use "DEPENDS += "... grpc grpc-native protobuf protobuf-native ..." CMake immediately complains, that some the grpc plugins are missing 3) Using RDEPENDS seems to have no effect So it seems the only way to make this work is to use "DEPENDS += grpc grpc-native ...." and write some custom CMake code to detect grpc related libraries (e.g. libgrpc++.so) and programs (e.g. protoc, grpc_cpp_plugin). But again, I am new to Yocto and still hope, that there is an easier way?
|
|
Re: hardknott core-image-weston weston is crashing
Marek Belisko
Hi,
On Wed, May 26, 2021 at 1:32 PM Zoran Stojsavljevic <zoran.stojsavljevic@...> wrote: Well I found this: https://gitlab.freedesktop.org/wayland/weston/-/issues/314 and then related patch https://gitlab.freedesktop.org/wayland/weston/-/commit/d171c7b3ba346c4d0bd6494f45ebf0be3c3cc5fb which I've added but it doesn't help. When booted with plugged mouse it boots fine :) ZoranBR, marek
-- as simple and primitive as possible ------------------------------------------------- Marek Belisko - OPEN-NANDRA Freelance Developer Ruska Nova Ves 219 | Presov, 08005 Slovak Republic Tel: +421 915 052 184 skype: marekwhite twitter: #opennandra web: http://open-nandra.com
|
|
gstreamer-emements support fdkaacenc/fdkaacdec
#yocto
sateesh m
Hi Guys,
I need some support for gstreamer elements support fdkaacenc/fdkaacdec . Currently I am using gstreamer 16.0.1 version OE sources. I have added gstreamer bad,good,base,libav plugins Added in my image.gstreamer-plugins-bad its not providing fdkaac support I tried to enable but its not compiling my sources. I am using risc-v target machine . I am looking for where I can get sources can anybody knows please give suggestions build procedure steps . is i need to add any package related configuration in my local.conf please suggest me. Thanking you in advance. -- Regards, Sateesh
|
|
Re: hardknott core-image-weston weston is crashing
Zoran
Seems like this bug has nothing to do with YOCTO, rather with Wayland setup....
toggle quoted messageShow quoted text
https://wayland-devel.freedesktop.narkive.com/6yavoPFZ/i-ve-got-a-question-to-ask-you My two cent worth attempt, Zoran _______
On Wed, May 26, 2021 at 11:40 AM Marek Belisko <marek.belisko@...> wrote:
|
|
Re: Gatesgarth-24.0.4 image-live fails
Ferry Toth
Op 25-05-2021 om 22:13 schreef Guillaume Champagne:
Le mar. 25 mai 2021 à 12:25, Ferry Toth <fntoth@...> a écrit :Thanks. For some reason I don't see your message appearing on ML.HiThat's my bad. The initial patch is not right. I could reproduce your I'll look into that.BTW It also generates a directory iso and associated iso image. NeverNOISO is valid in Yocto releases before 2.6 (thud): Op 24-05-2021 om 14:39 schreef Ferry Toth:Wow, that got messed up, let me retry.
|
|
hardknott core-image-weston weston is crashing
Marek Belisko
Hi,
I'm using hardknott poky release and build core-image-weston. When started on display I didn't see wayland screen + terminal just console. Same setup works fine on dunfell release. Output from weston service: GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_texture_compression_astc_ldr GL_NV_pixel_buffer_object GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_separate_shader_objects GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_draw_elements_base_vertex GL_EXT_texture_border_clamp GL_KHR_context_flush_control GL_OES_draw_elements_base_vertex GL_OES_texture_border_clamp GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_KHR_parallel_shader_compile GL_MESA_tile_raster_order [09:38:18.885] GL ES 2 renderer features: read-back format: BGRA wl_shm sub-image to texture: yes EGL Wayland extension: yes [09:38:18.899] warning: no input devices on entering Weston. Possible causes: - no permissions to read /dev/input/event* - seats misconfigured (Weston backend option 'seat', udev device property ID_SEAT) [09:38:18.899] failed to create input devices Segmentation fault Machine is RPI3. Any ideas? Thanks and BR, marek -- as simple and primitive as possible ------------------------------------------------- Marek Belisko - OPEN-NANDRA Freelance Developer Ruska Nova Ves 219 | Presov, 08005 Slovak Republic Tel: +421 915 052 184 skype: marekwhite twitter: #opennandra web: http://open-nandra.com
|
|
QA notification for completed autobuilder build (yocto-3.1.8.rc1)
Pokybuild User <pokybuild@...>
A build flagged for QA (yocto-3.1.8.rc1) was completed on the autobuilder and is available at:
https://autobuilder.yocto.io/pub/releases/yocto-3.1.8.rc1 Build hash information: bitbake: 078f3164dcb1de7a141bec3a8fd52631d0362631 meta-arm: 9dadb61b36fdd09a39d8cb755fa29d03928a1116 meta-gplv2: 60b251c25ba87e946a0ca4cdc8d17b1cb09292ac meta-intel: 2fb89eb85dea00de9446c1cf44ba6a5586f42c84 meta-mingw: 524de686205b5d6736661d4532f5f98fee8589b7 oecore: ecd636154e7cfc1349a7cfd8026a85eafa219535 poky: 6ebb33bdaccaeadff0c85aab27acf35723df00d8 This is an automated message from the Yocto Project Autobuilder Git: git://git.yoctoproject.org/yocto-autobuilder2 Email: richard.purdie@...
|
|
Re: Gatesgarth-24.0.4 image-live fails
Ferry Toth
Hi
Op 25-05-2021 om 15:09 schreef Guillaume Champagne: Le mar. 25 mai 2021 à 08:19, Ferry Toth <fntoth@...> a écrit :It may well be a bug in meta-intel-edison. Although you are looking at the very, very old code.Adding Richard and Guillaume.Hi, So what we have now is: https://github.com/edison-fw/meta-intel-edison/blob/master/meta-intel-edison-distro/recipes-core/images/edison-image-minimal.bb this generates a dir edison-image-1.0/hddimg/ containing: bzImage initrd ldlinux.sys libcom32.c32 libutil.c32 syslinux.cfg vesamenu.c32 and this should generate in dir deploy-edison-image-image-complete/ a file called edison-image-edison.hddimg which it does without the patch. So would would I set rootfs to to make it work? BTW It also generates a directory iso and associated iso image. Never understood why, we also set NOISO = "1" Op 24-05-2021 om 14:39 schreef Ferry Toth:Wow, that got messed up, let me retry.
|
|
Yocto Project Status WW21`21
Stephen Jolley
Current Dev Position: YP 3.4 M1 Next Deadline: 7th June 2021 YP 3.4 M1 build
Next Team Meetings:
Key Status/Updates:
We are working to identify the load pattern on the infrastructure that seems to trigger these.
Ways to contribute:
YP 3.4 Milestone Dates:
Planned upcoming dot releases:
Tracking Metrics:
The Yocto Project’s technical governance is through its Technical Steering Committee, more information is available at: https://wiki.yoctoproject.org/wiki/TSC
The Status reports are now stored on the wiki at: https://wiki.yoctoproject.org/wiki/Weekly_Status
[If anyone has suggestions for other information you’d like to see on this weekly status update, let us know!]
Thanks,
Stephen K. Jolley Yocto Project Program Manager ( Cell: (208) 244-4460 * Email: sjolley.yp.pm@...
|
|
Re: [ANNOUNCEMENT] Yocto Project 3.3.1 (hardknott-25.0.1) is Released
Peter Kjellerstedt
toggle quoted messageShow quoted text
-----Original Message-----Well, those are the ones we have traditionally been using. The benefit I see with them are that they contain the release name. For me as a user, it is much easier to see and refer to "hardknott-something.1" than "yocto-3.3.1". I.e., I don't have a relation to the "25.0" or "3.3" part, but to the release name. We typically only talk about "hardknott" or "the second hardknott release". That said, a tag such as "yocto-hardknott-3.3.1" or "hardknott-3.3.1" would fulfill the same properties as "hardknott-25.0.1", though the one without the "yocto-" prefix is more suitable when tab completing, e.g., `git log hardknott-3.3..hardknott-3.3.1`, so that is the one I would use if it was up to me. ;) Cheers,//Peter
|
|
Re: Gatesgarth-24.0.4 image-live fails
Guillaume Champagne <champagne.guillaume.c@...>
Le mar. 25 mai 2021 à 08:19, Ferry Toth <fntoth@...> a écrit :
Hi, it seems seems edison-image.bb sets ROOTFS as empty: http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel-edison/tree/meta-intel-edison-distro/recipes-core/images/edison-image.bb#n17 so do_bootimg won't depend on ${PN}:do_image:${LIVE_ROOTFS_TYPE}. That dependency would, I think, create the folder you mentioned. Maybe the patch wrongly assumes that if ROOTFS is empty, we shouldn't add a dependency on "do_image.${LIVE_ROOTFS_TYPE}" at all since It looks like edison-image.bb still depends on ${PN}:do_image.${LIVE_ROOTFS_TYPE} even though ROOTFS is empty. I haven't looked too much into why edison-image works this way.
|
|
Re: [ANNOUNCEMENT] Yocto Project 3.3.1 (hardknott-25.0.1) is Released
Richard Purdie
On Tue, 2021-05-25 at 12:13 +0000, Peter Kjellerstedt wrote:
It seems the ”hardknott-25.0.1” tag is missing for meta-gplv2.This was deliberate since we've been trying to step away from the "poky" version numbers, I'm not sure they add much to anything. Is there a particular reason you were looking for those? Cheers, Richard
|
|
Re: Gatesgarth-24.0.4 image-live fails
Ferry Toth
Adding Richard and Guillaume.
toggle quoted messageShow quoted text
Op 24-05-2021 om 14:39 schreef Ferry Toth:
Wow, that got messed up, let me retry.
|
|
Re: [ANNOUNCEMENT] Yocto Project 3.3.1 (hardknott-25.0.1) is Released
Peter Kjellerstedt
And I just noticed that the ”hardknott-25.0.1” tag is missing for poky as well.
//Peter
From: yocto@... <yocto@...>
On Behalf Of Peter Kjellerstedt
Sent: den 25 maj 2021 14:13 To: Vineela <vineela.tummalapalli@...> Cc: 'yocto@...' <yocto@...> Subject: Re: [yocto] [ANNOUNCEMENT] Yocto Project 3.3.1 (hardknott-25.0.1) is Released
It seems the ”hardknott-25.0.1” tag is missing for meta-gplv2. The “yoccto-3.3.1” tag is present.
//Peter
From:
yocto@... <yocto@...>
On Behalf Of Vineela
Generating announcement for point release 3.3.1.
We are pleased to announce the Yocto Project 3.3.1 (hardknott-25.0.1) Release is now available for download.
http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2
A gpg signed version of these release notes is available at:
http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/RELEASENOTES
Full Test Report:
http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/testreport.txt
Thank you for everyone's contributions to this release.
Vineela Tummalapalli Yocto Project Build and Release
-------------------------- yocto-3.3.1 Release Notes --------------------------
-------------------------- Repositories/Downloads --------------------------
Repository Name: poky Repository Location: https://git.yoctoproject.org/git/poky Branch: hardknott Tag: yocto-3.3.1 Git Revision: 05a8aad57ce250b124db16705acec557819905ae Release Artefact: poky-hardknott-25.0.1 sha: 409b92d819f0c6e928b37bcc7cc4e80e5f27aa94748dcb479e325a4559c391c2 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2
Repository Name: openembedded-core Repository Location: https://git.openembedded.org/openembedded-core Branch: hardknott Tag: 2021-04.1-hardknott Git Revision: efce6334bf122a64f63d46c1c04e3dbffe298c51 Release Artefact: oecore-hardknott-25.0.1 sha: d53cdc060784ee7c86853b3b8120d6b3d0b445098cfcd27c939f303f9075262f Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/oecore-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/oecore-hardknott-25.0.1.tar.bz2
Repository Name: meta-mingw Repository Location: https://git.yoctoproject.org/git/meta-mingw Branch: hardknott Tag: yocto-3.3.1 Git Revision: 422b96cb2b6116442be1f40dfb5bd77447d1219e Release Artefact: meta-mingw-hardknott-25.0.1 sha: 89bce008a93d4717bca4069c1fd0004d88bf39e8a8098eb1e8376bc7521a600f Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/meta-mingw-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/meta-mingw-hardknott-25.0.1.tar.bz2
Repository Name: meta-gplv2 Repository Location: https://git.yoctoproject.org/git/meta-gplv2 Branch: hardknott Tag: yocto-3.3.1 Git Revision: 9e119f333cc8f53bd3cf64326f826dbc6ce3db0f Release Artefact: meta-gplv2-hardknott-25.0.1 sha: 988a222f13a9a87adf723cb86bd7db2648b3303e15bb3bac2d73e89f3faa547f Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/meta-gplv2-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/meta-gplv2-hardknott-25.0.1.tar.bz2
Repository Name: bitbake Repository Location: https://git.openembedded.org/bitbake Branch: 1.50 Tag: 2021-04.1-hardknott Git Revision: b67476d4758915db7a5d9f58bc903ae7501a1774 Release Artefact: bitbake-hardknott-25.0.1 sha: 3203a3c80f7ac749b1436b67b25733dbbe09b7ce9b32715a9f2fcd6bc24ec718 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/bitbake-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/bitbake-hardknott-25.0.1.tar.bz2
Repository Name: yocto-docs Repository Location: https://git.yoctoproject.org/git/yocto-docs Branch: hardknott Tag: yocto-3.3.1 Git Revision:eb19a2b5687f11c22c7fc26d3efabbf65adb572e
--------------- Contributors -------------- Alejandro Enedino Hernandez Samaniego Alexander Kanavin Anders Wallin Anthony Bagwell Anuj Mittal Bruce Ashfield Changqing Li Chen Qi Christophe Chapuis Daniel Ammann Douglas Royds Gavin Li He Zhe hongxu Jonas Höppner Jon Mason Jose Quaresma Joshua Watt Kai Kang Kevin Hao Khairul Rohaizzat Jamaluddin Khem Raj Konrad Weihmann Michael Opdenacker Mikko Rapeli Mingli Yu Nicolas Dechesne Niels Avonds Paul Eggleton Peter Budny Peter Kjellerstedt Quentin Schulz Randy MacLeod Reto Schneider Richard Purdie Romain Naour Ross Burton Sakib Sajal Sangeeta Jain Saul Wold Stefan Ghinea Stephen Jolley Trevor Gamblin Ulrich Ölmann Vinícius Ossanes Aquino wangmy Wes Lindauer Yanfei Xu Yann Dirson Yi Fan Yu Yi Zhao zhengruoqin
--------------- Known Issues --------------- An intermittent systemtap issue occurred on arm during testing.
--------------- Security Fixes --------------- db: update CVE_PRODUCT qemu: fix CVE-2021-3392 qemu: fix CVE-2021-20263 qemu: fix CVE-2020-27821 xserver-xorg: fix CVE-2021-3472 rsync: fix CVE-2020-14387 glib-2.0: fix CVE-2021-28153 qemu: fix CVE-2021-20257 qemu: fix CVE-2021-3416 qemu: fix CVE-2021-3409 qemu: fix CVE-2021-20221 qemu: fix CVE-2020-29443 qemu: fix CVE-2021-20181 gdk-pixbuf: fix CVE-2021-20240 cairo: fix CVE-2020-35492 wpa-supplicant: fix CVE-2021-30004 busybox: fix CVE-2021-28831 qemu: Fix CVE-2020-35517
--------------- Fixes --------------- documentation: prepare for 3.3.1 release build-appliance-image: Update to hardknott head revision poky.conf: Bump version for 3.3.1 hardknott release puzzles: Upstream changed to main branch for development linux-firmware: include all relevant files in -bcm4356 lsb-release: fix reproducibility failure ruby: upgrade 3.0.0 -> 3.0.1 grub2.inc: remove '-O2' from CFLAGS dejagnu: needs expect at runtime libcap: Configure Make variables correctly without a horrible hack lttng-modules: backport patches to fix build against 5.12+ kernel linux-yocto/5.4: qemuppc32: reduce serial shutdown issues linux-firmware: upgrade 20210208 -> 20210315 oeqa/qemurunner: Improve handling of run_serial for shutdown commands oeqa/qemurunner: Fix binary vs str issue oeqa/qemurunner: Improve logging thread exit handling for qemu shutdown test sanity.bbclass: mention CONNECTIVITY_CHECK_URIS in network failure message libevent: Increase ptest timing tolerance 50 ms -> 100 ms classes/image: Use xargs to set file timestamps linux-yocto/5.10: qemuppc32: reduce serial shutdown issues lib/package_manager: Use shutil.copy instead of bb.utils.copyfile for intercepts diffoscope: add native libraries to LD_LIBRARY_PATH Revert "oeqa: Set LD_LIBRARY_PATH when executing native commands" oe-buildenv-internal: add BitBake's library to PYTHONPATH webkitgtk: Fix reproducibility in minibrowser busybox: Fix reproducibility libjpeg-turbo: Use --reproducible option for nasm ptest-runner: libgcc must be installed for pthread_cancel to work linux-yocto/5.4: update to v5.4.116 linux-yocto/5.10: update to v5.10.34 linux-yocto/5.4: update to v5.4.114 perf: fix python-audit RDEPENDS linux-yocto/5.10: update to v5.10.32 linux-yocto/5.10: qemuriscv32.cfg: RV32 only supports 1G physical memory linux-yocto/5.10: aufs fixes yocto-uninative: Update to 3.1 which includes a patchelf fix wireless-regdb: upgrade 2020.11.20 -> 2021.04.21 rootfs.py: find .ko.gz and .ko.xz kernel modules as well pybootchart/draw: Avoid divide by zero error patchelf: Fix alignment patch mesa: upgrade 21.0.2 -> 21.0.3 patchelf: Fix note section alignment issues license_image.bbclass: Fix symlink to generic license files license_image.bbclass: Detect broken symlinks bitbake: runqueue: Handle deferred task rehashing in multiconfig builds bitbake: runqueue: Fix multiconfig deferred task sstate validity caching issue patchelf: Backport fix from upstream for note section overlap error weston: fix build failure due to race condition meta/lib/oeqa/core/tests/cases/timeout.py: add a testcase for the previous fix oeqa: tear down oeqa decorators if one of them raises an exception in setup cmake.bbclass: remove ${B} before cmake_do_configure kernel-yocto.bbclass: chdir to ${WORKDIR} for do_kernel_checkout yocto-check-layer: Avoid bug when iterating and autoadding dependencies libssh2: fix build failure with option no-ecdsa go: Use dl.google.com for SRC_URI cve-update-db-native: skip on empty cpe23Uri rpm: Upgrade to 4.16.1.3 runqemu: Ensure we cleanup snapshot files after image run lttng-tools: Fix path for test_python_looging lttng-tools: Fix missing legacy test files deb: apply postinstall on sdk externalsrc: Detect code changes in submodules Revert "externalsrc: Detect code changes in submodules" arch-armv6m.inc: fix access rights libxshmfence: Build fixes for riscv32 packagegroup-core-tools-testapps.bb: Remove kexec for riscv32 packagegroup-core-tools-profile: Remove valgrind for riscv32 ltp: fix empty ltp-dev package glslang: strip whitespace in pkgconfig file go: upgrade 1.16.2 -> 1.16.3 pango: re-enable ptest kmod: do not symlink config.guess/config.sub during autoreconf libtool: make sure autoheader run before automake Revert "inittab: Add getty launch on hvc0 for qemuppc64" sysvinit-inittab/start_getty: Check /sys for the tty device existence modutils-initscripts: Bail out when no module is installed systemd: upgrade 247.4 -> 247.6 insane: clean up some more warning messages sanity: Add error check for '%' in build path groff: not ship /usr/bin/grap2graph oeqa/runtime: space needed parselogs: ignore floppy error on qemu-system-x86 at boot stage go: update SRC_URI to use https protocol mesa: upgrade 21.0.1 -> 21.0.2 systemd: Fix build on mips/musl python3: Improve logging, syntax and update deprecated modules to create_manifest python3: Upgrade 3.9.2 -> 3.9.4 oeqa/runtime/cases: Only disable/enable for current boot oe-time-dd-test.sh: increase timeout to 15 sec scripts/oe-debuginfod: correct several issues ca-certificates: Fix openssl runtime cert dependencies nettle: upgrade 3.7.1 -> 3.7.2 linux-yocto/5.10: fix arm defconfig warnings linux-yocto/5.4: fix arm defconfig warnings linux-yocto/5.4: update to v5.4.112 linux-yocto-rt/5.10: update to -rt34 linux-yocto/5.10: update to v5.10.30 linux-yocto/5.4: update to v5.4.111 linux-yocto/5.10: update to v5.10.29 linux-yocto/5.10: BSP configuration fixes linux-yocto-dev: add features/scsi/scsi-debug.scc features/gpio/mockup.scc to KERNEL_FEATURES linux-yocto/5.10: update to v5.10.27 linux-yocto/5.4: update to v5.4.109 archiver: Fix typos oeqa/selftest: Ensure packages classes are set correctly for maintainers test pseudo: Upgrade to add trailing slashes ignore path fix lib/oe/terminal: Fix tmux new-session on older tmux versions (<1.9) bitbake: bitbake: tests/fetch: remove write protected files too bitbake: fetch/gitsm: Fix crash when using git LFS and submodules bitbake: bitbake-server: ensure server timeout is a float bitbake: bitbake: tests/fetch: fix test execution without .gitconfig bitbake: runqueue: Fix deferred task issues oeqa/selftest: Hardcode test assumptions about heartbeat event timings oe-time-dd-test.sh: provide more information from "top" oe-time-dd-test.sh: make executable ref-manual: add mention of DISTUTILS_SETUP_PATH ref-manual: migration guide: add release codenames ref-manual: add migration section for 3.3 release ref-manual: tweak buildtools section ref-manual: fix reference to build-essential ref-manual: add FIT_KERNEL_COMP_ALG* ref-manual: add passwd-expire to EXTRA_USERS_PARAMS ref-manual: add python3targetconfig class and remove python 2 references ref-manual: add REQUIRED_VERSION and adjust PREFERRED_VERSION entry ref-manual: and SDK_CUSTOM_TEMPLATECONF to glossary overview-manual: fix git command line ref-manual: update/fix text for SDK_VERSION Use variables for minimum host versions and bump Python to 3.6 ref-manual: add METADATA_REVISION and METADATA_BRANCH bitbake: bitbake-user-manual: add REQUIRED_VERSION and adjust PREFERRED_VERSION entry bitbake: bitbake-user-manual: document no support for using passwords in git URLs docs: add a top level page for bitbake documentation docs: replace anchor links sdk-manual: fix typo bitbake: bitbake: Update version to 1.50.0 stable release series
|
|
Re: [ANNOUNCEMENT] Yocto Project 3.3.1 (hardknott-25.0.1) is Released
Peter Kjellerstedt
It seems the ”hardknott-25.0.1” tag is missing for meta-gplv2. The “yoccto-3.3.1” tag is present.
//Peter
From: yocto@... <yocto@...>
On Behalf Of Vineela
Sent: den 25 maj 2021 00:57 To: 'yocto-announce@...' <yocto-announce@...>; 'yocto@...' <yocto@...>; 'yocto-request@...' <yocto-request@...> Subject: [yocto] [ANNOUNCEMENT] Yocto Project 3.3.1 (hardknott-25.0.1) is Released
Generating announcement for point release 3.3.1.
We are pleased to announce the Yocto Project 3.3.1 (hardknott-25.0.1) Release is now available for download.
http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2
A gpg signed version of these release notes is available at:
http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/RELEASENOTES
Full Test Report:
http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/testreport.txt
Thank you for everyone's contributions to this release.
Vineela Tummalapalli Yocto Project Build and Release
-------------------------- yocto-3.3.1 Release Notes --------------------------
-------------------------- Repositories/Downloads --------------------------
Repository Name: poky Repository Location: https://git.yoctoproject.org/git/poky Branch: hardknott Tag: yocto-3.3.1 Git Revision: 05a8aad57ce250b124db16705acec557819905ae Release Artefact: poky-hardknott-25.0.1 sha: 409b92d819f0c6e928b37bcc7cc4e80e5f27aa94748dcb479e325a4559c391c2 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/poky-hardknott-25.0.1.tar.bz2
Repository Name: openembedded-core Repository Location: https://git.openembedded.org/openembedded-core Branch: hardknott Tag: 2021-04.1-hardknott Git Revision: efce6334bf122a64f63d46c1c04e3dbffe298c51 Release Artefact: oecore-hardknott-25.0.1 sha: d53cdc060784ee7c86853b3b8120d6b3d0b445098cfcd27c939f303f9075262f Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/oecore-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/oecore-hardknott-25.0.1.tar.bz2
Repository Name: meta-mingw Repository Location: https://git.yoctoproject.org/git/meta-mingw Branch: hardknott Tag: yocto-3.3.1 Git Revision: 422b96cb2b6116442be1f40dfb5bd77447d1219e Release Artefact: meta-mingw-hardknott-25.0.1 sha: 89bce008a93d4717bca4069c1fd0004d88bf39e8a8098eb1e8376bc7521a600f Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/meta-mingw-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/meta-mingw-hardknott-25.0.1.tar.bz2
Repository Name: meta-gplv2 Repository Location: https://git.yoctoproject.org/git/meta-gplv2 Branch: hardknott Tag: yocto-3.3.1 Git Revision: 9e119f333cc8f53bd3cf64326f826dbc6ce3db0f Release Artefact: meta-gplv2-hardknott-25.0.1 sha: 988a222f13a9a87adf723cb86bd7db2648b3303e15bb3bac2d73e89f3faa547f Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/meta-gplv2-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/meta-gplv2-hardknott-25.0.1.tar.bz2
Repository Name: bitbake Repository Location: https://git.openembedded.org/bitbake Branch: 1.50 Tag: 2021-04.1-hardknott Git Revision: b67476d4758915db7a5d9f58bc903ae7501a1774 Release Artefact: bitbake-hardknott-25.0.1 sha: 3203a3c80f7ac749b1436b67b25733dbbe09b7ce9b32715a9f2fcd6bc24ec718 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.3.1/bitbake-hardknott-25.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.3.1/bitbake-hardknott-25.0.1.tar.bz2
Repository Name: yocto-docs Repository Location: https://git.yoctoproject.org/git/yocto-docs Branch: hardknott Tag: yocto-3.3.1 Git Revision:eb19a2b5687f11c22c7fc26d3efabbf65adb572e
--------------- Contributors -------------- Alejandro Enedino Hernandez Samaniego Alexander Kanavin Anders Wallin Anthony Bagwell Anuj Mittal Bruce Ashfield Changqing Li Chen Qi Christophe Chapuis Daniel Ammann Douglas Royds Gavin Li He Zhe hongxu Jonas Höppner Jon Mason Jose Quaresma Joshua Watt Kai Kang Kevin Hao Khairul Rohaizzat Jamaluddin Khem Raj Konrad Weihmann Michael Opdenacker Mikko Rapeli Mingli Yu Nicolas Dechesne Niels Avonds Paul Eggleton Peter Budny Peter Kjellerstedt Quentin Schulz Randy MacLeod Reto Schneider Richard Purdie Romain Naour Ross Burton Sakib Sajal Sangeeta Jain Saul Wold Stefan Ghinea Stephen Jolley Trevor Gamblin Ulrich Ölmann Vinícius Ossanes Aquino wangmy Wes Lindauer Yanfei Xu Yann Dirson Yi Fan Yu Yi Zhao zhengruoqin
--------------- Known Issues --------------- An intermittent systemtap issue occurred on arm during testing.
--------------- Security Fixes --------------- db: update CVE_PRODUCT qemu: fix CVE-2021-3392 qemu: fix CVE-2021-20263 qemu: fix CVE-2020-27821 xserver-xorg: fix CVE-2021-3472 rsync: fix CVE-2020-14387 glib-2.0: fix CVE-2021-28153 qemu: fix CVE-2021-20257 qemu: fix CVE-2021-3416 qemu: fix CVE-2021-3409 qemu: fix CVE-2021-20221 qemu: fix CVE-2020-29443 qemu: fix CVE-2021-20181 gdk-pixbuf: fix CVE-2021-20240 cairo: fix CVE-2020-35492 wpa-supplicant: fix CVE-2021-30004 busybox: fix CVE-2021-28831 qemu: Fix CVE-2020-35517
--------------- Fixes --------------- documentation: prepare for 3.3.1 release build-appliance-image: Update to hardknott head revision poky.conf: Bump version for 3.3.1 hardknott release puzzles: Upstream changed to main branch for development linux-firmware: include all relevant files in -bcm4356 lsb-release: fix reproducibility failure ruby: upgrade 3.0.0 -> 3.0.1 grub2.inc: remove '-O2' from CFLAGS dejagnu: needs expect at runtime libcap: Configure Make variables correctly without a horrible hack lttng-modules: backport patches to fix build against 5.12+ kernel linux-yocto/5.4: qemuppc32: reduce serial shutdown issues linux-firmware: upgrade 20210208 -> 20210315 oeqa/qemurunner: Improve handling of run_serial for shutdown commands oeqa/qemurunner: Fix binary vs str issue oeqa/qemurunner: Improve logging thread exit handling for qemu shutdown test sanity.bbclass: mention CONNECTIVITY_CHECK_URIS in network failure message libevent: Increase ptest timing tolerance 50 ms -> 100 ms classes/image: Use xargs to set file timestamps linux-yocto/5.10: qemuppc32: reduce serial shutdown issues lib/package_manager: Use shutil.copy instead of bb.utils.copyfile for intercepts diffoscope: add native libraries to LD_LIBRARY_PATH Revert "oeqa: Set LD_LIBRARY_PATH when executing native commands" oe-buildenv-internal: add BitBake's library to PYTHONPATH webkitgtk: Fix reproducibility in minibrowser busybox: Fix reproducibility libjpeg-turbo: Use --reproducible option for nasm ptest-runner: libgcc must be installed for pthread_cancel to work linux-yocto/5.4: update to v5.4.116 linux-yocto/5.10: update to v5.10.34 linux-yocto/5.4: update to v5.4.114 perf: fix python-audit RDEPENDS linux-yocto/5.10: update to v5.10.32 linux-yocto/5.10: qemuriscv32.cfg: RV32 only supports 1G physical memory linux-yocto/5.10: aufs fixes yocto-uninative: Update to 3.1 which includes a patchelf fix wireless-regdb: upgrade 2020.11.20 -> 2021.04.21 rootfs.py: find .ko.gz and .ko.xz kernel modules as well pybootchart/draw: Avoid divide by zero error patchelf: Fix alignment patch mesa: upgrade 21.0.2 -> 21.0.3 patchelf: Fix note section alignment issues license_image.bbclass: Fix symlink to generic license files license_image.bbclass: Detect broken symlinks bitbake: runqueue: Handle deferred task rehashing in multiconfig builds bitbake: runqueue: Fix multiconfig deferred task sstate validity caching issue patchelf: Backport fix from upstream for note section overlap error weston: fix build failure due to race condition meta/lib/oeqa/core/tests/cases/timeout.py: add a testcase for the previous fix oeqa: tear down oeqa decorators if one of them raises an exception in setup cmake.bbclass: remove ${B} before cmake_do_configure kernel-yocto.bbclass: chdir to ${WORKDIR} for do_kernel_checkout yocto-check-layer: Avoid bug when iterating and autoadding dependencies libssh2: fix build failure with option no-ecdsa go: Use dl.google.com for SRC_URI cve-update-db-native: skip on empty cpe23Uri rpm: Upgrade to 4.16.1.3 runqemu: Ensure we cleanup snapshot files after image run lttng-tools: Fix path for test_python_looging lttng-tools: Fix missing legacy test files deb: apply postinstall on sdk externalsrc: Detect code changes in submodules Revert "externalsrc: Detect code changes in submodules" arch-armv6m.inc: fix access rights libxshmfence: Build fixes for riscv32 packagegroup-core-tools-testapps.bb: Remove kexec for riscv32 packagegroup-core-tools-profile: Remove valgrind for riscv32 ltp: fix empty ltp-dev package glslang: strip whitespace in pkgconfig file go: upgrade 1.16.2 -> 1.16.3 pango: re-enable ptest kmod: do not symlink config.guess/config.sub during autoreconf libtool: make sure autoheader run before automake Revert "inittab: Add getty launch on hvc0 for qemuppc64" sysvinit-inittab/start_getty: Check /sys for the tty device existence modutils-initscripts: Bail out when no module is installed systemd: upgrade 247.4 -> 247.6 insane: clean up some more warning messages sanity: Add error check for '%' in build path groff: not ship /usr/bin/grap2graph oeqa/runtime: space needed parselogs: ignore floppy error on qemu-system-x86 at boot stage go: update SRC_URI to use https protocol mesa: upgrade 21.0.1 -> 21.0.2 systemd: Fix build on mips/musl python3: Improve logging, syntax and update deprecated modules to create_manifest python3: Upgrade 3.9.2 -> 3.9.4 oeqa/runtime/cases: Only disable/enable for current boot oe-time-dd-test.sh: increase timeout to 15 sec scripts/oe-debuginfod: correct several issues ca-certificates: Fix openssl runtime cert dependencies nettle: upgrade 3.7.1 -> 3.7.2 linux-yocto/5.10: fix arm defconfig warnings linux-yocto/5.4: fix arm defconfig warnings linux-yocto/5.4: update to v5.4.112 linux-yocto-rt/5.10: update to -rt34 linux-yocto/5.10: update to v5.10.30 linux-yocto/5.4: update to v5.4.111 linux-yocto/5.10: update to v5.10.29 linux-yocto/5.10: BSP configuration fixes linux-yocto-dev: add features/scsi/scsi-debug.scc features/gpio/mockup.scc to KERNEL_FEATURES linux-yocto/5.10: update to v5.10.27 linux-yocto/5.4: update to v5.4.109 archiver: Fix typos oeqa/selftest: Ensure packages classes are set correctly for maintainers test pseudo: Upgrade to add trailing slashes ignore path fix lib/oe/terminal: Fix tmux new-session on older tmux versions (<1.9) bitbake: bitbake: tests/fetch: remove write protected files too bitbake: fetch/gitsm: Fix crash when using git LFS and submodules bitbake: bitbake-server: ensure server timeout is a float bitbake: bitbake: tests/fetch: fix test execution without .gitconfig bitbake: runqueue: Fix deferred task issues oeqa/selftest: Hardcode test assumptions about heartbeat event timings oe-time-dd-test.sh: provide more information from "top" oe-time-dd-test.sh: make executable ref-manual: add mention of DISTUTILS_SETUP_PATH ref-manual: migration guide: add release codenames ref-manual: add migration section for 3.3 release ref-manual: tweak buildtools section ref-manual: fix reference to build-essential ref-manual: add FIT_KERNEL_COMP_ALG* ref-manual: add passwd-expire to EXTRA_USERS_PARAMS ref-manual: add python3targetconfig class and remove python 2 references ref-manual: add REQUIRED_VERSION and adjust PREFERRED_VERSION entry ref-manual: and SDK_CUSTOM_TEMPLATECONF to glossary overview-manual: fix git command line ref-manual: update/fix text for SDK_VERSION Use variables for minimum host versions and bump Python to 3.6 ref-manual: add METADATA_REVISION and METADATA_BRANCH bitbake: bitbake-user-manual: add REQUIRED_VERSION and adjust PREFERRED_VERSION entry bitbake: bitbake-user-manual: document no support for using passwords in git URLs docs: add a top level page for bitbake documentation docs: replace anchor links sdk-manual: fix typo bitbake: bitbake: Update version to 1.50.0 stable release series
|
|