release-notes-4.2.rst 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  1. .. SPDX-License-Identifier: CC-BY-SA-2.0-UK
  2. Release notes for 4.2 (mickledore)
  3. ----------------------------------
  4. New Features / Enhancements in 4.2
  5. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  6. - Linux kernel 6.1, glibc 2.37 and ~350 other recipe upgrades
  7. - Python 3.8+ and GCC 8.0+ are now the minimum required versions on the build host.
  8. For host distributions that do not provide it, this is included as part of the
  9. :term:`buildtools` tarball.
  10. - BitBake in this release now supports a new ``addpylib`` directive to enable
  11. Python libraries within layers. For more information,
  12. see :ref:`bitbake-user-manual/bitbake-user-manual-metadata:extending python library code`.
  13. This directive should be added to your layer configuration
  14. as in the below example from ``meta/conf/layer.conf``::
  15. addpylib ${LAYERDIR}/lib oe
  16. - BitBake has seen multiple internal changes that may improve
  17. memory and disk usage as well as parsing time, in particular:
  18. - BitBake's Cooker server is now multithreaded.
  19. - Ctrl+C can now be used to interrupt some long-running operations
  20. that previously ignored it.
  21. - BitBake's cache has been extended to include more hash
  22. debugging data, but has also been optimized to :yocto_git:`compress
  23. cache data <https://git.yoctoproject.org/poky/commit/?h=mickledore&id=7d010055e2af3294e17db862f42664ca689a9356>`.
  24. - BitBake's UI will now ping the server regularly to ensure
  25. it is still alive.
  26. - New variables:
  27. - ``VOLATILE_TMP_DIR`` allows to specify
  28. whether ``/tmp`` should be on persistent storage
  29. or in RAM.
  30. - :term:`SPDX_CUSTOM_ANNOTATION_VARS` allows to add
  31. specific comments to the :term:`SPDX` description of a recipe.
  32. - Rust improvements:
  33. - This release adds Cargo support on the target, and includes
  34. automated QA tests for this functionality.
  35. - It also supports checksums for Rust crates and makes
  36. them mandatory for each crate in a recipe.
  37. - New :ref:`ref-classes-cargo-update-recipe-crates` class to
  38. enable updating :term:`SRC_URI` crate lists from ``Cargo.lock``
  39. - Enabled building Rust for baremetal targets
  40. - You can now also easily select to build beta or nightly
  41. versions of Rust with a new :term:`RUST_CHANNEL` variable
  42. (use at own risk)
  43. - Support for local GitHub repos in :term:`SRC_URI` as
  44. replacements for Cargo dependencies
  45. - Use built-in Rust targets for ``-native`` builds to save several
  46. minutes building the Rust toolchain
  47. - Architecture-specific enhancements:
  48. - This release adds initial support for the
  49. :wikipedia:`LoongArch <Loongson#LoongArch>`
  50. (``loongarch64``) architecture, though there is no testing for it yet.
  51. - New ``x86-64-v3`` tunes (AVX, AVX2, BMI1, BMI2, F16C, FMA, LZCNT, MOVBE, XSAVE)
  52. - go: add support to build on ppc64le
  53. - rust: rustfmt now working and installed for riscv32
  54. - libpng: enable NEON for aarch64 to ensure consistency with arm32.
  55. - baremetal-helloworld: Enable x86 and x86-64 ports
  56. - Kernel-related enhancements:
  57. - Added some support for building 6.2/6.3-rc kernels
  58. - linux-yocto-dev: mark as compatible with qemuarm64 and qemuarmv5
  59. - Add kernel specific OBJCOPY to help switching toolchains cleanly for kernel build between gcc and clang
  60. - New core recipes:
  61. - ``debugedit``
  62. - ``gtk4`` (import from meta-gnome)
  63. - ``gcr``: add recipe for gcr-4
  64. - ``graphene`` (import from meta-oe)
  65. - ``libc-test``
  66. - ``libportal`` (import from meta-gnome)
  67. - ``libslirp``
  68. - ``libtest-fatal-perl``
  69. - ``libtest-warnings-perl`` (import from meta-perl)
  70. - ``libtry-tiny-perl``
  71. - ``python3-build``
  72. - ``python3-pyproject-hooks``
  73. - ``python3-hatch-fancy-pypi-readme``
  74. - ``python3-unittest-automake``
  75. - QEMU/runqemu enhancements:
  76. - Set ``QB_SMP`` with ?= to make it easier to modify
  77. - Set ``QB_CPU`` with ?= to make it easier to modify (x86 configuration only)
  78. - New ``QB_NFSROOTFS_EXTRA_OPT`` to allow extra options to be appended to the NFS rootfs options in kernel boot args, e.g. ``"wsize=4096,rsize=4096"``
  79. - New ``QB_SETUP_CMD`` and ``QB_CLEANUP_CMD`` to enable running custom shell setup and cleanup commands before and after QEMU.
  80. - ``QB_DEFAULT_KERNEL`` now defaults to pick the bundled initramfs kernel image if the Linux kernel image is generated with :term:`INITRAMFS_IMAGE_BUNDLE` set to "1"
  81. - Split out the QEMU guest agent to its own ``qemu-guest-agent`` package
  82. - runqemu: new ``guestagent`` option to enable communication with the guest agent
  83. - runqemu: respect :term:`IMAGE_LINK_NAME` when searching for image
  84. - Image-related enhancements:
  85. - Add 7-Zip support in image conversion types (``7zip``)
  86. - New :term:`IMAGE_MACHINE_SUFFIX` variable to allow easily removing machine name suffix from image file names
  87. - wic Image Creator enhancements:
  88. - ``bootimg-efi.py``: add support for directly loading Linux kernel UEFI stub
  89. - ``bootimg-efi.py``: implement ``--include-path``
  90. - Allow usage of ``fstype=none`` to specify an unformatted partition
  91. - Implement repeatable disk identifiers based on :term:`SOURCE_DATE_EPOCH`
  92. - FIT image related improvements:
  93. - FIT image signing support has been reworked to remove interdependencies and make it more easily extensible
  94. - Skip FDT section creation for applicable symlinks to avoid the same dtb being duplicated
  95. - New :term:`FIT_CONF_DEFAULT_DTB` variable to enable selecting default dtb when multiple dtbs exist
  96. - SDK-related improvements:
  97. - Extended the following recipes to nativesdk:
  98. - ``bc``
  99. - ``gi-docgen``
  100. - ``gperf``
  101. - ``python3-iniconfig``
  102. - ``python3-atomicwrites``
  103. - ``python3-markdown``
  104. - ``python3-smartypants``
  105. - ``python3-typogrify``
  106. - ``ruby``
  107. - ``unifdef``
  108. - New :term:`SDK_ZIP_OPTIONS` variable to enable passing additional options to the zip command when preparing the SDK zip archive
  109. - New Rust SDK target packagegroup (``packagegroup-rust-sdk-target``)
  110. - Testing:
  111. - The ptest images have changed structure in this release. The
  112. underlying ``core-image-ptest`` recipe now uses :term:`BBCLASSEXTEND` to
  113. create a variant for each ptest enabled recipe in OE-Core.
  114. For example, this means that ``core-image-ptest-bzip2``,
  115. ``core-image-ptest-lttng-tools`` and many more image targets now exist
  116. and can be built/tested individually.
  117. The ``core-image-ptest-all`` and ``core-image-ptest-fast`` targets are now
  118. wrappers that target groups of individual images and means that the tests
  119. can be executed in parallel during our automated testing. This also means
  120. the dependencies are more accurately tested.
  121. - It is now possible to track regression changes between releases using
  122. :oe_git:`yocto_testresults_query.py </openembedded-core/tree/scripts/yocto_testresults_query.py>`,
  123. which is a thin wrapper over :oe_git:`resulttool
  124. </openembedded-core/tree/scripts/resulttool>`. Here is an example
  125. command, which allowed to spot and fix a regression in the
  126. ``quilt`` ptest::
  127. yocto_testresults_query.py regression-report 4.2_M1 4.2_M2
  128. See this `blog post about regression detection
  129. <https://bootlin.com/blog/continuous-integration-in-yocto-improving-the-regressions-detection/>`__.
  130. - This release adds support for parallel ptest execution with a ptest per image.
  131. This takes ptest execution time from 3.5 hours to around 45 minutes on the autobuilder.
  132. - Basic Rust compile/run and cargo tests
  133. - New ``python3-unittest-automake`` recipe which provides modules for pytest
  134. and unittest to adjust their output to automake-style for easier integration
  135. with the ptest system.
  136. - ptest support added to ``bc``, ``cpio`` and ``gnutls``, and fixes made to
  137. ptests in numerous other recipes.
  138. - ``ptest-runner`` now adds a non-root "ptest" user to run tests.
  139. - ``resulttool``: add a ``--list-ptest`` option to the log subcommand to list ptest names
  140. in a results file
  141. - ``resulttool``: regression: add metadata filtering for oeselftest
  142. - New :term:`PACKAGECONFIG` options in the following recipes:
  143. - ``at-spi2-core``
  144. - ``base-passwd``
  145. - ``cronie``
  146. - ``cups``
  147. - ``curl``
  148. - ``file``
  149. - ``gstreamer1.0-plugins-good``
  150. - ``gtk+3``
  151. - ``iproute2``
  152. - ``libsdl2``
  153. - ``libtiff``
  154. - ``llvm``
  155. - ``mesa``
  156. - ``psmisc``
  157. - ``qemu``
  158. - ``sudo``
  159. - ``systemd``
  160. - ``tiff``
  161. - ``util-linux``
  162. - Extended the following recipes to native:
  163. - ``iso-codes``
  164. - ``libxkbcommon``
  165. - ``p11-kit``
  166. - ``python3-atomicwrites``
  167. - ``python3-dbusmock``
  168. - ``python3-iniconfig``
  169. - ``xkeyboard-config``
  170. - Utility script changes:
  171. - ``devtool``: ignore patch-fuzz errors when extracting source in order to enable fixing fuzz issues
  172. - ``oe-setup-layers``: make efficiently idempotent
  173. - ``oe-setup-layers``: print a note about submodules if present
  174. - New ``buildstats-summary`` script to show a summary of the buildstats data
  175. - :ref:`ref-classes-report-error` class: catch ``Nothing PROVIDES`` error
  176. - ``combo-layer``: add ``sync-revs`` command
  177. - ``convert-overrides``: allow command-line customizations
  178. - bitbake-layers improvements:
  179. - ``layerindex-fetch``: checkout layer(s) branch when clone exists
  180. - ``create``: add ``-a``/``--add-layer option`` to add layer to ``bblayers.conf`` after creating layer
  181. - ``show-layers``: improve output layout
  182. - Other BitBake improvements:
  183. - Inline Python snippets can now include dictionary expressions
  184. - Evaluate the value of export/unexport/network flags so that they can be reset to "0"
  185. - Make :term:`EXCLUDE_FROM_WORLD` boolean so that it can be reset to "0"
  186. - Support int values in ``bb.utils.to_boolean()`` in addition to strings
  187. - ``bitbake-getvar``: Add a ``quiet`` command line argument
  188. - Allow the ``@`` character in variable flag names
  189. - Python library code will now be included when calculating task hashes
  190. - ``fetch2/npmsw``: add more short forms for git operations
  191. - Display a warning when ``SRCREV = "${AUTOREV}"`` is set too late to be effective
  192. - Display all missing :term:`SRC_URI` checksums at once
  193. - Improve error message for a missing multiconfig
  194. - Switch to a new :term:`BB_CACHEDIR` variable for codeparser cache location
  195. - Mechanism introduced to reduce the codeparser cache unnecessarily growing in size
  196. - Packaging changes:
  197. - ``rng-tools`` is no longer recommended by ``openssh``, and the ``rng-tools``
  198. service files have been split out to their own package
  199. - ``linux-firmware``: split ``rtl8761`` and ``amdgpu`` firmware
  200. - ``linux-firmware``: add new firmware file to ``${PN}-qcom-adreno-a530``
  201. - ``iproute2``: separate ``routel`` and add Python dependency
  202. - ``xinetd``: move ``xconv.pl`` script to separate package
  203. - ``perf``: enable debug/source packaging
  204. - Prominent documentation updates:
  205. - Substantially expanded the ":doc:`/dev-manual/vulnerabilities`" section.
  206. - Added a new ":doc:`/dev-manual/sbom`" section about SPDX SBoM generation.
  207. - Expanded ":ref:`init-manager`" documentation.
  208. - New section about :ref:`ref-long-term-support-releases`.
  209. - System Requirements: details about :ref:`system-requirements-minimum-ram`.
  210. - Details about :ref:`ref-building-meson-package` and the
  211. :ref:`ref-classes-meson` class.
  212. - Documentation about how to write recipes for Rust programs. See the
  213. :ref:`ref-classes-cargo` class.
  214. - Documentation about how to write recipes for Go programs. See the
  215. :ref:`ref-classes-go` class.
  216. - Variable index: added references to variables only documented in the
  217. BitBake manual. All variables should be easy to access through the Yocto
  218. Manual variable index.
  219. - Expanded the description of the :term:`BB_NUMBER_THREADS` variable.
  220. - Miscellaneous changes:
  221. - Supporting 64 bit dates on 32 bit platforms: several packages have been
  222. updated to pass year 2038 tests, and a QA check for 32 bit time and file
  223. offset functions has been added (default off)
  224. - Patch fuzz/Upstream-Status checking has been reworked:
  225. - Upstream-Status checking is now configurable from :term:`WARN_QA`/:term:`ERROR_QA` (``patch-status-core``)
  226. - Can now be enabled for non-core layers (``patch-status-noncore``)
  227. - ``patch-fuzz`` is now in :term:`ERROR_QA` by default, and actually stops the build
  228. - Many packages were updated to add large file support.
  229. - ``vulkan-loader``: allow headless targets to build the loader
  230. - ``dhcpcd``: fix to work with systemd
  231. - ``u-boot``: add /boot to :term:`SYSROOT_DIRS` to allow boot files to be used by other recipes
  232. - ``linux-firmware``: don't put the firmware into the sysroot
  233. - ``cups``: add :term:`PACKAGECONFIG` to control web interface and default to off
  234. - ``buildtools-tarball``: export certificates to python and curl
  235. - ``yocto-check-layer``: allow OE-Core to be tested
  236. - ``yocto-check-layer``: check for patch file upstream status
  237. - ``boost``: enable building ``Boost.URL`` library
  238. - ``native``: drop special variable handling
  239. - Poky: make it easier to set :term:`INIT_MANAGER` from local.conf
  240. - :ref:`ref-classes-create-spdx`: add support for custom annotations (:term:`SPDX_CUSTOM_ANNOTATION_VARS`)
  241. - :ref:`ref-classes-create-spdx`: report downloads as separate packages
  242. - :ref:`ref-classes-create-spdx`: remove the top-level image SPDX file and the JSON index file from :term:`DEPLOYDIR` to avoid confusion
  243. - ``os-release``: replace ``DISTRO_CODENAME`` with ``VERSION_CODENAME`` (still set from :term:`DISTRO_CODENAME`)
  244. - ``weston``: add kiosk shell
  245. - :ref:`ref-classes-overlayfs`: Allow unused mount points
  246. - ``sstatesig``: emit more helpful error message when not finding sstate manifest
  247. - :ref:`ref-classes-pypi`.bbclass: Set :term:`SRC_URI` downloadfilename with an optional prefix
  248. - ``poky-bleeding`` distro: update and rework
  249. - :ref:`package.bbclass <ref-classes-package>`: check if package names conflict via ``PKG:${PN}`` override in :ref:`do_package <ref-tasks-package>`
  250. - ``cve-update-nvd2-native``: new NVD CVE database fetcher using the 2.0 API
  251. - :ref:`ref-classes-mirrors` class: use shallow tarball for ``binutils-native``/``nativesdk-binutils``
  252. - ``meta/conf``: move default configuration templates into ``meta/conf/templates/default``
  253. - ``binutils``: enable ``--enable-new-dtags`` as per many Linux distributions
  254. - ``base-files``: drop ``localhost.localdomain`` from hosts file as per many Linux distributions
  255. - ``packagegroup-core-boot``: make ``init-ifupdown`` package a recommendation
  256. Known Issues in 4.2
  257. ~~~~~~~~~~~~~~~~~~~
  258. - N/A
  259. Recipe License changes in 4.2
  260. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  261. The following corrections have been made to the :term:`LICENSE` values set by recipes:
  262. - ``curl``: set :term:`LICENSE` appropriately to ``curl`` as it is a special derivative of the MIT/X license, not exactly that license.
  263. - ``libgit2``: added ``Zlib``, ``ISC``, ``LGPL-2.1-or-later`` and ``CC0-1.0`` to :term:`LICENSE` covering portions of the included code.
  264. - ``linux-firmware``: set package :term:`LICENSE` appropriately for all qcom packages
  265. Security Fixes in 4.2
  266. ~~~~~~~~~~~~~~~~~~~~~
  267. - binutils: :cve_nist:`2022-4285`, :cve_mitre:`2023-25586`
  268. - curl: :cve_nist:`2022-32221`, :cve_nist:`2022-35260`, :cve_nist:`2022-42915`, :cve_nist:`2022-42916`
  269. - epiphany: :cve_nist:`2023-26081`
  270. - expat: :cve_nist:`2022-43680`
  271. - ffmpeg: :cve_nist:`2022-3964`, :cve_nist:`2022-3965`
  272. - git: :cve_nist:`2022-39260`, :cve_nist:`2022-41903`, :cve_nist:`2022-23521`, :cve_nist:`2022-41953` (ignored)
  273. - glibc: :cve_nist:`2023-25139` (ignored)
  274. - go: :cve_nist:`2023-24532`, :cve_nist:`2023-24537`
  275. - grub2: :cve_nist:`2022-2601`, :cve_nist:`2022-3775`, :cve_mitre:`2022-28736`
  276. - inetutils: :cve_nist:`2019-0053`
  277. - less: :cve_nist:`2022-46663`
  278. - libarchive: :cve_nist:`2022-36227`
  279. - libinput: :cve_nist:`2022-1215`
  280. - libpam: :cve_nist:`2022-28321`
  281. - libpng: :cve_nist:`2019-6129`
  282. - libx11: :cve_nist:`2022-3554`
  283. - openssh: :cve_nist:`2023-28531`
  284. - openssl: :cve_nist:`2022-3358`, :cve_nist:`2022-3786`, :cve_nist:`2022-3602`, :cve_nist:`2022-3996`, :cve_nist:`2023-0286`, :cve_nist:`2022-4304`, :cve_nist:`2022-4203`, :cve_nist:`2023-0215`, :cve_nist:`2022-4450`, :cve_nist:`2023-0216`, :cve_nist:`2023-0217`, :cve_nist:`2023-0401`, :cve_nist:`2023-0464`
  285. - ppp: :cve_nist:`2022-4603`
  286. - python3-cryptography{-vectors}: :cve_nist:`2022-3602`, :cve_nist:`2022-3786`, :cve_nist:`2023-23931`
  287. - python3: :cve_mitre:`2022-37460`
  288. - qemu: :cve_nist:`2022-3165`
  289. - rust: :cve_nist:`2022-46176`
  290. - rxvt-unicode: :cve_nist:`2022-4170`
  291. - screen: :cve_nist:`2023-24626`
  292. - shadow: :cve_nist:`2023-29383`, :cve_nist:`2016-15024` (ignored)
  293. - sudo: :cve_nist:`2022-43995`
  294. - systemd: :cve_nist:`2022-4415` (ignored)
  295. - tar: :cve_nist:`2022-48303`
  296. - tiff: :cve_nist:`2022-3599`, :cve_nist:`2022-3597`, :cve_nist:`2022-3626`, :cve_nist:`2022-3627`, :cve_nist:`2022-3570`, :cve_nist:`2022-3598`, :cve_nist:`2022-3970`, :cve_nist:`2022-48281`
  297. - vim: :cve_nist:`2022-3352`, :cve_nist:`2022-4141`, :cve_nist:`2023-0049`, :cve_nist:`2023-0051`, :cve_nist:`2023-0054`, :cve_nist:`2023-0288`, :cve_nist:`2023-1127`, :cve_nist:`2023-1170`, :cve_nist:`2023-1175`, :cve_nist:`2023-1127`, :cve_nist:`2023-1170`, :cve_nist:`2023-1175`, :cve_nist:`2023-1264`, :cve_nist:`2023-1355`, :cve_nist:`2023-0433`, :cve_nist:`2022-47024`, :cve_nist:`2022-3705`
  298. - xdg-utils: :cve_nist:`2022-4055`
  299. - xserver-xorg: :cve_nist:`2022-3550`, :cve_nist:`2022-3551`, :cve_nist:`2023-1393`, :cve_nist:`2023-0494`, :cve_nist:`2022-3553` (ignored)
  300. Recipe Upgrades in 4.2
  301. ~~~~~~~~~~~~~~~~~~~~~~
  302. - acpid: upgrade 2.0.33 -> 2.0.34
  303. - adwaita-icon-theme: update 42.0 -> 43
  304. - alsa-lib: upgrade 1.2.7.2 -> 1.2.8
  305. - alsa-ucm-conf: upgrade 1.2.7.2 -> 1.2.8
  306. - alsa-utils: upgrade 1.2.7 -> 1.2.8
  307. - apr: update 1.7.0 -> 1.7.2
  308. - apr-util: update 1.6.1 -> 1.6.3
  309. - argp-standalone: replace with a maintained fork
  310. - at-spi2-core: upgrade 2.44.1 -> 2.46.0
  311. - autoconf-archive: upgrade 2022.09.03 -> 2023.02.20
  312. - babeltrace: upgrade 1.5.8 -> 1.5.11
  313. - base-passwd: Update to 3.6.1
  314. - bash: update 5.1.16 -> 5.2.15
  315. - bind: upgrade 9.18.7 -> 9.18.12
  316. - binutils: Upgrade to 2.40 release
  317. - bluez: update 5.65 -> 5.66
  318. - boost-build-native: update 1.80.0 -> 1.81.0
  319. - boost: upgrade 1.80.0 -> 1.81.0
  320. - btrfs-tools: upgrade 5.19.1 -> 6.1.3
  321. - busybox: 1.35.0 -> 1.36.0
  322. - ccache: upgrade 4.6.3 -> 4.7.4
  323. - cmake: update 3.24.0 -> 3.25.2
  324. - cracklib: upgrade to v2.9.10
  325. - curl: upgrade 7.86.0 -> 8.0.1
  326. - dbus: upgrade 1.14.0 -> 1.14.6
  327. - diffoscope: upgrade 221 -> 236
  328. - diffstat: upgrade 1.64 -> 1.65
  329. - diffutils: update 3.8 -> 3.9
  330. - dos2unix: upgrade 7.4.3 -> 7.4.4
  331. - dpkg: update 1.21.9 -> 1.21.21
  332. - dropbear: upgrade 2022.82 -> 2022.83
  333. - dtc: upgrade 1.6.1 -> 1.7.0
  334. - e2fsprogs: upgrade 1.46.5 -> 1.47.0
  335. - ed: upgrade 1.18 -> 1.19
  336. - elfutils: update 0.187 -> 0.188
  337. - ell: upgrade 0.53 -> 0.56
  338. - enchant2: upgrade 2.3.3 -> 2.3.4
  339. - encodings: update 1.0.6 -> 1.0.7
  340. - epiphany: update 42.4 -> 43.1
  341. - ethtool: upgrade 5.19 -> 6.2
  342. - expat: upgrade to 2.5.0
  343. - ffmpeg: upgrade 5.1.1 -> 5.1.2
  344. - file: upgrade 5.43 -> 5.44
  345. - flac: update 1.4.0 -> 1.4.2
  346. - font-alias: update 1.0.4 -> 1.0.5
  347. - fontconfig: upgrade 2.14.0 -> 2.14.2
  348. - font-util: upgrade 1.3.3 -> 1.4.0
  349. - freetype: update 2.12.1 -> 2.13.0
  350. - gawk: update 5.1.1 -> 5.2.1
  351. - gcr3: update 3.40.0 -> 3.41.1
  352. - gcr: rename gcr -> gcr3
  353. - gdb: Upgrade to 13.1
  354. - gdk-pixbuf: upgrade 2.42.9 -> 2.42.10
  355. - gettext: update 0.21 -> 0.21.1
  356. - ghostscript: update 9.56.1 -> 10.0.0
  357. - gi-docgen: upgrade 2022.1 -> 2023.1
  358. - git: upgrade 2.37.3 -> 2.39.2
  359. - glib-2.0: update 2.72.3 -> 2.74.6
  360. - glibc: upgrade to 2.37 release + stable updates
  361. - glib-networking: update 2.72.2 -> 2.74.0
  362. - glslang: upgrade 1.3.236.0 -> 1.3.239.0
  363. - gnu-config: upgrade to latest revision
  364. - gnupg: upgrade 2.3.7 -> 2.4.0
  365. - gnutls: upgrade 3.7.7 -> 3.8.0
  366. - gobject-introspection: upgrade 1.72.0 -> 1.74.0
  367. - go: update 1.19 -> 1.20.1
  368. - grep: update 3.7 -> 3.10
  369. - gsettings-desktop-schemas: upgrade 42.0 -> 43.0
  370. - gstreamer1.0: upgrade 1.20.3 -> 1.22.0
  371. - gtk+3: upgrade 3.24.34 -> 3.24.36
  372. - gtk4: update 4.8.2 -> 4.10.0
  373. - harfbuzz: upgrade 5.1.0 -> 7.1.0
  374. - hdparm: update 9.64 -> 9.65
  375. - help2man: upgrade 1.49.2 -> 1.49.3
  376. - icu: update 71.1 -> 72-1
  377. - ifupdown: upgrade 0.8.37 -> 0.8.41
  378. - igt-gpu-tools: upgrade 1.26 -> 1.27.1
  379. - inetutils: upgrade 2.3 -> 2.4
  380. - init-system-helpers: upgrade 1.64 -> 1.65.2
  381. - iproute2: upgrade 5.19.0 -> 6.2.0
  382. - iptables: update 1.8.8 -> 1.8.9
  383. - iputils: update to 20221126
  384. - iso-codes: upgrade 4.11.0 -> 4.13.0
  385. - jquery: upgrade 3.6.0 -> 3.6.3
  386. - kexec-tools: upgrade 2.0.25 -> 2.0.26
  387. - kmscube: upgrade to latest revision
  388. - libarchive: upgrade 3.6.1 -> 3.6.2
  389. - libbsd: upgrade 0.11.6 -> 0.11.7
  390. - libcap: upgrade 2.65 -> 2.67
  391. - libdnf: update 0.69.0 -> 0.70.0
  392. - libdrm: upgrade 2.4.113 -> 2.4.115
  393. - libedit: upgrade 20210910-3.1 -> 20221030-3.1
  394. - libepoxy: update 1.5.9 -> 1.5.10
  395. - libffi: upgrade 3.4.2 -> 3.4.4
  396. - libfontenc: upgrade 1.1.6 -> 1.1.7
  397. - libgit2: upgrade 1.5.0 -> 1.6.3
  398. - libgpg-error: update 1.45 -> 1.46
  399. - libhandy: update 1.6.3 -> 1.8.1
  400. - libical: upgrade 3.0.14 -> 3.0.16
  401. - libice: update 1.0.10 -> 1.1.1
  402. - libidn2: upgrade 2.3.3 -> 2.3.4
  403. - libinput: upgrade 1.19.4 -> 1.22.1
  404. - libjpeg-turbo: upgrade 2.1.4 -> 2.1.5.1
  405. - libksba: upgrade 1.6.0 -> 1.6.3
  406. - libmicrohttpd: upgrade 0.9.75 -> 0.9.76
  407. - libmodule-build-perl: update 0.4231 -> 0.4232
  408. - libmpc: upgrade 1.2.1 -> 1.3.1
  409. - libnewt: update 0.52.21 -> 0.52.23
  410. - libnotify: upgrade 0.8.1 -> 0.8.2
  411. - libpcap: upgrade 1.10.1 -> 1.10.3
  412. - libpciaccess: update 0.16 -> 0.17
  413. - libpcre2: upgrade 10.40 -> 10.42
  414. - libpipeline: upgrade 1.5.6 -> 1.5.7
  415. - libpng: upgrade 1.6.38 -> 1.6.39
  416. - libpsl: upgrade 0.21.1 -> 0.21.2
  417. - librepo: upgrade 1.14.5 -> 1.15.1
  418. - libsdl2: upgrade 2.24.1 -> 2.26.3
  419. - libsm: 1.2.3 > 1.2.4
  420. - libsndfile1: upgrade 1.1.0 -> 1.2.0
  421. - libsolv: upgrade 0.7.22 -> 0.7.23
  422. - libsoup-2.4: upgrade 2.74.2 -> 2.74.3
  423. - libsoup: upgrade 3.0.7 -> 3.2.2
  424. - libtest-fatal-perl: upgrade 0.016 -> 0.017
  425. - libtest-needs-perl: upgrade 0.002009 -> 0.002010
  426. - libunistring: upgrade 1.0 -> 1.1
  427. - liburcu: upgrade 0.13.2 -> 0.14.0
  428. - liburi-perl: upgrade 5.08 -> 5.17
  429. - libva: upgrade 2.15.0 -> 2.16.0
  430. - libva-utils: upgrade 2.15.0 -> 2.17.1
  431. - libwebp: upgrade 1.2.4 -> 1.3.0
  432. - libwpe: upgrade 1.12.3 -> 1.14.1
  433. - libx11: 1.8.1 -> 1.8.4
  434. - libx11-compose-data: 1.6.8 -> 1.8.4
  435. - libxau: upgrade 1.0.10 -> 1.0.11
  436. - libxcomposite: update 0.4.5 -> 0.4.6
  437. - libxcrypt-compat: upgrade 4.4.30 -> 4.4.33
  438. - libxcrypt: upgrade 4.4.28 -> 4.4.30
  439. - libxdamage: update 1.1.5 -> 1.1.6
  440. - libxdmcp: update 1.1.3 -> 1.1.4
  441. - libxext: update 1.3.4 -> 1.3.5
  442. - libxft: update 2.3.4 -> 2.3.6
  443. - libxft: upgrade 2.3.6 -> 2.3.7
  444. - libxinerama: update 1.1.4 -> 1.1.5
  445. - libxkbcommon: upgrade 1.4.1 -> 1.5.0
  446. - libxkbfile: update 1.1.0 -> 1.1.1
  447. - libxkbfile: upgrade 1.1.1 -> 1.1.2
  448. - libxml2: upgrade 2.9.14 -> 2.10.3
  449. - libxmu: update 1.1.3 -> 1.1.4
  450. - libxpm: update 3.5.13 -> 3.5.15
  451. - libxrandr: update 1.5.2 -> 1.5.3
  452. - libxrender: update 0.9.10 -> 0.9.11
  453. - libxres: update 1.2.1 -> 1.2.2
  454. - libxscrnsaver: update 1.2.3 -> 1.2.4
  455. - libxshmfence: update 1.3 -> 1.3.2
  456. - libxslt: upgrade 1.1.35 -> 1.1.37
  457. - libxtst: update 1.2.3 -> 1.2.4
  458. - libxv: update 1.0.11 -> 1.0.12
  459. - libxxf86vm: update 1.1.4 -> 1.1.5
  460. - lighttpd: upgrade 1.4.66 -> 1.4.69
  461. - linux-firmware: upgrade 20220913 -> 20230210
  462. - linux-libc-headers: bump to 6.1
  463. - linux-yocto/5.15: update genericx86* machines to v5.15.103
  464. - linux-yocto/5.15: update to v5.15.108
  465. - linux-yocto/6.1: update to v6.1.25
  466. - linux-yocto-dev: bump to v6.3
  467. - linux-yocto-rt/5.15: update to -rt59
  468. - linux-yocto-rt/6.1: update to -rt7
  469. - llvm: update 14.0.6 -> 15.0.7
  470. - log4cplus: upgrade 2.0.8 -> 2.1.0
  471. - logrotate: upgrade 3.20.1 -> 3.21.0
  472. - lsof: upgrade 4.95.0 -> 4.98.0
  473. - ltp: upgrade 20220527 -> 20230127
  474. - lttng-modules: upgrade 2.13.4 -> 2.13.9
  475. - lttng-tools: update 2.13.8 -> 2.13.9
  476. - lttng-ust: upgrade 2.13.4 -> 2.13.5
  477. - makedepend: upgrade 1.0.6 -> 1.0.8
  478. - make: update 4.3 -> 4.4.1
  479. - man-db: update 2.10.2 -> 2.11.2
  480. - man-pages: upgrade 5.13 -> 6.03
  481. - matchbox-config-gtk: Update to latest SRCREV
  482. - matchbox-desktop-2: Update 2.2 -> 2.3
  483. - matchbox-panel-2: Update 2.11 -> 2.12
  484. - matchbox-terminal: Update to latest SRCREV
  485. - matchbox-wm: Update 1.2.2 -> 1.2.3
  486. - mc: update 4.8.28 -> 4.8.29
  487. - mesa: update 22.2.0 -> 23.0.0
  488. - meson: upgrade 0.63.2 -> 1.0.1
  489. - mmc-utils: upgrade to latest revision
  490. - mobile-broadband-provider-info: upgrade 20220725 -> 20221107
  491. - mpfr: upgrade 4.1.0 -> 4.2.0
  492. - mpg123: upgrade 1.30.2 -> 1.31.2
  493. - msmtp: upgrade 1.8.22 -> 1.8.23
  494. - mtd-utils: upgrade 2.1.4 -> 2.1.5
  495. - mtools: upgrade 4.0.40 -> 4.0.42
  496. - musl-obstack: Update to 1.2.3
  497. - musl: Upgrade to latest master
  498. - nasm: update 2.15.05 -> 2.16.01
  499. - ncurses: upgrade 6.3+20220423 -> 6.4
  500. - netbase: upgrade 6.3 -> 6.4
  501. - newlib: Upgrade 4.2.0 -> 4.3.0
  502. - nghttp2: upgrade 1.49.0 -> 1.52.0
  503. - numactl: upgrade 2.0.15 -> 2.0.16
  504. - opensbi: Upgrade to 1.2 release
  505. - openssh: upgrade 9.0p1 -> 9.3p1
  506. - openssl: Upgrade 3.0.5 -> 3.1.0
  507. - opkg: upgrade to version 0.6.1
  508. - orc: upgrade 0.4.32 -> 0.4.33
  509. - ovmf: upgrade edk2-stable202205 -> edk2-stable202211
  510. - pango: upgrade 1.50.9 -> 1.50.13
  511. - patchelf: upgrade 0.15.0 -> 0.17.2
  512. - pciutils: upgrade 3.8.0 -> 3.9.0
  513. - piglit: upgrade to latest revision
  514. - pinentry: update 1.2.0 -> 1.2.1
  515. - pixman: upgrade 0.40.0 -> 0.42.2
  516. - pkgconf: upgrade 1.9.3 -> 1.9.4
  517. - popt: update 1.18 -> 1.19
  518. - powertop: upgrade 2.14 -> 2.15
  519. - procps: update 3.3.17 -> 4.0.3
  520. - psmisc: upgrade 23.5 -> 23.6
  521. - puzzles: upgrade to latest revision
  522. - python3-alabaster: upgrade 0.7.12 -> 0.7.13
  523. - python3-attrs: upgrade 22.1.0 -> 22.2.0
  524. - python3-babel: upgrade 2.10.3 -> 2.12.1
  525. - python3-bcrypt: upgrade 3.2.2 -> 4.0.1
  526. - python3-certifi: upgrade 2022.9.14 -> 2022.12.7
  527. - python3-chardet: upgrade 5.0.0 -> 5.1.0
  528. - python3-cryptography: upgrade 38.0.3 -> 39.0.4
  529. - python3-cryptography-vectors: upgrade 37.0.4 -> 39.0.2
  530. - python3-cython: upgrade 0.29.32 -> 0.29.33
  531. - python3-dbusmock: update 0.28.4 -> 0.28.7
  532. - python3-dbus: upgrade 1.2.18 -> 1.3.2
  533. - python3-dtschema: upgrade 2022.8.3 -> 2023.1
  534. - python3-flit-core: upgrade 3.7.1 -> 3.8.0
  535. - python3-gitdb: upgrade 4.0.9 -> 4.0.10
  536. - python3-git: upgrade 3.1.27 -> 3.1.31
  537. - python3-hatch-fancy-pypi-readme: upgrade 22.7.0 -> 22.8.0
  538. - python3-hatchling: upgrade 1.9.0 -> 1.13.0
  539. - python3-hatch-vcs: upgrade 0.2.0 -> 0.3.0
  540. - python3-hypothesis: upgrade 6.54.5 -> 6.68.2
  541. - python3-importlib-metadata: upgrade 4.12.0 -> 6.0.0
  542. - python3-iniconfig: upgrade 1.1.1 -> 2.0.0
  543. - python3-installer: update 0.5.1 -> 0.6.0
  544. - python3-iso8601: upgrade 1.0.2 -> 1.1.0
  545. - python3-jsonschema: upgrade 4.9.1 -> 4.17.3
  546. - python3-lxml: upgrade 4.9.1 -> 4.9.2
  547. - python3-mako: upgrade 1.2.2 -> 1.2.4
  548. - python3-markupsafe: upgrade 2.1.1 -> 2.1.2
  549. - python3-more-itertools: upgrade 8.14.0 -> 9.1.0
  550. - python3-numpy: upgrade 1.23.3 -> 1.24.2
  551. - python3-packaging: upgrade to 23.0
  552. - python3-pathspec: upgrade 0.10.1 -> 0.11.0
  553. - python3-pbr: upgrade 5.10.0 -> 5.11.1
  554. - python3-pip: upgrade 22.2.2 -> 23.0.1
  555. - python3-poetry-core: upgrade 1.0.8 -> 1.5.2
  556. - python3-psutil: upgrade 5.9.2 -> 5.9.4
  557. - python3-pycairo: upgrade 1.21.0 -> 1.23.0
  558. - python3-pycryptodome: upgrade 3.15.0 -> 3.17
  559. - python3-pycryptodomex: upgrade 3.15.0 -> 3.17
  560. - python3-pygments: upgrade 2.13.0 -> 2.14.0
  561. - python3-pyopenssl: upgrade 22.0.0 -> 23.0.0
  562. - python3-pyrsistent: upgrade 0.18.1 -> 0.19.3
  563. - python3-pytest-subtests: upgrade 0.8.0 -> 0.10.0
  564. - python3-pytest: upgrade 7.1.3 -> 7.2.2
  565. - python3-pytz: upgrade 2022.2.1 -> 2022.7.1
  566. - python3-requests: upgrade 2.28.1 -> 2.28.2
  567. - python3-scons: upgrade 4.4.0 -> 4.5.2
  568. - python3-setuptools-rust: upgrade 1.5.1 -> 1.5.2
  569. - python3-setuptools-scm: upgrade 7.0.5 -> 7.1.0
  570. - python3-setuptools: upgrade 65.0.2 -> 67.6.0
  571. - python3-sphinxcontrib-applehelp: update 1.0.2 -> 1.0.4
  572. - python3-sphinxcontrib-htmlhelp: 2.0.0 -> 2.0.1
  573. - python3-sphinx-rtd-theme: upgrade 1.0.0 -> 1.2.0
  574. - python3-sphinx: upgrade 5.1.1 -> 6.1.3
  575. - python3-subunit: upgrade 1.4.0 -> 1.4.2
  576. - python3-testtools: upgrade 2.5.0 -> 2.6.0
  577. - python3-typing-extensions: upgrade 4.3.0 -> 4.5.0
  578. - python3: update 3.10.6 -> 3.11.2
  579. - python3-urllib3: upgrade 1.26.12 -> 1.26.15
  580. - python3-wcwidth: upgrade 0.2.5 -> 0.2.6
  581. - python3-wheel: upgrade 0.37.1 -> 0.40.0
  582. - python3-zipp: upgrade 3.8.1 -> 3.15.0
  583. - qemu: update 7.1.0 -> 7.2.0
  584. - quota: update 4.06 -> 4.09
  585. - readline: update 8.1.2 -> 8.2
  586. - repo: upgrade 2.29.2 -> 2.32
  587. - rgb: update 1.0.6 -> 1.1.0
  588. - rng-tools: upgrade 6.15 -> 6.16
  589. - rsync: update 3.2.5 -> 3.2.7
  590. - rt-tests: update 2.4 -> 2.5
  591. - ruby: update 3.1.2 -> 3.2.1
  592. - rust: update 1.63.0 -> 1.68.1
  593. - rxvt-unicode: upgrade 9.30 -> 9.31
  594. - sed: update 4.8 -> 4.9
  595. - shaderc: upgrade 2022.2 -> 2023.2
  596. - shadow: update 4.12.1 -> 4.13
  597. - socat: upgrade 1.7.4.3 -> 1.7.4.4
  598. - spirv-headers: upgrade 1.3.236.0 -> 1.3.239.0
  599. - spirv-tools: upgrade 1.3.236.0 -> 1.3.239.0
  600. - sqlite3: upgrade 3.39.3 -> 3.41.0
  601. - strace: upgrade 5.19 -> 6.2
  602. - stress-ng: update 0.14.03 -> 0.15.06
  603. - sudo: upgrade 1.9.11p3 -> 1.9.13p3
  604. - swig: update 4.0.2 -> 4.1.1
  605. - sysstat: upgrade 12.6.0 -> 12.6.2
  606. - systemd: update 251.4 -> 253.1
  607. - systemtap: upgrade 4.7 -> 4.8
  608. - taglib: upgrade 1.12 -> 1.13
  609. - tcf-agent: Update to current version
  610. - tcl: update 8.6.11 -> 8.6.13
  611. - texinfo: update 6.8 -> 7.0.2
  612. - tiff: update 4.4.0 -> 4.5.0
  613. - tzdata: update 2022d -> 2023c
  614. - u-boot: upgrade 2022.07 -> 2023.01
  615. - unfs: update 0.9.22 -> 0.10.0
  616. - usbutils: upgrade 014 -> 015
  617. - util-macros: upgrade 1.19.3 -> 1.20.0
  618. - vala: upgrade 0.56.3 -> 0.56.4
  619. - valgrind: update to 3.20.0
  620. - vim: Upgrade 9.0.0598 -> 9.0.1429
  621. - virglrenderer: upgrade 0.10.3 -> 0.10.4
  622. - vte: update 0.68.0 -> 0.72.0
  623. - vulkan-headers: upgrade 1.3.236.0 -> 1.3.239.0
  624. - vulkan-loader: upgrade 1.3.236.0 -> 1.3.239.0
  625. - vulkan-samples: update to latest revision
  626. - vulkan-tools: upgrade 1.3.236.0 -> 1.3.239.0
  627. - vulkan: update 1.3.216.0 -> 1.3.236.0
  628. - wayland-protocols: upgrade 1.26 -> 1.31
  629. - wayland-utils: update 1.0.0 -> 1.1.0
  630. - webkitgtk: update 2.36.7 -> 2.38.5
  631. - weston: update 10.0.2 -> 11.0.1
  632. - wireless-regdb: upgrade 2022.08.12 -> 2023.02.13
  633. - wpebackend-fdo: upgrade 1.12.1 -> 1.14.0
  634. - xcb-util: update 0.4.0 -> 0.4.1
  635. - xcb-util-keysyms: 0.4.0 -> 0.4.1
  636. - xcb-util-renderutil: 0.3.9 -> 0.3.10
  637. - xcb-util-wm: 0.4.1 -> 0.4.2
  638. - xcb-util-image: 0.4.0 -> 0.4.1
  639. - xf86-input-mouse: update 1.9.3 -> 1.9.4
  640. - xf86-input-vmmouse: update 13.1.0 -> 13.2.0
  641. - xf86-video-vesa: update 2.5.0 -> 2.6.0
  642. - xf86-video-vmware: update 13.3.0 -> 13.4.0
  643. - xhost: update 1.0.8 -> 1.0.9
  644. - xinit: update 1.4.1 -> 1.4.2
  645. - xkbcomp: update 1.4.5 -> 1.4.6
  646. - xkeyboard-config: upgrade 2.36 -> 2.38
  647. - xprop: update 1.2.5 -> 1.2.6
  648. - xrandr: upgrade 1.5.1 -> 1.5.2
  649. - xserver-xorg: upgrade 21.1.4 -> 21.1.7
  650. - xset: update 1.2.4 -> 1.2.5
  651. - xvinfo: update 1.1.4 -> 1.1.5
  652. - xwayland: upgrade 22.1.3 -> 22.1.8
  653. - xz: upgrade 5.2.6 -> 5.4.2
  654. - zlib: upgrade 1.2.12 -> 1.2.13
  655. - zstd: upgrade 1.5.2 -> 1.5.4
  656. Contributors to 4.2
  657. ~~~~~~~~~~~~~~~~~~~
  658. Thanks to the following people who contributed to this release:
  659. - Adrian Freihofer
  660. - Ahmad Fatoum
  661. - Alejandro Hernandez Samaniego
  662. - Alexander Kanavin
  663. - Alexandre Belloni
  664. - Alexey Smirnov
  665. - Alexis Lothoré
  666. - Alex Kiernan
  667. - Alex Stewart
  668. - Andrej Valek
  669. - Andrew Geissler
  670. - Anton Antonov
  671. - Antonin Godard
  672. - Archana Polampalli
  673. - Armin Kuster
  674. - Arnout Vandecappelle
  675. - Arturo Buzarra
  676. - Atanas Bunchev
  677. - Benjamin Szőke
  678. - Benoît Mauduit
  679. - Bernhard Rosenkränzer
  680. - Bruce Ashfield
  681. - Caner Altinbasak
  682. - Carlos Alberto Lopez Perez
  683. - Changhyeok Bae
  684. - Changqing Li
  685. - Charlie Johnston
  686. - Chase Qi
  687. - Chee Yang Lee
  688. - Chen Qi
  689. - Chris Elledge
  690. - Christian Eggers
  691. - Christoph Lauer
  692. - Chuck Wolber
  693. - Ciaran Courtney
  694. - Claus Stovgaard
  695. - Clément Péron
  696. - Daniel Ammann
  697. - David Bagonyi
  698. - Denys Dmytriyenko
  699. - Denys Zagorui
  700. - Diego Sueiro
  701. - Dmitry Baryshkov
  702. - Ed Tanous
  703. - Enguerrand de Ribaucourt
  704. - Enrico Jörns
  705. - Enrico Scholz
  706. - Etienne Cordonnier
  707. - Fabio Estevam
  708. - Fabre Sébastien
  709. - Fawzi KHABER
  710. - Federico Pellegrin
  711. - Frank de Brabander
  712. - Frederic Martinsons
  713. - Geoffrey GIRY
  714. - George Kelly
  715. - Harald Seiler
  716. - He Zhe
  717. - Hitendra Prajapati
  718. - Jagadeesh Krishnanjanappa
  719. - James Raphael Tiovalen
  720. - Jan Kircher
  721. - Jan Luebbe
  722. - Jan-Simon Moeller
  723. - Javier Tia
  724. - Jeremy Puhlman
  725. - Jermain Horsman
  726. - Jialing Zhang
  727. - Joel Stanley
  728. - Joe Slater
  729. - Johan Korsnes
  730. - Jon Mason
  731. - Jordan Crouse
  732. - Jose Quaresma
  733. - Joshua Watt
  734. - Justin Bronder
  735. - Kai Kang
  736. - Kasper Revsbech
  737. - Keiya Nobuta
  738. - Kenfe-Mickael Laventure
  739. - Kevin Hao
  740. - Khem Raj
  741. - Konrad Weihmann
  742. - Lei Maohui
  743. - Leon Anavi
  744. - Liam Beguin
  745. - Louis Rannou
  746. - Luca Boccassi
  747. - Luca Ceresoli
  748. - Luis Martins
  749. - Maanya Goenka
  750. - Marek Vasut
  751. - Mark Asselstine
  752. - Mark Hatle
  753. - Markus Volk
  754. - Marta Rybczynska
  755. - Martin Jansa
  756. - Martin Larsson
  757. - Mateusz Marciniec
  758. - Mathieu Dubois-Briand
  759. - Mauro Queiros
  760. - Maxim Uvarov
  761. - Michael Halstead
  762. - Michael Opdenacker
  763. - Mike Crowe
  764. - Mikko Rapeli
  765. - Ming Liu
  766. - Mingli Yu
  767. - Narpat Mali
  768. - Nathan Rossi
  769. - Niko Mauno
  770. - Ola x Nilsson
  771. - Oliver Lang
  772. - Ovidiu Panait
  773. - Pablo Saavedra
  774. - Patrick Williams
  775. - Paul Eggleton
  776. - Paulo Neves
  777. - Pavel Zhukov
  778. - Pawel Zalewski
  779. - Pedro Baptista
  780. - Peter Bergin
  781. - Peter Kjellerstedt
  782. - Peter Marko
  783. - Petr Kubizňák
  784. - Petr Vorel
  785. - pgowda
  786. - Piotr Łobacz
  787. - Quentin Schulz
  788. - Randy MacLeod
  789. - Ranjitsinh Rathod
  790. - Ravineet Singh
  791. - Ravula Adhitya Siddartha
  792. - Richard Elberger
  793. - Richard Leitner
  794. - Richard Purdie
  795. - Robert Andersson
  796. - Robert Joslyn
  797. - Robert Yang
  798. - Romuald JEANNE
  799. - Ross Burton
  800. - Ryan Eatmon
  801. - Sakib Sajal
  802. - Sandeep Gundlupet Raju
  803. - Saul Wold
  804. - Sean Anderson
  805. - Sergei Zhmylev
  806. - Siddharth Doshi
  807. - Soumya
  808. - Sudip Mukherjee
  809. - Sundeep KOKKONDA
  810. - Teoh Jay Shen
  811. - Thomas De Schampheleire
  812. - Thomas Perrot
  813. - Thomas Roos
  814. - Tim Orling
  815. - Tobias Hagelborn
  816. - Tom Hochstein
  817. - Trevor Woerner
  818. - Ulrich Ölmann
  819. - Vincent Davis Jr
  820. - Vivek Kumbhar
  821. - Vyacheslav Yurkov
  822. - Wang Mingyu
  823. - Wentao Zhang
  824. - Xiangyu Chen
  825. - Xiaotian Wu
  826. - Yan Xinkuan
  827. - Yash Shinde
  828. - Yi Zhao
  829. - Yoann Congal
  830. - Yureka Lilian
  831. - Zang Ruochen
  832. - Zheng Qiu
  833. - Zheng Ruoqin
  834. - Zoltan Boszormenyi
  835. - 张忠山
  836. Repositories / Downloads for Yocto-4.2
  837. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  838. poky
  839. - Repository Location: :yocto_git:`/poky`
  840. - Branch: :yocto_git:`mickledore </poky/log/?h=mickledore>`
  841. - Tag: :yocto_git:`yocto-4.2 </poky/log/?h=yocto-4.2>`
  842. - Git Revision: :yocto_git:`21790e71d55f417f27cd51fae9dd47549758d4a0 </poky/commit/?id=21790e71d55f417f27cd51fae9dd47549758d4a0>`
  843. - Release Artefact: poky-21790e71d55f417f27cd51fae9dd47549758d4a0
  844. - sha: 38606076765d912deec84e523403709ef1249122197e61454ae08818e60f83c2
  845. - Download Locations:
  846. http://downloads.yoctoproject.org/releases/yocto/yocto-4.2/poky-21790e71d55f417f27cd51fae9dd47549758d4a0.tar.bz2
  847. http://mirrors.kernel.org/yocto/yocto/yocto-4.2/poky-21790e71d55f417f27cd51fae9dd47549758d4a0.tar.bz2
  848. openembedded-core
  849. - Repository Location: :oe_git:`/openembedded-core`
  850. - Branch: :oe_git:`mickledore </openembedded-core/log/?h=mickledore>`
  851. - Tag: :oe_git:`yocto-4.2 </openembedded-core/log/?h=yocto-4.2>`
  852. - Git Revision: :oe_git:`c57d1a561db563ed2f521bbac5fc12d4ac8e11a7 </openembedded-core/commit/?id=c57d1a561db563ed2f521bbac5fc12d4ac8e11a7>`
  853. - Release Artefact: oecore-c57d1a561db563ed2f521bbac5fc12d4ac8e11a7
  854. - sha: e8cdd870492017be7e7b74b8c2fb73ae6771b2d2125b2aa1f0e65d0689f96af8
  855. - Download Locations:
  856. http://downloads.yoctoproject.org/releases/yocto/yocto-4.2/oecore-c57d1a561db563ed2f521bbac5fc12d4ac8e11a7.tar.bz2
  857. http://mirrors.kernel.org/yocto/yocto/yocto-4.2/oecore-c57d1a561db563ed2f521bbac5fc12d4ac8e11a7.tar.bz2
  858. meta-mingw
  859. - Repository Location: :yocto_git:`/meta-mingw`
  860. - Branch: :yocto_git:`mickledore </meta-mingw/log/?h=mickledore>`
  861. - Tag: :yocto_git:`yocto-4.2 </meta-mingw/log/?h=yocto-4.2>`
  862. - Git Revision: :yocto_git:`250617ffa524c082b848487359b9d045703d59c2 </meta-mingw/commit/?id=250617ffa524c082b848487359b9d045703d59c2>`
  863. - Release Artefact: meta-mingw-250617ffa524c082b848487359b9d045703d59c2
  864. - sha: 873a97dfd5ed6fb26e1f6a2ddc2c0c9d7a7b3c7f5018588e912294618775c323
  865. - Download Locations:
  866. http://downloads.yoctoproject.org/releases/yocto/yocto-4.2/meta-mingw-250617ffa524c082b848487359b9d045703d59c2.tar.bz2
  867. http://mirrors.kernel.org/yocto/yocto/yocto-4.2/meta-mingw-250617ffa524c082b848487359b9d045703d59c2.tar.bz2
  868. bitbake
  869. - Repository Location: :oe_git:`/bitbake`
  870. - Branch: :oe_git:`2.4 </bitbake/log/?h=2.4>`
  871. - Tag: :oe_git:`yocto-4.2 </bitbake/log/?h=yocto-4.2>`
  872. - Git Revision: :oe_git:`d97d62e2cbe4bae17f0886f3b4759e8f9ba6d38c </bitbake/commit/?id=d97d62e2cbe4bae17f0886f3b4759e8f9ba6d38c>`
  873. - Release Artefact: bitbake-d97d62e2cbe4bae17f0886f3b4759e8f9ba6d38c
  874. - sha: 5edcb97cb545011226b778355bb840ebcc790552d4a885a0d83178153697ba7a
  875. - Download Locations:
  876. http://downloads.yoctoproject.org/releases/yocto/yocto-4.2/bitbake-d97d62e2cbe4bae17f0886f3b4759e8f9ba6d38c.tar.bz2
  877. http://mirrors.kernel.org/yocto/yocto/yocto-4.2/bitbake-d97d62e2cbe4bae17f0886f3b4759e8f9ba6d38c.tar.bz2
  878. yocto-docs
  879. - Repository Location: :yocto_git:`/yocto-docs`
  880. - Branch: :yocto_git:`mickledore </yocto-docs/log/?h=mickledore>`
  881. - Tag: :yocto_git:`yocto-4.2 </yocto-docs/log/?h=yocto-4.2>`
  882. - Git Revision: :yocto_git:`4d6807e34adf5d92d9b6e5852736443a867c78fa </yocto-docs/commit/?id=4d6807e34adf5d92d9b6e5852736443a867c78fa>`