home.social

#yoctoproject — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #yoctoproject, aggregated by home.social.

  1. I have the privilege of being the first speaker of #EmbeddedRecipes2026! Bright and early, 9:45am on the first day.

    I'll be speaking about Yocto Project and the Cyber Resilience Act.

    I'll be covering:

    - What the CRA means for the Yocto Project
    - How the Yocto Project already helps manufacturers meet their obligations with SPDX3 SBoMs, CVE tracking, reproducible builds, etc
    - A roadmap of where we can go in the future with your help

    cfp.embedded-recipes.org/er202

    #EmbeddedLinux #YoctoProject #OpenSource

  2. I have the privilege of being the first speaker of #EmbeddedRecipes2026! Bright and early, 9:45am on the first day.

    I'll be speaking about Yocto Project and the Cyber Resilience Act.

    I'll be covering:

    - What the CRA means for the Yocto Project
    - How the Yocto Project already helps manufacturers meet their obligations with SPDX3 SBoMs, CVE tracking, reproducible builds, etc
    - A roadmap of where we can go in the future with your help

    cfp.embedded-recipes.org/er202

    #EmbeddedLinux #YoctoProject #OpenSource

  3. I have the privilege of being the first speaker of #EmbeddedRecipes2026! Bright and early, 9:45am on the first day.

    I'll be speaking about Yocto Project and the Cyber Resilience Act.

    I'll be covering:

    - What the CRA means for the Yocto Project
    - How the Yocto Project already helps manufacturers meet their obligations with SPDX3 SBoMs, CVE tracking, reproducible builds, etc
    - A roadmap of where we can go in the future with your help

    cfp.embedded-recipes.org/er202

    #EmbeddedLinux #YoctoProject #OpenSource

  4. I have the privilege of being the first speaker of #EmbeddedRecipes2026! Bright and early, 9:45am on the first day.

    I'll be speaking about Yocto Project and the Cyber Resilience Act.

    I'll be covering:

    - What the CRA means for the Yocto Project
    - How the Yocto Project already helps manufacturers meet their obligations with SPDX3 SBoMs, CVE tracking, reproducible builds, etc
    - A roadmap of where we can go in the future with your help

    cfp.embedded-recipes.org/er202

    #EmbeddedLinux #YoctoProject #OpenSource

  5. I have the privilege of being the first speaker of #EmbeddedRecipes2026! Bright and early, 9:45am on the first day.

    I'll be speaking about Yocto Project and the Cyber Resilience Act.

    I'll be covering:

    - What the CRA means for the Yocto Project
    - How the Yocto Project already helps manufacturers meet their obligations with SPDX3 SBoMs, CVE tracking, reproducible builds, etc
    - A roadmap of where we can go in the future with your help

    cfp.embedded-recipes.org/er202

    #EmbeddedLinux #YoctoProject #OpenSource

  6. Next week I'll be representing @yoctoproject at Embedded World, 10th-12th March in Nuremberg, Germany!

    I'm really looking forward to catching up with our members and contributors. If you'll be at Embedded World, drop me a reply and we'll arrange a time to chat.

    #EmbeddedWorld #EmbeddedLinux #OpenSource #YoctoProject

  7. Great location and turn out for the OpenEmbedded Workshop this year! #openembedded #yoctoproject

  8. Great location and turn out for the OpenEmbedded Workshop this year! #openembedded #yoctoproject

  9. Great location and turn out for the OpenEmbedded Workshop this year!

  10. Great location and turn out for the OpenEmbedded Workshop this year! #openembedded #yoctoproject

  11. Great location and turn out for the OpenEmbedded Workshop this year! #openembedded #yoctoproject

  12. I'm excited to announce that I'll be starting a new role as Ecosystem Engineering and Operations Lead for @yoctoproject on Monday 8th December.

    I started using and contributing to OpenEmbedded & Yocto Project back in 2013 and since then it's been a key part of my career. I've seen the project from many points of view over the last decade-and-a-bit: first as a hobbyist, then working with board vendors, silicon vendors, system integrators and end users. Now I'll be seeing it from inside the project leadership team and helping to shape its future.

    Yocto Project has an excellent team and a strong base of members & contributors. This new role will help to coordinate our activities, take pressure off our Software Architect and scale up what we can deliver. I expect to be spending a lot of time thinking about the challenges and opportunities presented by the EU Cyber Resilience Act (CRA). And I'll still be getting my hands dirty on some actual code as needed to help the project move forward!

    #EmbeddedLinux #OpenSource #YoctoProject

  13. 📺 Watch the latest talk from the 19th Linux Session!

    This time we’re featuring Sebastian Słomka from Nokia with the presentation "Beyond Raspbian and Ubuntu: Why Yocto is the Right Tool for Production-Ready Embedded Linux".

    🔗 Watch here: youtu.be/mfEURLQ4dXg

  14. Freelance Software Engineer looking for new projects.
    Expertise in embedded (#YoctoProject, #FreeRTOS) and in web application and web based device control (#Django, #Python, #Svelte) development.

    #Freelancer #FediHire #FediJobs

  15. A good nine months after I made this meme at a conference, I finally sent the relevant patch. #yoctoproject

  16. Is anybody in need of a a Freelance Web Application Developer and/or Embedded Linux Integrator?
    I am available for new projects.
    #Django #Python #Svelte #YoctoProject #Freelancer #FediHire #FediJobs

  17. If anyone fancies a little #yoctoproject project: package up the ffmpeg test suite (ffmpeg.org//fate.html) so we can run it on target.

  18. Today's #yoctoproject tip of the day: to get a list of all recipes that use a specific class, for example to test changes or to see examples, then `bitbake-layers` can do that. `bitbake-layers show-recipes --inherits pypi` will list all recipes that fetch from PyPi. If you want a plain list then use `--recipes-only`, or use `--layer` to limit to specific layers: a list of all recipes using Meson in oe-core would be `bitbake-layers show-recipes --layer meta --inherits meson --recipes-only`.

  19. Another #yoctoproject My First Contribution that would be genuinely incredibly useful: package up social.treehouse.systems/@mgor and use it to add ptests to every recipe in oe-core.

  20. Today's #yoctoproject tip of the day: if you want to look at the final postinst (or other maintainer scripts) then you don't need to mess around extracting them from the packages, just ask pkgdata:
    ```
    $ oe-pkgdata-util read-value -u pkg_postinst:gawk gawk
    #!/bin/sh
    set -e
    update-alternatives --install /usr/bin/awk awk /usr/bin/gawk 100
    ```
    -u to unescape newlines. pkg_postinst:gawk is the name of the variable, this is the pkg_postinst script for the gawk package. gawk is the package name.

  21. Today's #yoctoproject tip of the day: if you're working on core code you may want to build everything that inherits a specific class. `bitbake-layers` can tell you this, for example `bitbake-layers show-recipes --inherits pypi --layer meta --recipes-only` will print a list of all recipes in oe-core that inherit pypi.

  22. After the usual interesting session from Marta at #FOSDEM, I'm doing some #yoctoproject cleanup and wondering how to embed the following meme into the commit message.

  23. Finally made a list of videos from to watch. Time to refresh new tools for the next LTS

  24. Ending the week with something cool? Sure thing!
    First steps towards a setup: Beagleplay in remote lab.

    Still very makeshift, but hey, progress! Now lets get some + goodness going.

  25. I built a big-endian 32-bit Arm system in #yoctoproject, if you want to join me (why!?) then I wrote it up: burtonini.com/blog/2023/03/06/

  26. For the first time in a very long time, I blogged! Talking about using PySnooper with BitBake in #YoctoProject. burtonini.com/blog/2023/01/06/

  27. "Creating Friendly Layers, 2022 Edition"

    The video of my talk from the #YoctoProject summit earlier this month is now online. I recommend giving this a watch if you're involved in creating or maintaining a Yocto Project layer as it collects together many of the best practices that I've seen over the last few years.

    youtube.com/watch?v=6iGuKViITj

    #OpenEmbedded #OpenSource #EmbeddedLinux

  28. Last minute reminder that the #YoctoProject summit is next week! All on zoom, nice and cheap. Come for the talks, stay for the social happy hours! summit.yoctoproject.org/yocto-

  29. Is anyone aware of a benchmark comparing build times on Intel 13gen gen (8P+16E) and Ryzen 4 (16C)? I don't care about gaming benchmarks, and I don't want to buy a much more expensive server grade hardware.

    I want the latest high-end desktop CPU with efficient cooling humming under my desk.

  30. @rudolf Sorry, I can't answer your question at this moment since it need to check the config.

    But, I find the following post which shows the details how to do the setup. I think it can help you to solve it.

    ------------------------

    Building 64-bit Systems for Raspberry Pi 4 with Yocto




    jumpnowtek.com/rpi/Raspberry-P