release-notes-5.0.rst 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  1. .. SPDX-License-Identifier: CC-BY-SA-2.0-UK
  2. Release notes for 5.0 (scarthgap)
  3. ---------------------------------
  4. New Features / Enhancements in 5.0
  5. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  6. - Linux kernel 6.6, gcc 13.2, glibc 2.39, LLVM 18.1, and over 300 other recipe upgrades
  7. - New variables:
  8. - :term:`CVE_DB_INCR_UPDATE_AGE_THRES`: Configure the maximum age of the
  9. internal CVE database for incremental update (instead of a full
  10. redownload).
  11. - :term:`RPMBUILD_EXTRA_PARAMS`: support extra user-defined fields without
  12. crashing the RPM package creation.
  13. - :term:`OPKG_MAKE_INDEX_EXTRA_PARAMS`: support extra parameters for
  14. ``opkg-make-index``.
  15. - :term:`EFI_UKI_PATH`, :term:`EFI_UKI_DIR`: define the location of UKI
  16. image in the EFI System partition.
  17. - :term:`TARGET_DBGSRC_DIR`: specifies the target path to debug source files
  18. - :term:`USERADD_DEPENDS`: provides a way to declare dependencies on the users
  19. and/or groups created by other recipes, resolving a long-standing build
  20. ordering issue
  21. - Architecture-specific enhancements:
  22. - ``genericarm64``: a new :term:`MACHINE` to represent a 64-bit General Arm
  23. SystemReady platform.
  24. - Add Power8 tune to PowerPC architecture.
  25. - ``arch-armv9``: remove CRC and SVE tunes, since FEAT_CRC32 is now mandatory
  26. and SVE/SVE2 are enabled by default in GCC's ``-march=armv9-a``.
  27. - ``arm/armv*``: add all of the additional Arm tunes in GCC 13.2.0
  28. - Kernel-related enhancements:
  29. - The default kernel is the current LTS (6.6).
  30. - Add support for ``genericarm64``.
  31. - New core recipes:
  32. - `bmaptool <https://github.com/yoctoproject/bmaptool>`__: a tool for
  33. creating block maps for files and flashing images, being now under the
  34. Yocto Project umbrella.
  35. - ``core-image-initramfs-boot``: a minimal initramfs image, containing just
  36. ``udev`` and ``init``, designed to find the main root filesystem and
  37. pivot to it.
  38. - `lzlib <https://www.nongnu.org/lzip/lzlib.html>`__: a data compression
  39. library that provides LZMA compression and decompression functions.
  40. - `lzop <https://www.lzop.org/>`__: a compression utility based on the LZO
  41. library, that was brought back after a (now reverted) removal.
  42. - `python3-jsonschema-specifications <https://pypi.org/project/jsonschema-specifications/>`__:
  43. support files for JSON Schema Specifications (meta-schemas and
  44. vocabularies), added as a new dependency of ``python3-jsonschema``.
  45. - `python3-maturin <https://github.com/pyo3/maturin>`__: a project that
  46. allows building and publishing Rust crates as Python packages.
  47. - `python3-meson-python <https://github.com/mesonbuild/meson-python>`__: a
  48. Python build backend that enables the Meson build-system for Python packages.
  49. - `python3-pyproject-metadata <https://pypi.org/project/pyproject-metadata/>`__:
  50. a class to handle PEP 621 metadata, and a dependency for
  51. ``python3-meson-python``.
  52. - `python3-referencing <https://github.com/python-jsonschema/referencing>`__:
  53. another dependency of ``python3-jsonschema``, it provides an
  54. implementation of JSON reference resolution.
  55. - `python3-rpds-py <https://pypi.org/project/rpds-py/>`__: Python bindings
  56. to the Rust rpds crate, and a runtime dependency for ``python3-referencing``.
  57. - `python3-sphinxcontrib-jquery <https://pypi.org/project/sphinxcontrib-jquery/>`__:
  58. a Sphinx extension to include jQuery on newer Sphinx releases. Recent
  59. versions of ``python3-sphinx-rtd-theme`` depend on it.
  60. - `python3-websockets <https://pypi.org/project/websockets/>`__: a
  61. library for building WebSocket servers and clients in Python.
  62. - `python3-yamllint <https://github.com/adrienverge/yamllint>`__: a linter
  63. for YAML files. In U-Boot, the ``binman`` tool uses this linter to verify the
  64. configurations at compile time.
  65. - ``systemd-boot-native``: a UEFI boot manager, this time built as native to
  66. provide the ``ukify`` tool.
  67. - `utfcpp <https://github.com/nemtrif/utfcpp>`__: a C++ library to handle
  68. UTF-8 encoded strings. It was added as a dependency for ``taglib`` after
  69. its upgrade to v2.0.
  70. - `vulkan-utility-libraries <https://github.com/KhronosGroup/Vulkan-Utility-Libraries>`__:
  71. a set of libraries to share code across various Vulkan repositories.
  72. - `vulkan-volk <https://github.com/zeux/volk>`__: a meta-loader for Vulkan,
  73. needed to support building the latest ``vulkan-tools``.
  74. - QEMU / ``runqemu`` enhancements:
  75. - QEMU has been upgraded to version 8.2.1
  76. - ``qemuboot``: support predictable network interface names.
  77. - ``runqemu``: match ".rootfs." in addition to "-image-" for the root
  78. filesystem.
  79. - :ref:`ref-classes-cmake-qemu`: a new class allowing to execute cross-compiled
  80. binaries using QEMU user-mode emulation.
  81. - Rust improvements:
  82. - Rust has been upgraded to version 1.75
  83. - The Rust profiler (i.e., PGO - Profile-Guided Optimization) options were
  84. enabled back.
  85. - The Rust ``oe-selftest`` were enabled, except for ``mips32`` whose tests
  86. are skipped.
  87. - ``rust-cross-canadian``: added ``riscv64`` to cross-canadian hosts.
  88. - wic Image Creator enhancements:
  89. - Allow the imager's output file extension to match the imager's name,
  90. instead of hardcoding it to ``direct`` (i.e., the default imager)
  91. - For GPT-based disks, add reproducible Disk GUID generation
  92. - Allow generating reproducible ext4 images
  93. - Add feature to fill a specific range of a partition with zeros
  94. - ``bootimg-efi``: add ``install-kernel-into-boot-dir`` parameter to
  95. configure kernel installation point(s) (i.e., rootfs and/or boot partition)
  96. - ``rawcopy``: add support for zstd decompression
  97. - SDK-related improvements:
  98. - ``nativesdk``: let :term:`MACHINE_FEATURES` be set by ``machine-sdk``
  99. configuration files.
  100. - ``nativesdk``: prevent :term:`MACHINE_FEATURES` and :term:`DISTRO_FEATURES`
  101. from being backfilled.
  102. - Support for ``riscv64`` as an SDK host architecture
  103. - Extend recipes to ``nativesdk``: ``acpica``, ``libpcap``, ``python3-setuptools-rust``
  104. - Testing:
  105. - Move `patchtest` to the core (as ``scripts/patchtest``, test cases under
  106. ``meta/lib/patchtest/tests``) and make a number of improvements to enable
  107. it to validate patches submitted on the mailing list again. Additionally,
  108. make it work with the original upstream version of
  109. `Patchwork <http://jk.ozlabs.org/projects/patchwork/>`__.
  110. - Add an optional ``unimplemented-ptest`` QA warning to detect upstream
  111. packages with tests, that do not use ptest.
  112. - ``testimage``: retrieve the ptests directory, especially for the logs,
  113. upon ptest failure.
  114. - ``oeqa``, ``oe-selftest``: add test cases for Maturin (SDK and runtime).
  115. - Proof-of-concept of screenshot-based runtime UI test
  116. (``meta/lib/oeqa/runtime/cases/login.py``)
  117. - Enable ptests for ``python3-attrs``, ``python3-pyyaml``, ``xz``
  118. - Utility script changes:
  119. - ``oe-init-build-env`` can generate a initial configuration (``.vscode``)
  120. for VSCode and its "Yocto Project BitBake" extension.
  121. - The ``sstate-cache-management`` script has been rewritten in python for better performance and maintainability
  122. - ``bitbake-layers``: added an option to update the reference of repositories in layer setup
  123. - BitBake improvements:
  124. - New ``inherit_defer`` statement which works as
  125. :ref:`inherit <bitbake:bitbake-user-manual/bitbake-user-manual-metadata:\`\`inherit\`\` directive>`
  126. does, except that it is only evaluated at the end of parsing
  127. --- recommended where a conditional expression is used, e.g.::
  128. inherit_defer ${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3targetconfig', '', d)}
  129. This allows conditional expressions to be evaluated 'late' meaning changes
  130. to the variable after the line is parsed will take effect - with inherit this
  131. is not the case.
  132. - Add support for :term:`BB_LOADFACTOR_MAX`, so Bitbake can stop running
  133. extra tasks if the system load is too high, especially in distributions
  134. where ``/proc/pressure`` is disabled.
  135. - ``taskexp_ncurses``: add ncurses version of ``taskexp``, the dependency
  136. explorer originally implemented with GTK.
  137. - Improve ``runqueue`` performance by adding a cache mechanism in
  138. ``build_taskdepdata``.
  139. - ``bitbake.conf``: add ``runtimedir`` to represent the path to the runtime
  140. state directory (i.e., ``/run``).
  141. - Allow to disable colored text output through the
  142. `NO_COLOR <https://no-color.org/>`__ environment variable.
  143. - ``git-make-shallow`` script: add support for Git's ``safe.bareRepository=explicit``
  144. configuration setting.
  145. - Hash equivalence gained a number of scalability improvements including:
  146. - Support for a wide range of database backends through `SQLAlchemy`
  147. - Support for hash equivalence server and client to communicate over websockets
  148. - Support for per-user permissions in the hashserver, and on the client side
  149. specifying credentials via the environment or ``.netrc``
  150. - Add garbage collection to remove unused unihashes from the database.
  151. - devtool improvements:
  152. - Introduce a new ``ide-sdk`` plugin to generate a configuration to use
  153. the eSDK through an IDE.
  154. - Add ``--no-pypi`` option for Python projects that are not hosted on PyPI.
  155. - Add support for Git submodules.
  156. - ``ide``: ``vscode``: generate files from recipe sysroots and debug the
  157. root filesystem in read-only mode to avoid confusion.
  158. - ``modify``: add support for multiple sources in :term:`SRC_URI`.
  159. - Support plugins within plugins.
  160. - recipetool improvements:
  161. - ``appendsrcfile(s)``: add a mode to update the recipe itself.
  162. - ``appendsrcfile(s)``: add ``--dry-run`` mode.
  163. - ``create``: add handler to create Go recipes.
  164. - ``create``: improve identification of licenses.
  165. - ``create``: add support for modern Python PEP-517 build systems including
  166. hatchling, maturin, meson-python.
  167. - ``create``: add PyPi support.
  168. - ``create``: prefix created Python recipes with ``python3-``.
  169. - Packaging changes:
  170. - ``package_rpm``: the RPM package compressor's mode can now be overriden.
  171. - ipk packaging (using ``opkg``) now uses ``zstd`` compression instead of
  172. ``xz`` for better compression and performance.
  173. - Security improvements:
  174. - Improve incremental CVE database download from NVD. Rejected CVEs are
  175. removed, configuration is kept up-to-date. The age threshold for
  176. incremental update can be configured with :term:`CVE_DB_INCR_UPDATE_AGE_THRES`
  177. variable.
  178. - Toaster Web UI improvements:
  179. - Numerous bugfixes, and additional input validation
  180. - Add `pytest` support and add/update test cases
  181. - Prominent documentation updates:
  182. - Documentation for using the new ``devtool ide-sdk`` command and features.
  183. See :ref:`using_devtool` for details.
  184. - New ":doc:`bitbake:bitbake-user-manual/bitbake-user-manual-ref-variables-context`"
  185. section in the BitBake User Manual.
  186. - New ``make stylecheck`` command to run `Vale <https://vale.sh>`__,
  187. to perform text style checks and comply with text writing standards in
  188. the industry.
  189. - New ``make sphinx-lint`` command to run `sphinx-lint
  190. <https://github.com/sphinx-contrib/sphinx-lint>`__. After customization,
  191. this will allow us to enforce Sphinx syntax style choices.
  192. - Miscellaneous changes:
  193. - Systemd's following :term:`PACKAGECONFIG` options were added:
  194. ``cryptsetup-plugins``, ``no-ntp-fallback``, and ``p11kit``.
  195. - New PACKAGECONFIG options added to ``libarchive``, ``libinput``,
  196. ``libunwind``, ``mesa``, ``mesa-gl``, ``openssh``, ``perf``,
  197. ``python3-pyyaml``, ``qemu``, ``rpm``, ``shadow``, ``strace``,
  198. ``syslinux``, ``systemd``, ``vte``, ``webkitgtk``, ``xserver-xorg``.
  199. - ``systemd-boot`` can, from now on, be compiled as ``native``, thus
  200. providing ``ukify`` tool to build UKI images.
  201. - systemd: split bash completion for ``udevadm`` in a new
  202. ``udev-bash-completion`` package.
  203. - The :ref:`ref-classes-go-vendor` class was added to support offline builds
  204. (i.e., vendoring). It can also handle modules from the same repository,
  205. taking into account their versions.
  206. - Disable strace support of bluetooth by default.
  207. - ``openssh`` now has a systemd service: ``sshd.service``.
  208. - The :ref:`ref-classes-python_mesonpy` class was added (moved in from
  209. ``meta-python``) to support Python package builds using the meson-python
  210. PEP-517 build backend.
  211. - Support for unpacking ``.7z`` archives in :term:`SRC_URI` using ``p7zip``.
  212. - Add minimal VS Code configuration to avoid VS Code's indexer from choking
  213. on build directories.
  214. Known Issues in 5.0
  215. ~~~~~~~~~~~~~~~~~~~
  216. - ``gpgme`` has had Python binding support disabled since upstream does not yet support Python 3.12.
  217. Recipe License changes in 5.0
  218. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  219. The following corrections have been made to the :term:`LICENSE` values set by recipes:
  220. - ``elfutils``: split license for libraries & backend and utilities.
  221. - ``ghostscript``: correct :term:`LICENSE` to ``AGPL-3.0-or-later``.
  222. - ``kbd``: update license for consolefont and keymaps.
  223. - ``libsystemd``: set its own :term:`LICENSE` value (``LGPL-2.1-or-later``) to add more granularity.
  224. - ``libtest-warnings-perl``: update :term:`LICENSE` ``Artistic-1.0`` to ``Artistic-1.0-Perl``.
  225. - ``linux-firmware``: set package :term:`LICENSE` appropriately for ``carl9170``, ``rockchip`` and ``powerpr``.
  226. - ``newlib``: add license ``Apache-2.0-with-LLVM-exception``.
  227. - ``python3-poetry-core``: add license ``BSD-3-Clause`` for ``fastjsonschema``.
  228. - ``systemd``: make the scope of ``LGPL`` more accurate (``LGPL-2.1`` -> ``LGPL-2.1-or-later``).
  229. - ``util-linux``: add ``GPL-1.0-or-later`` license for fdisk and ``MIT`` license for ``flock``.
  230. - ``zstd``: set to dual-licensed ``BSD-3-Clause`` or ``GPL-2.0-only``.
  231. Security Fixes in 5.0
  232. ~~~~~~~~~~~~~~~~~~~~~
  233. - avahi: :cve_nist:`2023-1981`, :cve_nist:`2023-38469`, :cve_nist:`2023-38470`, :cve_nist:`2023-38471`, :cve_nist:`2023-38469`, :cve_nist:`2023-38470`, :cve_nist:`2023-38471`, :cve_nist:`2023-38472`, :cve_nist:`2023-38473`
  234. - bind: :cve_nist:`2023-4408`, :cve_nist:`2023-5517`, :cve_nist:`2023-5679`, :cve_nist:`2023-50387`
  235. - bluez5: :cve_nist:`2023-45866`
  236. - coreutils: :cve_nist:`2024-0684`
  237. - cups: :cve_nist:`2023-4504`
  238. - curl: :cve_nist:`2023-46218`
  239. - expat: :cve_nist:`2024-28757`
  240. - gcc: :cve_nist:`2023-4039`
  241. - glibc: :cve_nist:`2023-5156`, :cve_nist:`2023-0687`
  242. - gnutls: :cve_nist:`2024-0553`, :cve_nist:`2024-0567`, :cve_nist:`2024-28834`, :cve_nist:`2024-28835`
  243. - go: :cve_nist:`2023-45288`
  244. - grub: :cve_nist:`2023-4692`, :cve_nist:`2023-4693`
  245. - grub2: :cve_nist:`2023-4001` (ignored), :cve_nist:`2024-1048` (ignored)
  246. - libgit2: :cve_nist:`2024-24575`, :cve_nist:`2024-24577`
  247. - libsndfile1: :cve_nist:`2022-33065`
  248. - libssh2: :cve_nist:`2023-48795`
  249. - libuv: :cve_nist:`2024-24806`
  250. - libxml2: :cve_nist:`2023-45322` (ignored)
  251. - linux-yocto/6.6: :cve_nist:`2020-16119`
  252. - openssh: :cve_nist:`2023-48795`, :cve_nist:`2023-51384`, :cve_nist:`2023-51385`
  253. - openssl: :cve_nist:`2023-5363`, :cve_nist:`2023-5678`, :cve_nist:`2023-6129`, :cve_mitre:`2023-6237`, :cve_nist:`2024-0727`, :cve_nist:`2024-2511`
  254. - perl: :cve_nist:`2023-47100`
  255. - pixman: :cve_nist:`2023-37769` (ignored)
  256. - python3-cryptography{-vectors}: :cve_nist:`2023-49083`, :cve_nist:`2024-26130`
  257. - python3-urllib3: :cve_nist:`2023-45803`
  258. - shadow: :cve_nist:`2023-4641`
  259. - sudo: :cve_nist:`2023-42456`
  260. - tiff: :cve_nist:`2023-6228`, :cve_nist:`2023-6277`, :cve_nist:`2023-52355`, :cve_nist:`2023-52356`
  261. - vim: :cve_nist:`2023-46246`, :cve_nist:`2023-48231`, :cve_nist:`2023-48232`, :cve_nist:`2023-48233`, :cve_nist:`2023-48234`, :cve_nist:`2023-48235`, :cve_nist:`2023-48236`, :cve_nist:`2023-48237`, :cve_nist:`2024-22667`
  262. - wpa-supplicant: :cve_nist:`2023-52160`
  263. - xserver-xorg: :cve_nist:`2023-5574`, :cve_nist:`2023-6816`, :cve_nist:`2024-0229`, :cve_nist:`2024-0408`, :cve_nist:`2024-0409`, :cve_nist:`2024-21885`, :cve_nist:`2024-21886`
  264. - xwayland: :cve_nist:`2023-5367`, :cve_nist:`2024-0408`, :cve_nist:`2024-0409`, :cve_nist:`2023-6816`, :cve_nist:`2024-0229`, :cve_nist:`2024-21885`, :cve_nist:`2024-21886`
  265. - zlib: :cve_nist:`2023-45853` (ignored), :cve_nist:`2023-6992` (ignored)
  266. Recipe Upgrades in 5.0
  267. ~~~~~~~~~~~~~~~~~~~~~~
  268. - acl 2.3.1 -> 2.3.2
  269. - acpica 20230628 -> 20240322
  270. - alsa-lib 1.2.10 -> 1.2.11
  271. - alsa-tools 1.2.5 -> 1.2.11
  272. - alsa-ucm-conf 1.2.10 -> 1.2.11
  273. - alsa-utils 1.2.10 -> 1.2.11
  274. - appstream 0.16.3 -> 1.0.2
  275. - autoconf 2.72c -> 2.72e
  276. - bash 5.2.15 -> 5.2.21
  277. - bash-completion 2.11 -> 2.12.0
  278. - binutils 2.41 -> 2.42
  279. - bluez5 5.69 -> 5.72
  280. - boost 1.83.0 -> 1.84.0
  281. - boost-build-native 1.83.0 -> 1.84.0
  282. - btrfs-tools 6.5.1 -> 6.7.1
  283. - cairo 1.16.0 -> 1.18.0
  284. - cargo 1.70.0 -> 1.75.0
  285. - cargo-c-native 0.9.18 -> 0.9.30+cargo-0.77.0
  286. - ccache 4.8.3 -> 4.9.1
  287. - cmake 3.27.7 -> 3.28.3
  288. - cmake-native 3.27.7 -> 3.28.3
  289. - createrepo-c 1.0.0 -> 1.0.4
  290. - cronie 1.6.1 -> 1.7.1
  291. - cross-localedef-native 2.38+git -> 2.39+git
  292. - cups 2.4.6 -> 2.4.7
  293. - curl 8.4.0 -> 8.7.1
  294. - dbus-wait 0.1+git (6cc6077a36fe…) -> 0.1+git (64bc7c8fae61…)
  295. - debianutils 5.13 -> 5.16
  296. - desktop-file-utils 0.26 -> 0.27
  297. - dhcpcd 10.0.2 -> 10.0.6
  298. - diffoscope 249 -> 259
  299. - diffstat 1.65 -> 1.66
  300. - dnf 4.17.0 -> 4.19.0
  301. - dos2unix 7.5.1 -> 7.5.2
  302. - ed 1.19 -> 1.20.1
  303. - efivar 38+39+git -> 39+39+git
  304. - elfutils 0.189 -> 0.191
  305. - ell 0.60 -> 0.63
  306. - enchant2 2.6.2 -> 2.6.7
  307. - epiphany 44.6 -> 46.0
  308. - erofs-utils 1.6 -> 1.7.1
  309. - ethtool 6.5 -> 6.7
  310. - eudev 3.2.12 -> 3.2.14
  311. - expat 2.5.0 -> 2.6.2
  312. - ffmpeg 6.0 -> 6.1.1
  313. - fontconfig 2.14.2 -> 2.15.0
  314. - gawk 5.2.2 -> 5.3.0
  315. - gcr 4.1.0 -> 4.2.0
  316. - gdb 13.2 -> 14.2
  317. - gettext 0.22 -> 0.22.5
  318. - gettext-minimal-native 0.22 -> 0.22.5
  319. - gi-docgen 2023.1 -> 2023.3
  320. - git 2.42.0 -> 2.44.0
  321. - glib-2.0 2.78.3 -> 2.78.4
  322. - glib-networking 2.76.1 -> 2.78.1
  323. - glibc 2.38+git -> 2.39+git
  324. - glibc-locale 2.38 -> 2.39+git
  325. - glibc-mtrace 2.38 -> 2.39+git
  326. - glibc-scripts 2.38 -> 2.39+git
  327. - glibc-testsuite 2.38+git -> 2.39+git
  328. - glibc-y2038-tests 2.38+git -> 2.39+git
  329. - glslang 1.3.261.1 -> 1.3.275.0
  330. - gnu-config 20230216+git -> 20240101+git
  331. - gnupg 2.4.3 -> 2.4.4
  332. - gnutls 3.8.3 -> 3.8.4
  333. - go 1.20.12 -> 1.22.2
  334. - go-binary-native 1.20.12 -> 1.22.2
  335. - go-native 1.20.12 -> 1.22.2
  336. - go-runtime 1.20.12 -> 1.22.2
  337. - gpgme 1.22.0 -> 1.23.2
  338. - grub 2.06 -> 2.12
  339. - grub-efi 2.06 -> 2.12
  340. - gsettings-desktop-schemas 44.0 -> 46.0
  341. - gst-devtools 1.22.9 -> 1.22.11
  342. - gstreamer1.0 1.22.9 -> 1.22.11
  343. - gstreamer1.0-libav 1.22.9 -> 1.22.11
  344. - gstreamer1.0-omx 1.22.9 -> 1.22.11
  345. - gstreamer1.0-plugins-bad 1.22.9 -> 1.22.11
  346. - gstreamer1.0-plugins-base 1.22.9 -> 1.22.11
  347. - gstreamer1.0-plugins-good 1.22.9 -> 1.22.11
  348. - gstreamer1.0-plugins-ugly 1.22.9 -> 1.22.11
  349. - gstreamer1.0-python 1.22.9 -> 1.22.11
  350. - gstreamer1.0-rtsp-server 1.22.9 -> 1.22.11
  351. - gstreamer1.0-vaapi 1.22.9 -> 1.22.11
  352. - gtk+3 3.24.38 -> 3.24.41
  353. - gtk4 4.12.3 -> 4.14.1
  354. - harfbuzz 8.2.2 -> 8.3.0
  355. - hwlatdetect 2.5 -> 2.6
  356. - icu 73-2 -> 74-1
  357. - inetutils 2.4 -> 2.5
  358. - init-system-helpers 1.65.2 -> 1.66
  359. - iproute2 6.5.0 -> 6.7.0
  360. - iptables 1.8.9 -> 1.8.10
  361. - iputils 20221126 -> 20240117
  362. - iso-codes 4.15.0 -> 4.16.0
  363. - iw 5.19 -> 6.7
  364. - json-glib 1.6.6 -> 1.8.0
  365. - kbd 2.6.3 -> 2.6.4
  366. - kexec-tools 2.0.27 -> 2.0.28
  367. - kmod 30 -> 31
  368. - kmscube git -> 0.0.1+git
  369. - libadwaita 1.4.2 -> 1.5.0
  370. - libbsd 0.11.7 -> 0.12.1
  371. - libcap-ng 0.8.3 -> 0.8.4
  372. - libcap-ng-python 0.8.3 -> 0.8.4
  373. - libcomps 0.1.19 -> 0.1.20
  374. - libdnf 0.71.0 -> 0.73.0
  375. - libdrm 2.4.116 -> 2.4.120
  376. - libffi 3.4.4 -> 3.4.6
  377. - libgit2 1.7.1 -> 1.7.2
  378. - libgloss 4.3.0+git -> 4.4.0+git
  379. - libgpg-error 1.47 -> 1.48
  380. - libhandy 1.8.2 -> 1.8.3
  381. - libical 3.0.16 -> 3.0.17
  382. - libidn2 2.3.4 -> 2.3.7
  383. - libinput 1.24.0 -> 1.25.0
  384. - libksba 1.6.4 -> 1.6.6
  385. - libmicrohttpd 0.9.77 -> 1.0.1
  386. - libnl 3.8.0 -> 3.9.0
  387. - libnotify 0.8.2 -> 0.8.3
  388. - libpciaccess 0.17 -> 0.18
  389. - libpcre2 10.42 -> 10.43
  390. - libpng 1.6.40 -> 1.6.42
  391. - libproxy 0.5.3 -> 0.5.4
  392. - libpsl 0.21.2 -> 0.21.5
  393. - librepo 1.16.0 -> 1.17.0
  394. - librsvg 2.56.3 -> 2.57.1
  395. - libsdl2 2.28.4 -> 2.30.0
  396. - libseccomp 2.5.4 -> 2.5.5
  397. - libsecret 0.21.1 -> 0.21.4
  398. - libsolv 0.7.26 -> 0.7.28
  399. - libsoup 3.4.2 -> 3.4.4
  400. - libstd-rs 1.70.0 -> 1.75.0
  401. - libtest-warnings-perl 0.031 -> 0.033
  402. - libtirpc 1.3.3 -> 1.3.4
  403. - libubootenv 0.3.4 -> 0.3.5
  404. - libunistring 1.1 -> 1.2
  405. - liburi-perl 5.21 -> 5.27
  406. - libusb1 1.0.26 -> 1.0.27
  407. - libuv 1.46.0 -> 1.48.0
  408. - libva 2.19.0 -> 2.20.0
  409. - libva-initial 2.19.0 -> 2.20.0
  410. - libwpe 1.14.1 -> 1.14.2
  411. - libxext 1.3.5 -> 1.3.6
  412. - libxkbcommon 1.5.0 -> 1.6.0
  413. - libxkbfile 1.1.2 -> 1.1.3
  414. - libxml-parser-perl 2.46 -> 2.47
  415. - libxml2 2.11.7 -> 2.12.5
  416. - libxmlb 0.3.14 -> 0.3.15
  417. - libxrandr 1.5.3 -> 1.5.4
  418. - libxvmc 1.0.13 -> 1.0.14
  419. - lighttpd 1.4.71 -> 1.4.74
  420. - linux-firmware 20240220 -> 20240312
  421. - linux-libc-headers 6.5 -> 6.6
  422. - linux-yocto 6.1.78+git, 6.5.13+git -> 6.6.23+git
  423. - linux-yocto-dev 6.6+git -> 6.9+git
  424. - linux-yocto-rt 6.1.78+git, 6.5.13+git -> 6.6.23+git
  425. - linux-yocto-tiny 6.1.78+git, 6.5.13+git -> 6.6.23+git
  426. - llvm 17.0.3 -> 18.1.3
  427. - lsof 4.98.0 -> 4.99.3
  428. - ltp 20230516 -> 20240129
  429. - lttng-modules 2.13.10 -> 2.13.12
  430. - lttng-ust 2.13.6 -> 2.13.7
  431. - lzip 1.23 -> 1.24
  432. - makedepend 1.0.8 -> 1.0.9
  433. - man-db 2.11.2 -> 2.12.0
  434. - man-pages 6.05.01 -> 6.06
  435. - mc 4.8.30 -> 4.8.31
  436. - mesa 23.2.1 -> 24.0.2
  437. - mesa-gl 23.2.1 -> 24.0.2
  438. - meson 1.2.2 -> 1.3.1
  439. - minicom 2.8 -> 2.9
  440. - mmc-utils 0.1+git (613495ecaca9…) -> 0.1+git (b5ca140312d2…)
  441. - mpg123 1.31.3 -> 1.32.5
  442. - newlib 4.3.0+git -> 4.4.0+git
  443. - nghttp2 1.57.0 -> 1.61.0
  444. - numactl 2.0.16 -> 2.0.18
  445. - ofono 2.1 -> 2.4
  446. - opensbi 1.2 -> 1.4
  447. - openssh 9.5p1 -> 9.6p1
  448. - openssl 3.1.5 -> 3.2.1
  449. - opkg 0.6.2 -> 0.6.3
  450. - opkg-utils 0.6.2 -> 0.6.3
  451. - orc 0.4.34 -> 0.4.38
  452. - ovmf edk2-stable202308 -> edk2-stable202402
  453. - p11-kit 0.25.0 -> 0.25.3
  454. - pango 1.51.0 -> 1.52.0
  455. - pciutils 3.10.0 -> 3.11.1
  456. - piglit 1.0+gitr (71c21b1157c4…) -> 1.0+gitr (22eaf6a91cfd…)
  457. - pkgconf 2.0.3 -> 2.1.1
  458. - psplash 0.1+git (44afb7506d43…) -> 0.1+git (ecc191375669…)
  459. - ptest-runner 2.4.2+git -> 2.4.3+git
  460. - pulseaudio 16.1 -> 17.0
  461. - puzzles 0.0+git (2d9e414ee316…) -> 0.0+git (80aac3104096…)
  462. - python3 3.11.5 -> 3.12.3
  463. - python3-alabaster 0.7.13 -> 0.7.16
  464. - python3-attrs 23.1.0 -> 23.2.0
  465. - python3-babel 2.12.1 -> 2.14.0
  466. - python3-bcrypt 4.0.1 -> 4.1.2
  467. - python3-beartype 0.15.0 -> 0.17.2
  468. - python3-build 1.0.3 -> 1.1.1
  469. - python3-certifi 2023.7.22 -> 2024.2.2
  470. - python3-cffi 1.15.1 -> 1.16.0
  471. - python3-cryptography 41.0.4 -> 42.0.5
  472. - python3-cryptography-vectors 41.0.4 -> 42.0.5
  473. - python3-cython 0.29.36 -> 3.0.8
  474. - python3-dbusmock 0.29.1 -> 0.31.1
  475. - python3-dtschema 2023.7 -> 2024.2
  476. - python3-git 3.1.36 -> 3.1.42
  477. - python3-gitdb 4.0.10 -> 4.0.11
  478. - python3-hatch-fancy-pypi-readme 23.1.0 -> 24.1.0
  479. - python3-hatch-vcs 0.3.0 -> 0.4.0
  480. - python3-hatchling 1.18.0 -> 1.21.1
  481. - python3-hypothesis 6.86.2 -> 6.98.15
  482. - python3-idna 3.4 -> 3.6
  483. - python3-importlib-metadata 6.8.0 -> 7.0.1
  484. - python3-iso8601 2.0.0 -> 2.1.0
  485. - python3-jsonschema 4.17.3 -> 4.21.1
  486. - python3-license-expression 30.1.1 -> 30.2.0
  487. - python3-lxml 4.9.3 -> 5.0.0
  488. - python3-mako 1.2.4 -> 1.3.2
  489. - python3-markdown 3.4.4 -> 3.5.2
  490. - python3-markupsafe 2.1.3 -> 2.1.5
  491. - python3-more-itertools 10.1.0 -> 10.2.0
  492. - python3-numpy 1.26.0 -> 1.26.4
  493. - python3-packaging 23.1 -> 23.2
  494. - python3-pathspec 0.11.2 -> 0.12.1
  495. - python3-pbr 5.11.1 -> 6.0.0
  496. - python3-pip 23.2.1 -> 24.0
  497. - python3-pluggy 1.3.0 -> 1.4.0
  498. - python3-poetry-core 1.7.0 -> 1.9.0
  499. - python3-psutil 5.9.5 -> 5.9.8
  500. - python3-pyasn1 0.5.0 -> 0.5.1
  501. - python3-pycairo 1.24.0 -> 1.26.0
  502. - python3-pycryptodome 3.19.0 -> 3.20.0
  503. - python3-pycryptodomex 3.19.0 -> 3.20.0
  504. - python3-pygments 2.16.1 -> 2.17.2
  505. - python3-pyopenssl 23.2.0 -> 24.0.0
  506. - python3-pyrsistent 0.19.3 -> 0.20.0
  507. - python3-pytest 7.4.2 -> 8.0.2
  508. - python3-pytest-runner 6.0.0 -> 6.0.1
  509. - python3-pytz 2023.3 -> 2024.1
  510. - python3-ruamel-yaml 0.17.32 -> 0.18.6
  511. - python3-scons 4.5.2 -> 4.6.0
  512. - python3-setuptools 68.2.2 -> 69.1.1
  513. - python3-setuptools-rust 1.7.0 -> 1.9.0
  514. - python3-setuptools-scm 7.1.0 -> 8.0.4
  515. - python3-spdx-tools 0.8.1 -> 0.8.2
  516. - python3-sphinx-rtd-theme 1.3.0 -> 2.0.0
  517. - python3-sphinxcontrib-applehelp 1.0.4 -> 1.0.8
  518. - python3-sphinxcontrib-devhelp 1.0.2 -> 1.0.6
  519. - python3-sphinxcontrib-htmlhelp 2.0.1 -> 2.0.5
  520. - python3-sphinxcontrib-qthelp 1.0.3 -> 1.0.7
  521. - python3-sphinxcontrib-serializinghtml 1.1.5 -> 1.1.10
  522. - python3-subunit 1.4.2 -> 1.4.4
  523. - python3-testtools 2.6.0 -> 2.7.1
  524. - python3-trove-classifiers 2023.9.19 -> 2024.2.23
  525. - python3-typing-extensions 4.8.0 -> 4.10.0
  526. - python3-unittest-automake-output 0.1 -> 0.2
  527. - python3-urllib3 2.0.7 -> 2.2.1
  528. - python3-wcwidth 0.2.6 -> 0.2.13
  529. - python3-wheel 0.41.2 -> 0.42.0
  530. - qemu 8.1.4 -> 8.2.1
  531. - qemu-native 8.1.4 -> 8.2.1
  532. - qemu-system-native 8.1.4 -> 8.2.1
  533. - repo 2.36.1 -> 2.42
  534. - resolvconf 1.91 -> 1.92
  535. - rpm 4.18.1 -> 4.19.1
  536. - rt-tests 2.5 -> 2.6
  537. - rust 1.70.0 -> 1.75.0
  538. - rust-cross-canadian 1.70.0 -> 1.75.0
  539. - rust-llvm 1.70.0 -> 1.75.0
  540. - shaderc 2023.6 -> 2023.8
  541. - shadow 4.13 -> 4.14.2
  542. - shared-mime-info 2.2 -> 2.4
  543. - socat 1.7.4.4 -> 1.8.0.0
  544. - spirv-headers 1.3.261.1 -> 1.3.275.0
  545. - spirv-tools 1.3.261.1 -> 1.3.275.0
  546. - sqlite3 3.43.2 -> 3.45.1
  547. - strace 6.5 -> 6.7
  548. - stress-ng 0.16.05 -> 0.17.05
  549. - subversion 1.14.2 -> 1.14.3
  550. - swig 4.1.1 -> 4.2.1
  551. - sysstat 12.7.4 -> 12.7.5
  552. - systemd 254.4 -> 255.4
  553. - systemd-boot 254.4 -> 255.4
  554. - systemd-bootchart 234 -> 235
  555. - systemtap 4.9 -> 5.0
  556. - systemtap-native 4.9 -> 5.0
  557. - taglib 1.13.1 -> 2.0
  558. - ttyrun 2.29.0 -> 2.31.0
  559. - u-boot 2023.10 -> 2024.01
  560. - u-boot-tools 2023.10 -> 2024.01
  561. - update-rc.d 0.8 (8636cf478d42…) -> 0.8 (b8f950105010…)
  562. - usbutils 015 -> 017
  563. - util-linux 2.39.2 -> 2.39.3
  564. - util-linux-libuuid 2.39.2 -> 2.39.3
  565. - vala 0.56.13 -> 0.56.15
  566. - valgrind 3.21.0 -> 3.22.0
  567. - vim 9.0.2190 -> 9.1.0114
  568. - vim-tiny 9.0.2190 -> 9.1.0114
  569. - virglrenderer 0.10.4 -> 1.0.1
  570. - vte 0.72.2 -> 0.74.2
  571. - vulkan-headers 1.3.261.1 -> 1.3.275.0
  572. - vulkan-loader 1.3.261.1 -> 1.3.275.0
  573. - vulkan-tools 1.3.261.1 -> 1.3.275.0
  574. - vulkan-validation-layers 1.3.261.1 -> 1.3.275.0
  575. - wayland-protocols 1.32 -> 1.33
  576. - webkitgtk 2.40.5 -> 2.44.0
  577. - weston 12.0.2 -> 13.0.0
  578. - xkbcomp 1.4.6 -> 1.4.7
  579. - xkeyboard-config 2.39 -> 2.41
  580. - xprop 1.2.6 -> 1.2.7
  581. - xwayland 23.2.4 -> 23.2.5
  582. - xz 5.4.4 -> 5.4.6
  583. - zlib 1.3 -> 1.3.1
  584. Contributors to 5.0
  585. ~~~~~~~~~~~~~~~~~~~
  586. Thanks to the following people who contributed to this release:
  587. - Adam Johnston
  588. - Adithya Balakumar
  589. - Adrian Freihofer
  590. - Alassane Yattara
  591. - Alejandro Hernandez Samaniego
  592. - Aleksey Smirnov
  593. - Alexander Kanavin
  594. - Alexander Lussier-Cullen
  595. - Alexander Sverdlin
  596. - Alexandre Belloni
  597. - Alexandre Truong
  598. - Alex Bennée
  599. - Alexis Lothoré
  600. - Alex Kiernan
  601. - Alex Stewart
  602. - André Draszik
  603. - Anibal Limon
  604. - Anuj Mittal
  605. - Archana Polampalli
  606. - Arne Schwerdt
  607. - Bartosz Golaszewski
  608. - Baruch Siach
  609. - Bastian Krause
  610. - BELHADJ SALEM Talel
  611. - BELOUARGA Mohamed
  612. - Bruce Ashfield
  613. - Changhyeok Bae
  614. - Changqing Li
  615. - Charlie Johnston
  616. - Chen Qi
  617. - Chi Xu
  618. - Chris Laplante
  619. - Christian Taedcke
  620. - Christoph Vogtländer
  621. - Claus Stovgaard
  622. - Clay Chang
  623. - Clément Péron
  624. - Colin McAllister
  625. - Corentin Guillevic
  626. - Daniel Ammann
  627. - david d zuhn
  628. - David Reyna
  629. - Deepthi Hemraj
  630. - Denys Dmytriyenko
  631. - Derek Erdmann
  632. - Desone Burns
  633. - Dhairya Nagodra
  634. - Dmitry Baryshkov
  635. - Eero Aaltonen
  636. - Eilís 'pidge' Ní Fhlannagáin
  637. - Emil Kronborg
  638. - Enguerrand de Ribaucourt
  639. - Enrico Jörns
  640. - Enrico Scholz
  641. - Etienne Cordonnier
  642. - Fabien Mahot
  643. - Fabio Estevam
  644. - Fahad Arslan
  645. - Felix Moessbauer
  646. - Florian Wickert
  647. - Geoff Parker
  648. - Glenn Strauss
  649. - Harish Sadineni
  650. - Hongxu Jia
  651. - Ilya A. Kriveshko
  652. - Jamin Lin
  653. - Jan Vermaete
  654. - Jason Andryuk
  655. - Javier Tia
  656. - Jeremy A. Puhlman
  657. - Jérémy Rosen
  658. - Jermain Horsman
  659. - Jiang Kai
  660. - Joakim Tjernlund
  661. - Joao Marcos Costa
  662. - Joe Slater
  663. - Johan Bezem
  664. - Johannes Schneider
  665. - Jonathan GUILLOT
  666. - Jon Mason
  667. - Jörg Sommer
  668. - Jose Quaresma
  669. - Joshua Watt
  670. - Julien Stephan
  671. - Justin Bronder
  672. - Kai Kang
  673. - Kareem Zarka
  674. - Kevin Hao
  675. - Khem Raj
  676. - Konrad Weihmann
  677. - Lee Chee Yang
  678. - Lei Maohui
  679. - lixiaoyong
  680. - Logan Gunthorpe
  681. - Luca Ceresoli
  682. - luca fancellu
  683. - Lucas Stach
  684. - Ludovic Jozeau
  685. - Lukas Funke
  686. - Maanya Goenka
  687. - Malte Schmidt
  688. - Marcel Ziswiler
  689. - Marco Felsch
  690. - Marcus Folkesson
  691. - Marek Vasut
  692. - Mark Asselstine
  693. - Mark Hatle
  694. - Markus Fuchs
  695. - Markus Volk
  696. - Marlon Rodriguez Garcia
  697. - Marta Rybczynska
  698. - Martin Hundebøll
  699. - Martin Jansa
  700. - Massimiliano Minella
  701. - Maxin B. John
  702. - Max Krummenacher
  703. - Meenali Gupta
  704. - Michael Halstead
  705. - Michael Opdenacker
  706. - Michal Sieron
  707. - Mikko Rapeli
  708. - Ming Liu
  709. - Mingli Yu
  710. - Munehisa Kamata
  711. - Nick Owens
  712. - Niko Mauno
  713. - Ola x Nilsson
  714. - Oleh Matiusha
  715. - Patrick Williams
  716. - Paul Barker
  717. - Paul Eggleton
  718. - Paul Gortmaker
  719. - Pavel Zhukov
  720. - Peter A. Bigot
  721. - Peter Kjellerstedt
  722. - Peter Marko
  723. - Petr Vorel
  724. - Philip Balister
  725. - Philip Lorenz
  726. - Philippe Rivest
  727. - Piotr Łobacz
  728. - Priyal Doshi
  729. - Quentin Schulz
  730. - Ragesh Nair
  731. - Randolph Sapp
  732. - Randy MacLeod
  733. - Rasmus Villemoes
  734. - Renat Khalikov
  735. - Richard Haar
  736. - Richard Purdie
  737. - Robert Berger
  738. - Robert Joslyn
  739. - Robert P. J. Day
  740. - Robert Yang
  741. - Rodrigo M. Duarte
  742. - Ross Burton
  743. - Rouven Czerwinski
  744. - Ryan Eatmon
  745. - Sam Van Den Berge
  746. - Saul Wold
  747. - Sava Jakovljev
  748. - Sean Nyekjaer
  749. - Sergei Zhmylev
  750. - Shinji Matsunaga
  751. - Shubham Kulkarni
  752. - Simone Weiß
  753. - Siong W.LIM
  754. - Soumya Sambu
  755. - Sourav Kumar Pramanik
  756. - Stefan Herbrechtsmeier
  757. - Stéphane Veyret
  758. - Steve Sakoman
  759. - Sundeep KOKKONDA
  760. - Thomas Perrot
  761. - Thomas Wolber
  762. - Timon Bergelt
  763. - Tim Orling
  764. - Timotheus Giuliani
  765. - Tobias Hagelborn
  766. - Tom Hochstein
  767. - Tom Rini
  768. - Toni Lammi
  769. - Trevor Gamblin
  770. - Trevor Woerner
  771. - Ulrich Ölmann
  772. - Valek Andrej
  773. - venkata pyla
  774. - Victor Kamensky
  775. - Vijay Anusuri
  776. - Vikas Katariya
  777. - Vincent Davis Jr
  778. - Viswanath Kraleti
  779. - Vyacheslav Yurkov
  780. - Wang Mingyu
  781. - William A. Kennington III
  782. - William Hauser
  783. - William Lyu
  784. - Xiangyu Chen
  785. - Xiaotian Wu
  786. - Yang Xu
  787. - Yannick Rodriguez
  788. - Yash Shinde
  789. - Yi Zhao
  790. - Yoann Congal
  791. - Yogesh Tyagi
  792. - Yogita Urade
  793. - Zahir Hussain
  794. - Zang Ruochen
  795. - Zoltan Boszormenyi
  796. Repositories / Downloads for Yocto-5.0
  797. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  798. poky
  799. - Repository Location: :yocto_git:`/poky`
  800. - Branch: :yocto_git:`scarthgap </poky/log/?h=scarthgap>`
  801. - Tag: :yocto_git:`yocto-5.0 </poky/log/?h=yocto-5.0>`
  802. - Git Revision: :yocto_git:`fb91a49387cfb0c8d48303bb3354325ba2a05587 </poky/commit/?id=fb91a49387cfb0c8d48303bb3354325ba2a05587>`
  803. - Release Artefact: poky-fb91a49387cfb0c8d48303bb3354325ba2a05587
  804. - sha: 8a0dff4b677b9414ab814ed35d1880196123732ea16ab2fafa388bcc509b32ab
  805. - Download Locations:
  806. http://downloads.yoctoproject.org/releases/yocto/yocto-5.0/poky-fb91a49387cfb0c8d48303bb3354325ba2a05587.tar.bz2
  807. http://mirrors.kernel.org/yocto/yocto/yocto-5.0/poky-fb91a49387cfb0c8d48303bb3354325ba2a05587.tar.bz2
  808. openembedded-core
  809. - Repository Location: :oe_git:`/openembedded-core`
  810. - Branch: :oe_git:`scarthgap </openembedded-core/log/?h=scarthgap>`
  811. - Tag: :oe_git:`yocto-5.0 </openembedded-core/log/?h=yocto-5.0>`
  812. - Git Revision: :oe_git:`b65b4e5a8e4473d8ca43835ba17bc8bd4bdca277 </openembedded-core/commit/?id=b65b4e5a8e4473d8ca43835ba17bc8bd4bdca277>`
  813. - Release Artefact: oecore-b65b4e5a8e4473d8ca43835ba17bc8bd4bdca277
  814. - sha: c7fd05d1a00c70acba2540e60dce01a1bdc4701ebff9a808784960240c69261d
  815. - Download Locations:
  816. http://downloads.yoctoproject.org/releases/yocto/yocto-5.0/oecore-b65b4e5a8e4473d8ca43835ba17bc8bd4bdca277.tar.bz2
  817. http://mirrors.kernel.org/yocto/yocto/yocto-5.0/oecore-b65b4e5a8e4473d8ca43835ba17bc8bd4bdca277.tar.bz2
  818. meta-mingw
  819. - Repository Location: :yocto_git:`/meta-mingw`
  820. - Branch: :yocto_git:`scarthgap </meta-mingw/log/?h=scarthgap>`
  821. - Tag: :yocto_git:`yocto-5.0 </meta-mingw/log/?h=yocto-5.0>`
  822. - Git Revision: :yocto_git:`acbba477893ef87388effc4679b7f40ee49fc852 </meta-mingw/commit/?id=acbba477893ef87388effc4679b7f40ee49fc852>`
  823. - Release Artefact: meta-mingw-acbba477893ef87388effc4679b7f40ee49fc852
  824. - sha: 3b7c2f475dad5130bace652b150367f587d44b391218b1364a8bbc430b48c54c
  825. - Download Locations:
  826. http://downloads.yoctoproject.org/releases/yocto/yocto-5.0/meta-mingw-acbba477893ef87388effc4679b7f40ee49fc852.tar.bz2
  827. http://mirrors.kernel.org/yocto/yocto/yocto-5.0/meta-mingw-acbba477893ef87388effc4679b7f40ee49fc852.tar.bz2
  828. bitbake
  829. - Repository Location: :oe_git:`/bitbake`
  830. - Branch: :oe_git:`2.8 </bitbake/log/?h=2.8>`
  831. - Tag: :oe_git:`yocto-5.0 </bitbake/log/?h=yocto-5.0>`
  832. - Git Revision: :oe_git:`c86466d51e8ff14e57a734c1eec5bb651fdc73ef </bitbake/commit/?id=c86466d51e8ff14e57a734c1eec5bb651fdc73ef>`
  833. - Release Artefact: bitbake-c86466d51e8ff14e57a734c1eec5bb651fdc73ef
  834. - sha: 45c91294c1fa5a0044f1bb72a9bb69456bb458747114115af85c7664bf672d48
  835. - Download Locations:
  836. http://downloads.yoctoproject.org/releases/yocto/yocto-5.0/bitbake-c86466d51e8ff14e57a734c1eec5bb651fdc73ef.tar.bz2
  837. http://mirrors.kernel.org/yocto/yocto/yocto-5.0/bitbake-c86466d51e8ff14e57a734c1eec5bb651fdc73ef.tar.bz2
  838. yocto-docs
  839. - Repository Location: :yocto_git:`/yocto-docs`
  840. - Branch: :yocto_git:`scarthgap </yocto-docs/log/?h=scarthgap>`
  841. - Tag: :yocto_git:`yocto-5.0 </yocto-docs/log/?h=yocto-5.0>`
  842. - Git Revision: :yocto_git:`0cdc0afd3332459d30cfc8f4c2e62bdcc23f5ed5 </yocto-docs/commit/?id=0cdc0afd3332459d30cfc8f4c2e62bdcc23f5ed5>`