release-notes-4.3.rst 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965
  1. .. SPDX-License-Identifier: CC-BY-SA-2.0-UK
  2. Release notes for 4.3 (nanbield)
  3. --------------------------------
  4. New Features / Enhancements in 4.3
  5. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  6. - Linux kernel 6.5 and 6.1, gcc 13, glibc 2.38, LLVM 17, and over 300 other recipe upgrades
  7. - The autobuilder's shared-state artefacts are now available over the `jsDelivr
  8. <https://jsdelivr.com>`__ Content Delivery Network (CDN).
  9. See :term:`SSTATE_MIRRORS`.
  10. - New variables:
  11. - :term:`CVE_CHECK_STATUSMAP`, :term:`CVE_STATUS`, :term:`CVE_STATUS_GROUPS`,
  12. replacing the deprecated :term:`CVE_CHECK_IGNORE`.
  13. - :term:`FILE_LAYERNAME`: bitbake now sets this to the name of the layer
  14. containing the recipe
  15. - :term:`FIT_ADDRESS_CELLS` and :term:`UBOOT_FIT_ADDRESS_CELLS`.
  16. See details below.
  17. - :term:`KERNEL_DTBDEST`: directory where to install DTB files.
  18. - :term:`KERNEL_DTBVENDORED`: whether to keep vendor subdirectories.
  19. - :term:`KERNEL_LOCALVERSION`: to add a string to the kernel version
  20. information.
  21. - :term:`KERNEL_STRIP`: to specify the command to strip the kernel binary.
  22. - :term:`LICENSE_FLAGS_DETAILS`: add extra details about a recipe license
  23. in case it is not allowed by :term:`LICENSE_FLAGS_ACCEPTED`.
  24. - :term:`MESON_TARGET`: to compile a specific Meson target instead of the
  25. default ones.
  26. - :term:`OEQA_REPRODUCIBLE_TEST_PACKAGE`: to restrict package managers used
  27. in reproducibility testing.
  28. - Layername functionality available through overrides
  29. Code can now know which layer a recipe is coming from through the newly added :term:`FILE_LAYERNAME`
  30. variable. This has been added as an override of the form ``layer-<layername>``. In particular,
  31. this means QA checks can now be layer specific, for example::
  32. ERROR_QA:layer-core:append = " patch-status"
  33. This will enable the ``patch-status`` QA check for the core layer.
  34. - Architecture-specific enhancements:
  35. - RISCV support is now enabled in LLVM 17.
  36. - Loongarch support in the :ref:`ref-classes-linuxloader` class and
  37. ``core-image-minimal-initramfs`` image.
  38. - The ``arch-armv8`` and ``arch-armv9`` architectures are now given
  39. `Scalable Vector Extension (SVE)
  40. <https://developer.arm.com/documentation/100891/0612/sve-overview/introducing-sve>`__
  41. based tune options. Commits:
  42. :yocto_git:`1 </poky/commit/?id=e4be03be5be62e367a40437a389121ef97d6cff3>`,
  43. :yocto_git:`2 </poky/commit/?id=8cd5d264af4c346730531cb98ae945ab862dbd69>`.
  44. - Many changes to support 64-bit ``time_t`` on 32-bit architectures
  45. - Kernel-related enhancements:
  46. - The default kernel is the current stable (6.5), and there is also support
  47. for the latest long-term release (6.1).
  48. - The list of fixed kernel CVEs is updated regularly using data from
  49. `linuxkernelcves.com <https://linuxkernelcves.com>`__.
  50. - A ``showconfig`` task was added to the :ref:`ref-classes-cml1` class, to
  51. easily examine the final generated ``.config`` file.
  52. - New core recipes:
  53. - `appstream <https://github.com/ximion/appstream>`__: a collaborative effort
  54. for making machine-readable software metadata easily available
  55. (from meta-oe)
  56. - `cargo-c-native <https://crates.io/crates/cargo-c>`__: cargo applet to build
  57. and install C-ABI compatible dynamic and static libraries
  58. - `libadwaita <https://gitlab.gnome.org/GNOME/libadwaita>`__: Building blocks
  59. for modern GNOME applications (from meta-gnome)
  60. - `libtraceevent <https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/>`__:
  61. API to access the kernel tracefs directory (from meta-openembedded)
  62. - `libxmlb <https://github.com/hughsie/libxmlb>`__: A library to help create
  63. and query binary XML blobs (from meta-oe)
  64. - ``musl-legacy-error``: glibc ``error()`` API implementation still needed
  65. by a few packages.
  66. - `python3-beartype <https://beartype.readthedocs.io>`__, unbearably fast
  67. runtime type checking in pure Python.
  68. - `python3-booleanpy <https://github.com/bastikr/boolean.py>`__: Define boolean
  69. algebras, create and parse boolean expressions and create custom boolean DSL
  70. (from meta-python)
  71. - `python3-calver <https://github.com/di/calver>`__: Setuptools extension for
  72. CalVer package versions
  73. - `python3-click <http://click.pocoo.org/>`__: A simple wrapper around optparse
  74. for powerful command line utilities (from meta-python)
  75. - ``python3-dtc``: Python Library for the Device Tree Compiler (from
  76. meta-virtualization)
  77. - `python3-isodate <https://github.com/gweis/isodate/>`__: ISO 8601 date/time
  78. parser (from meta-python)
  79. - `python3-license-expression <https://github.com/nexB/license-expression>`__:
  80. Utility library to parse, compare, simplify and normalize license expressions
  81. (from meta-python)
  82. - `python3-rdflib <https://github.com/RDFLib/rdflib>`__: a pure Python package
  83. for working with RDF (from meta-python)
  84. - `python3-spdx-tools <https://github.com/spdx/tools-python>`__,
  85. tools for SPDX validation and conversion.
  86. - `python3-trove-classifiers <https://github.com/pypa/trove-classifiers>`__:
  87. Canonical source for classifiers on PyPI (pypi.org)
  88. - `python3-uritools <https://github.com/tkem/uritools/>`__, replacement for
  89. the ``urllib.parse`` module.
  90. - `python3-xmltodict <https://github.com/martinblech/xmltodict>`__: Makes
  91. working with XML feel like you are working with JSON (from meta-python)
  92. - `ttyrun <https://github.com/ibm-s390-linux/s390-tools>`__, starts
  93. ``getty`` programs only when a terminal exists, preventing respawns
  94. through the ``init`` program. This enabled removing the
  95. ``SERIAL_CONSOLES_CHECK`` variable.
  96. - ``vulkan-validation-layers``: Khronos official validation layers to assist in
  97. verifying that applications correctly use the
  98. `Vulkan API <https://www.khronos.org/vulkan>`__.
  99. - `xcb-util-cursor <http://xcb.freedesktop.org/XcbUtil/>`__: XCB port of
  100. libXcursor (from meta-oe)
  101. - QEMU / ``runqemu`` enhancements:
  102. - QEMU has been upgraded to version 8.1
  103. - Many updates to the ``runqemu`` command.
  104. - The ``qemu-system-native`` recipe is now built with PNG support, which could be
  105. useful to grab screenshots for error reporting purposes.
  106. - Rust improvements:
  107. - Rust has been upgraded to version 1.70
  108. - New ``ptest-cargo`` class was added to allow Cargo based recipes to easily add ptests
  109. - New :ref:`ref-classes-cargo_c` class was added to allow recipes to make Rust code
  110. available to C and C++ programs. See
  111. ``meta-selftest/recipes-devtools/rust/rust-c-lib-example_git.bb`` for an example.
  112. - wic Image Creator enhancements:
  113. - ``bootimg-efi``: if ``fixed-size`` is set then use that for mkdosfs
  114. - ``bootimg-efi``: stop hardcoding VMA offsets, as required by systemd-boot v254
  115. (and dracut/ukify)
  116. - ``bootimg-pcbios``: use kernel name from :term:`KERNEL_IMAGETYPE` instead of
  117. hardcoding ``vmlinuz``
  118. - Added new ``gpt-hybrid`` option to ``ptable_format`` (formatting a disk with a hybrid
  119. MBR and GPT partition scheme)
  120. - Use ``part_name`` in default imager when defined
  121. - Added ``--hidden`` argument to default imager to avoid MS Windows prompting to
  122. format partition after flashing to a USB stick/SD card
  123. - FIT image related improvements:
  124. - New :term:`FIT_ADDRESS_CELLS` and :term:`UBOOT_FIT_ADDRESS_CELLS` variables allowing
  125. to specify 64 bit addresses, typically for loading U-Boot.
  126. - Added ``compatible`` line to config section (with value from dtb) to allow bootloaders
  127. to select the best matching configuration.
  128. - SDK-related improvements:
  129. - Extended the following recipes to ``nativesdk``: ``libwebp``, ``python3-ply``
  130. - Testing:
  131. - The :ref:`ref-classes-insane` class now adds an :ref:`unimplemented-ptest
  132. <qa-check-unimplemented-ptest>` infrastructure to detect package sources
  133. with unit tests but no implemented ptests in the recipe.
  134. - A new task to perform recipe-wide QA checks was added: ``do_recipe_qa``.
  135. - New build-time checks for set :term:`SUMMARY`, :term:`HOMEPAGE`, and
  136. :term:`RECIPE_MAINTAINER` fields was added, and enabled for the core
  137. recipes.
  138. - The ``parselogs`` runtime test was rewritten. Notably it no longer uses
  139. regular expressions, which may mean custom patterns need updating.
  140. - A self-test to validate that the :term:`SPDX` manifests generated by
  141. image builds are valid was added.
  142. - The ``QEMU_USE_SLIRP`` variable has been replaced by adding ``slirp`` to
  143. ``TEST_RUNQEMUPARAMS``.
  144. - Utility script changes:
  145. - New ``scripts/patchtest`` utility to check patches to the
  146. OpenEmbedded-Core project. See
  147. :ref:`contributor-guide/submit-changes:validating patches with patchtest`
  148. for details.
  149. - ``scripts/bblock`` was added, allowing the user to lock/unlock specific
  150. recipes from being built. This makes it possibly to work on the
  151. ``python3`` recipe without causing ``python3-native`` to rebuild.
  152. - BitBake improvements:
  153. - A fetcher for the Google Cloud Platform (``gs://``) was added.
  154. - The BitBake Cooker log now contains notes when the caches are
  155. invalidated which is useful for memory resident BitBake debugging.
  156. - BitBake no longer watches files with :wikipedia:`inotify <inotify>` for
  157. changes, as under load this can lead to races causing build instability.
  158. - Toaster's dependencies were upgraded to current releases, specifically
  159. to Django 4.2.
  160. - Packaging changes:
  161. - :term:`FILES` now accepts a ``**`` wildcard, which matches zero or more
  162. subdirectories.
  163. - The X server packagegroup now defaults to using the ``modesetting`` X
  164. driver, which obsoletes the ``fbdev`` driver.
  165. - If a recipe uses :term:`LICENSE_FLAGS` and the licenses are not accepted,
  166. it can set a custom message with :term:`LICENSE_FLAGS_DETAILS` to be
  167. displayed to the users.
  168. - Recipes that fetch specific revisions no longer need to explicitly add
  169. :term:`SRCPV` to :term:`PV` as BitBake will now automatically add the
  170. revision information to :term:`PKGV` if needed (as long as "+" is still
  171. present in the :term:`PKGV` value, which is set from :term:`PV` by
  172. default).
  173. - The default :term:`PR` values in many recipes have been removed.
  174. - Security improvements:
  175. - Most repositories now include a :yocto_git:`SECURITY.md
  176. </poky/tree/SECURITY.md>` file with hints for security researchers
  177. and other parties who might report potential security vulnerabilities.
  178. - Prominent documentation updates:
  179. - New :doc:`../contributor-guide/index` document.
  180. - New :doc:`../dev-manual/security-subjects` chapter in the Development
  181. Tasks Manual.
  182. - Long overdue documentation for the :ref:`ref-classes-devicetree` class.
  183. - New :ref:`summary about available init systems
  184. <dev-manual/init-manager:summary>`.
  185. - New documentation for the :ref:`ref-classes-uboot-sign` class and
  186. its variables and for the :ref:`ref-classes-kernel-devicetree` class
  187. variables.
  188. - Miscellaneous changes:
  189. - Selecting systemd via :term:`INIT_MANAGER` now adds ``usrmerge`` to
  190. :term:`DISTRO_FEATURES` as current versions of systemd now require
  191. merged ``/usr``.
  192. - Generation of :term:`SPDX` manifests is now enabled by default.
  193. - Git based recipes in OE-Core which used the ``git`` protocol have been
  194. changed to use ``https`` where possible, as it is typically faster and
  195. more reliable.
  196. - The ``os-release`` recipe added a ``CPE_NAME`` to the fields provided, with the
  197. default being populated from :term:`DISTRO`.
  198. - The ``psplash`` recipe now accepts a PNG format image through
  199. :term:`SPLASH_IMAGES`, instead of a harder to generate and modify
  200. ``.h`` file.
  201. - The ; character is no longer needed to separate functions specified in
  202. :term:`IMAGE_POSTPROCESS_COMMAND`, :term:`IMAGE_PREPROCESS_COMMAND`,
  203. :term:`POPULATE_SDK_POST_HOST_COMMAND`, :term:`ROOTFS_POSTINSTALL_COMMAND`
  204. etc. (If any are present they will be replaced with spaces, so existing
  205. metadata does not yet need to be changed.)
  206. - In the ``Upstream-Status`` field in a patch header, "Accepted" is no longer
  207. a valid value since it is logically the same as "Backport". Change any
  208. values you have (particularly in patches applied through bbappends for core
  209. recipes, since they will be validated as indicated above).
  210. Known Issues in 4.3
  211. ~~~~~~~~~~~~~~~~~~~
  212. - N/A
  213. Recipe License changes in 4.3
  214. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  215. The following corrections have been made to the :term:`LICENSE` values set by recipes:
  216. - ``glib-networking``: make :term:`LICENSE` more accurate (``LGPL-2.1`` -> ``LGPL-2.1-or-later``) and add an exception for linking to OpenSSL if it is enabled (``openssl`` is in :term:`PACKAGECONFIG`)
  217. - ``libbsd``: set per-package licensing to clarify that BSD-4-Clause code is only in the ``-doc`` package
  218. - ``openssh``: BSD-4-Clause code has been removed completely from the codebase as part of 9.4p1 update - previously in the kirkstone release, ``BSD-4-Clause`` was removed from the :term:`LICENSE` value in our recipe, however some BSD-4-Clause code actually still remained upstream until 9.4p1.
  219. - ``python3-sphinx``: remove ``BSD-3-Clause`` from :term:`LICENSE` - BSD-3-Clause code was removed as part of the python3-sphinx 7.0.1 release (see `this upstream commit <https://github.com/sphinx-doc/sphinx/commit/a7f5d91c29d6f377b9fe7e926965c6f9d3e7b802>`__)
  220. Security Fixes in 4.3
  221. ~~~~~~~~~~~~~~~~~~~~~
  222. - bind: :cve_nist:`2023-2911`, :cve_nist:`2023-2828`, :cve_nist:`2023-3341`, :cve_nist:`2023-4236`
  223. - binutils: :cve_nist:`2023-1972`
  224. - connman: :cve_nist:`2023-28488`
  225. - cups: :cve_nist:`2023-32324`, :cve_nist:`2023-34241`, :cve_nist:`2023-4504`
  226. - dbus: :cve_nist:`2023-34969`
  227. - dmidecode: :cve_nist:`2023-30630`
  228. - dropbear: :cve_nist:`2023-36328`
  229. - erofs-utils: :cve_nist:`2023-33551`, :cve_nist:`2023-33552`
  230. - gcc: :cve_nist:`2023-4039`
  231. - ghostscript: :cve_nist:`2023-28879`, :cve_nist:`2023-36664`, :cve_nist:`2023-38559;` ignore :cve_nist:`2023-38560`
  232. - git: :cve_nist:`2023-25652`, :cve_nist:`2023-29007`
  233. - glibc: :cve_nist:`2023-4527`, :cve_nist:`2023-4806`
  234. - go: :cve_nist:`2023-24537`, :cve_nist:`2023-39325`
  235. - gstreamer: :cve_nist:`2023-40475`, :cve_nist:`2023-40476`
  236. - inetutils: :cve_nist:`2023-40303`
  237. - libarchive: ignore :cve_nist:`2023-30571`
  238. - librsvg: :cve_nist:`2023-38633`
  239. - libwebp: :cve_nist:`2023-1999`, :cve_nist:`2023-4863`
  240. - libx11: :cve_nist:`2023-3138`, :cve_nist:`2023-43785`, :cve_nist:`2023-43786`, :cve_nist:`2023-43787`
  241. - libxml2: :cve_nist:`2023-28484`, :cve_nist:`2023-29469;` ignore disputed :cve_nist:`2023-45322`
  242. - libxpm: :cve_nist:`2023-43788`, :cve_nist:`2023-43789`, :cve_nist:`2022-44617`
  243. - linux: update CVE exclusions
  244. - ncurses: :cve_nist:`2023-29491`
  245. - nghttp2: :cve_nist:`2023-44487`
  246. - ninja: ignore :cve_nist:`2021-4336`, wrong ninja
  247. - openssh: :cve_nist:`2023-38408`
  248. - openssl: :cve_nist:`2023-2650`, :cve_nist:`2023-1255`, :cve_nist:`2023-0466`, :cve_nist:`2023-0465`, :cve_nist:`2023-0464`, :cve_nist:`2023-3817`, :cve_nist:`2023-3446`, :cve_nist:`2023-2975`, :cve_nist:`2023-4807`
  249. - perl: :cve_nist:`2023-31484`, :cve_nist:`2023-31486`
  250. - pixman: ignore :cve_nist:`2023-37769`
  251. - procps: :cve_nist:`2023-4016`
  252. - python3-git: :cve_nist:`2023-41040`
  253. - python3: ignore :cve_nist:`2023-36632`
  254. - python3-urllib3: :cve_nist:`2023-43804`
  255. - qemu: :cve_nist:`2023-40360`, :cve_nist:`2023-42467;` ignore :cve_nist:`2023-0664` (Windows-specific), ignore :cve_nist:`2023-2680` (RHEL specific)
  256. - screen: :cve_nist:`2023-24626`
  257. - shadow: :cve_nist:`2023-29383`
  258. - sqlite3: ignore :cve_nist:`2023-36191`
  259. - sysstat: :cve_nist:`2023-33204`
  260. - tiff: :cve_nist:`2022-4645`, :cve_nist:`2023-2731`, :cve_nist:`2023-26965`, :cve_nist:`2023-40745`, :cve_nist:`2023-41175`
  261. - vim: :cve_nist:`2023-2426`, :cve_nist:`2023-2609`, :cve_nist:`2023-2610`, :cve_nist:`2023-3896`, :cve_nist:`2023-5441`, :cve_nist:`2023-5535`
  262. - zlib: ignore :cve_nist:`2023-45853`
  263. Recipe Upgrades in 4.3
  264. ~~~~~~~~~~~~~~~~~~~~~~
  265. - acpica: upgrade 20220331 -> 20230628
  266. - adwaita-icon-theme: 43 -> 45.0
  267. - alsa-lib: upgrade 1.2.8 -> 1.2.10
  268. - alsa-ucm-conf: upgrade 1.2.8 -> 1.2.10
  269. - alsa-utils: upgrade 1.2.8 -> 1.2.10
  270. - apr: upgrade 1.7.2 -> 1.7.4
  271. - apt: Upgrade to v2.6.0
  272. - at-spi2-core: update 2.46.0 -> 2.50.0
  273. - autoconf: Upgrade to 2.72c
  274. - babeltrace2: upgrade 2.0.4 -> 2.0.5
  275. - bind: upgrade 9.18.12 -> 9.18.19
  276. - binutils: Upgrade to 2.41 release
  277. - bluez5: upgrade 5.66 -> 5.69
  278. - boost: upgrade 1.81.0 -> 1.83.0
  279. - btrfs-tools: upgrade 6.1.3 -> 6.5.1
  280. - busybox: 1.36.0 -> 1.36.1
  281. - ccache: upgrade 4.7.4 -> 4.8.3
  282. - cmake: upgrade to 3.27.5
  283. - connman: update 1.41 -> 1.42
  284. - coreutils: upgrade 9.1 -> 9.4
  285. - cpio: upgrade to 2.14
  286. - cracklib: upgrade 2.9.10 -> 2.9.11
  287. - createrepo-c: update 0.20.1 -> 1.0.0
  288. - cryptodev: update to 1.13 + latest git
  289. - cups: upgrade to 2.4.6
  290. - curl: upgrade 8.0.1 -> 8.4.0
  291. - dbus: upgrade 1.14.6 -> 1.14.10
  292. - debianutils: upgrade 5.8 -> 5.13
  293. - dhcpcd: upgrade to 10.0.2
  294. - diffoscope: upgrade 236 -> 249
  295. - diffutils: update 3.9 -> 3.10
  296. - dmidecode: upgrade to 3.5
  297. - dnf: upgrade 4.14.0 -> 4.17.0
  298. - dos2unix: upgrade 7.4.4 -> 7.5.1
  299. - dpkg: upgrade to v1.22.0
  300. - efivar: Upgrade to tip of trunk
  301. - elfutils: upgrade 0.188 -> 0.189
  302. - ell: upgrade 0.56 -> 0.58
  303. - enchant2: upgrade 2.3.4 -> 2.6.1
  304. - epiphany: upgrade 43.1 -> 44.6
  305. - erofs-utils: update 1.5 -> 1.6
  306. - ethtool: upgrade 6.2 -> 6.5
  307. - eudev: Upgrade 3.2.11 -> 3.2.12
  308. - ffmpeg: update 5.1.2 -> 6.0
  309. - file: upgrade 5.44 -> 5.45
  310. - flac: Upgrade 1.4.2 -> 1.4.3
  311. - font-util: upgrade 1.4.0 -> 1.4.1
  312. - freetype: upgrade 2.13.0 -> 2.13.2
  313. - fribidi: upgrade 1.0.12 -> 1.0.13
  314. - gawk: upgrade 5.2.1 -> 5.2.2
  315. - gcc: upgrade to 13.2
  316. - gcompat: Upgrade to 1.1.0
  317. - gcr: update 4.0.0 -> 4.1.0
  318. - gdb: upgrade 13.1 -> 13.2
  319. - gettext: upgrade 0.21.1 -> 0.22
  320. - ghostscript: upgrade to 10.02.0
  321. - git: upgrade to 2.42.0
  322. - glib-2.0: upgrade 2.74.6 -> 2.78.0
  323. - glibc: upgrade to 2.38 + stable updates
  324. - glib-networking: upgrade 2.74.0 -> 2.76.1
  325. - glslang: upgrade to 1.3.243
  326. - gmp: upgrade 6.2.1 -> 6.3.0
  327. - gnu-efi: upgrade 3.0.15 -> 3.0.17
  328. - gnupg: upgrade 2.4.0 -> 2.4.3
  329. - gnutls: update 3.8.0 -> 3.8.1
  330. - gobject-introspection: upgrade 1.74.0 -> 1.78.1
  331. - go-helloworld: Upgrade to tip of trunk
  332. - go: update 1.20.1 -> 1.20.10
  333. - gpgme: update 1.18.0 -> 1.22.0
  334. - grep: upgrade 3.10 -> 3.11
  335. - groff: update 1.22.4 -> 1.23.0
  336. - gsettings-desktop-schemas: upgrade 43.0 -> 44.0
  337. - gstreamer1.0: upgrade 1.22.0 -> 1.22.5
  338. - gstreamer: upgrade 1.22.5 -> 1.22.6
  339. - gtk+3: upgrade 3.24.36 -> 3.24.38
  340. - gtk4: update 4.10.0 -> 4.12.3
  341. - gzip: update 1.12 -> 1.13
  342. - harfbuzz: upgrade 7.1.0 -> 8.2.1
  343. - icu: upgrade 72-1 -> 73-2
  344. - igt-gpu-tools: update 1.27.1 -> 1.28
  345. - iproute2: upgrade 6.2.0 -> 6.5.0
  346. - iso-codes: upgrade 4.13.0 -> 4.15.0
  347. - jquery: upgrade 3.6.3 -> 3.7.1
  348. - json-c: upgrade 0.16 -> 0.17
  349. - kbd: upgrade 2.5.1 -> 2.6.3
  350. - kea: upgrade to v2.4.0
  351. - kexec-tools: upgrade 2.0.26 -> 2.0.27
  352. - kmscube: upgrade to latest revision
  353. - less: update 608 -> 643
  354. - libadwaita: upgrade 1.3.3 -> 1.4.0
  355. - libarchive: upgrade 3.6.2 -> 3.7.2
  356. - libassuan: upgrade 2.5.5 -> 2.5.6
  357. - libatomic-ops: update 7.6.14 -> 7.8.0
  358. - libcap: upgrade 2.67 -> 2.69
  359. - libcgroup: update 3.0.0 -> 3.1.0
  360. - libconvert-asn1-perl: upgrade 0.33 -> 0.34
  361. - libdnf: update 0.70.1 -> 0.70.1
  362. - libdrm: upgrade 2.4.115 -> 2.4.116
  363. - libedit: upgrade 20221030-3.1 -> 20230828-3.1
  364. - libevdev: upgrade 1.13.0 -> 1.13.1
  365. - libgcrypt: update 1.10.1 -> 1.10.2
  366. - libgit2: upgrade 1.6.3 -> 1.7.1
  367. - libglu: update 9.0.2 -> 9.0.3
  368. - libgpg-error: update 1.46 -> 1.47
  369. - libgudev: upgrade 237 -> 238
  370. - libhandy: upgrade 1.8.1 -> 1.8.2
  371. - libinput: upgrade to 1.24.0
  372. - libjpeg-turbo: upgrade to 3.0.0
  373. - libksba: upgrade 1.6.3 -> 1.6.4
  374. - libmd: upgrade 1.0.4 -> 1.1.0
  375. - libmicrohttpd: upgrade 0.9.76 -> 0.9.77
  376. - libmodule-build-perl: upgrade 0.4232 -> 0.4234
  377. - libmodulemd: upgrade 2.14.0 -> 2.15.0
  378. - libnl: upgrade 3.7.0 -> 3.8.0
  379. - libnss-nis: upgrade 3.1 -> 3.2
  380. - libpam: update 1.5.2 -> 1.5.3
  381. - libpcap: upgrade 1.10.3 -> 1.10.4
  382. - libpng: upgrade 1.6.39 -> 1.6.40
  383. - libportal: upgrade 0.6 -> 0.7.1
  384. - libproxy: update 0.4.18 -> 0.5.3
  385. - libpthread-stubs: update 0.4 -> 0.5
  386. - librepo: upgrade 1.15.1 -> 1.16.0
  387. - librsvf: update 2.54.5 -> 2.56.0
  388. - librsvg: update 2.56.0 -> 2.56.3
  389. - libsdl2: upgrade 2.26.3 -> 2.28.3
  390. - libsecret: upgrade 0.20.5 -> 0.21.1
  391. - libsndfile1: upgrade 1.2.0 -> 1.2.2
  392. - libsolv: upgrade 0.7.23 -> 0.7.25
  393. - libsoup: upgrade 3.2.2 -> 3.4.2
  394. - libssh2: update 1.10.0 -> 1.11.0
  395. - libtraceevent: upgrade 1.7.2 -> 1.7.3
  396. - libubootenv: upgrade 0.3.3 -> 0.3.4
  397. - liburi-perl: update 5.17 -> 5.21
  398. - libuv: upgrade 1.44.2 -> 1.46.0
  399. - libva: update 2.16 -> 2.19.0
  400. - libva-utils: update 2.19.0 -> 2.20.0
  401. - libwebp: upgrade 1.3.0 -> 1.3.2
  402. - libx11: upgrade 1.8.4 -> 1.8.7
  403. - libxcb: upgrade 1.15 -> 1.16
  404. - libxcrypt: upgrade 4.4.33 -> 4.4.36
  405. - libxfixes: Upgrade to v6.0.1
  406. - libxft: upgrade 2.3.7 -> 2.3.8
  407. - libxi: upgrade to v1.8.1
  408. - libxml2: upgrade 2.10.3 -> 2.11.5
  409. - libxpm: upgrade 3.5.15 -> 3.5.17
  410. - libxslt: upgrade 1.1.37 -> 1.1.38
  411. - libxt: Upgrade to v1.3.0
  412. - lighttpd: upgrade 1.4.69 -> 1.4.71
  413. - linux-firmware: upgrade 20230210 -> 20230804
  414. - linux-libc-headers: uprev to v6.5
  415. - linux-yocto/6.1: update to v6.1.57
  416. - linux-yocto-dev: update to v6.6-rcX
  417. - linux-yocto: introduce 6.5 reference kernel recipes
  418. - llvm: Upgrade to 17.0.2
  419. - ltp: upgrade 20230127 -> 20230516
  420. - lttng-modules: Upgrade 2.13.9 -> 2.13.10
  421. - lttng-tools: Upgrade 2.13.9 -> 2.13.11
  422. - lttng-ust: upgrade 2.13.5 -> 2.13.6
  423. - lua: update 5.4.4 -> 5.4.6
  424. - man-pages: upgrade 6.03 -> 6.05.01
  425. - mc: upgrade 4.8.29 -> 4.8.30
  426. - mesa: upgrade 23.0.0 -> 23.2.1
  427. - meson: upgrade 1.0.1 -> 1.2.2
  428. - mmc-utils: upgrade to latest revision
  429. - mobile-broadband-provider-info: upgrade 20221107 -> 20230416
  430. - mpfr: upgrade 4.2.0 -> 4.2.1
  431. - mpg123: upgrade 1.31.2 -> 1.31.3
  432. - msmtp: upgrade 1.8.23 -> 1.8.24
  433. - mtd-utils: upgrade 2.1.5 -> 2.1.6
  434. - mtools: upgrade 4.0.42 -> 4.0.43
  435. - musl: update to latest master
  436. - neard: upgrade 0.18 -> 0.19
  437. - nettle: upgrade 3.8.1 -> 3.9.1
  438. - nfs-utils: upgrade 2.6.2 -> 2.6.3
  439. - nghttp2: upgrade 1.52.0 -> 1.57.0
  440. - ofono: upgrade 2.0 -> 2.1
  441. - openssh: upgrade to 9.5p1
  442. - openssl: upgrade 3.1.0 -> 3.1.3
  443. - opkg: upgrade 0.6.1 -> 0.6.2
  444. - opkg-utils: upgrade 0.5.0 -> 0.6.2
  445. - orc: upgrade 0.4.33 -> 0.4.34
  446. - ovmf: update 202211 -> 202305
  447. - ovmf: update edk2-stable202305 -> edk2-stable202308
  448. - p11-kit: upgrade 0.24.1 -> 0.25.0
  449. - pango: upgrade 1.50.13 -> 1.51.0
  450. - parted: upgrade 3.5 -> 3.6
  451. - patchelf: Upgrade 0.17.2 -> 0.18.0
  452. - pciutils: upgrade 3.9.0 -> 3.10.0
  453. - perlcross: update 1.4 -> 1.5
  454. - perl: update 5.36.0 -> 5.38.0
  455. - piglit: upgrade to latest revision
  456. - pigz: upgrade 2.7 -> 2.8
  457. - pkgconf: upgrade 1.9.4 -> 2.0.3
  458. - ppp: upgrade 2.4.9 -> 2.5.0
  459. - procps: update 4.0.3 -> 4.0.4
  460. - puzzles: upgrade to latest revision
  461. - python3-attrs: upgrade 22.2.0 -> 23.1.0
  462. - python3-build: upgrade to 1.0.3
  463. - python3-certifi: upgrade 2022.12.7 -> 2023.7.22
  464. - python3-chardet: upgrade 5.1.0 -> 5.2.0
  465. - python3-cryptography{-vectors}: upgrade 39.0.2 -> 41.0.4
  466. - python3-cython: upgrade 0.29.33 -> 0.29.36
  467. - python3-dbusmock: upgrade 0.28.7 -> 0.29.1
  468. - python3-docutils: upgrade 0.19 -> 0.20.1
  469. - python3-dtc: upgrade 1.6.1 -> 1.7.0
  470. - python3-dtschema: upgrade 2023.1 -> 2023.7
  471. - python3-editables: upgrade 0.3 -> 0.5
  472. - python3-flit-core: upgrade 3.8.0 -> 3.9.0
  473. - python3-git: upgrade 3.1.31 -> 3.1.36
  474. - python3-hatch-fancy-pypi-readme: upgrade 22.8.0 -> 23.1.0
  475. - python3-hatchling: upgrade 1.13.0 -> 1.18.0
  476. - python3-hypothesis: upgrade 6.68.2 -> 6.86.2
  477. - python3-importlib-metadata: upgrade 6.0.0 -> 6.8.0
  478. - python3-installer: upgrade 0.6.0 -> 0.7.0
  479. - python3-iso8601: upgrade 1.1.0 -> 2.0.0
  480. - python3-jsonpointer: upgrade to 2.4
  481. - python3-libarchive-c: upgrade 4.0 -> 5.0
  482. - python3-lxml: upgrade 4.9.2 -> 4.9.3
  483. - python3-markdown: upgrade 3.4.1 -> 3.4.4
  484. - python3-markupsafe: upgrade 2.1.2 -> 2.1.3
  485. - python3-more-itertools: upgrade 9.1.0 -> 10.1.0
  486. - python3-numpy: upgrade 1.24.2 -> 1.26.0
  487. - python3-packaging: upgrade 23.0 -> 23.1
  488. - python3-pathspec: upgrade 0.11.0 -> 0.11.2
  489. - python3-pip: upgrade 23.0.1 -> 23.2.1
  490. - python3-pluggy: upgrade 1.0.0 -> 1.3.0
  491. - python3-poetry-core: upgrade 1.5.2 -> 1.7.0
  492. - python3-psutil: upgrade 5.9.4 -> 5.9.5
  493. - python3-pyasn1: upgrade 0.4.8 -> 0.5.0
  494. - python3-pycairo: upgrade 1.23.0 -> 1.24.0
  495. - python3-pycryptodome: upgrade 3.17 -> 3.19.0
  496. - python3-pycryptodomex: upgrade 3.17 -> 3.19.0
  497. - python3-pyelftools: upgrade 0.29 -> 0.30
  498. - python3-pygments: upgrade 2.14.0 -> 2.16.1
  499. - python3-pygobject: upgrade 3.42.2 -> 3.46.0
  500. - python3-pyopenssl: upgrade 23.0.0 -> 23.2.0
  501. - python3-pyparsing: upgrade 3.0.9 -> 3.1.1
  502. - python3-pytest-subtests: upgrade 0.10.0 -> 0.11.0
  503. - python3-pytest: upgrade 7.2.2 -> 7.4.2
  504. - python3-pytz: upgrade 2022.7.1 -> 2023.3
  505. - python3-pyyaml: upgrade 6.0 -> 6.0.1
  506. - python3-requests: Upgrade to 2.31.0
  507. - python3-ruamel-yaml: upgrade 0.17.21 -> 0.17.32
  508. - python3-setuptools-rust: upgrade 1.5.2 -> 1.7.0
  509. - python3-setuptools: upgrade 67.6.0 -> 68.2.2
  510. - python3-smmap: upgrade 5.0.0 -> 6.0.0
  511. - python3-sphinx-rtd-theme: upgrade 1.2.0 -> 1.3.0
  512. - python3-sphinx: upgrade 6.1.3 -> 7.2.6
  513. - python3-trove-classifiers: upgrade 2023.4.29 -> 2023.9.19
  514. - python3-typing-extensions: upgrade 4.5.0 -> 4.8.0
  515. - python3: upgrade 3.11.2 -> 3.11.5
  516. - python3-urllib3: upgrade 1.26.15 -> 2.0.6
  517. - python3-webcolors: upgrade 1.12 -> 1.13
  518. - python3-wheel: upgrade 0.40.0 -> 0.41.2
  519. - python3-zipp: upgrade 3.15.0 -> 3.17.0
  520. - qemu: Upgrade 7.2.0 -> 8.1.0
  521. - re2c: upgrade 3.0 -> 3.1
  522. - repo: upgrade 2.32 -> 2.36.1
  523. - rpcsvc-proto: Upgrade to 1.4.4
  524. - rpm2cpio.sh: update to the last 4.x version
  525. - rpm: update 4.18.0 -> 4.18.1
  526. - ruby: upgrade 3.2.1 -> 3.2.2
  527. - rust: Upgrade 1.68.1 -> 1.70.0
  528. - screen: update 4.9.0 -> 4.9.1
  529. - seatd: upgrade 0.7.0 -> 0.8.0
  530. - serf: upgrade 1.3.9 -> 1.3.10
  531. - shaderc: upgrade 2023.2 -> 2023.6
  532. - spirv-headers: upgrade 1.3.239.0 -> 1.3.243.0
  533. - spirv-tools: upgrade 1.3.239.0 -> 1.3.243.0
  534. - sqlite3: upgrade 3.41.0 -> 3.43.1
  535. - squashfs-tools: upgrade 4.5.1 -> 4.6.1
  536. - sstatesig: Update to match bitbake changes to runtaskdeps
  537. - strace: upgrade 6.2 -> 6.5
  538. - stress-ng: upgrade 0.15.06 -> 0.16.05
  539. - sudo: update 1.9.13p3 -> 1.9.14p3
  540. - sysfsutils: update 2.1.0 -> 2.1.1
  541. - sysklogd: upgrade 2.4.4 -> 2.5.2
  542. - sysstat: update 12.6.2 -> 12.7.4
  543. - systemd: upgrade 253.1 -> 254.4
  544. - systemtap: upgrade 4.8 -> 4.9
  545. - taglib: upgrade 1.13 -> 1.13.1
  546. - tar: upgrade 1.34 -> 1.35
  547. - tcf-agent: Update to 1.8.0 release
  548. - texinfo: upgrade 7.0.2 -> 7.0.3
  549. - tiff: upgrade to 4.6.0
  550. - u-boot: Upgrade to 2023.10
  551. - util-linux: upgrade 2.38.1 -> 2.39.2
  552. - vala: upgrade 0.56.4 -> 0.56.13
  553. - valgrind: update 3.20.0 -> 3.21.0
  554. - vim: upgrade 9.0.1429 -> 9.0.2048
  555. - vte: upgrade 0.72.0 -> 0.72.2
  556. - vulkan-headers: upgrade to 1.3.243
  557. - vulkan-loader: upgrade to 1.3.243
  558. - vulkan-samples: update to latest SHA
  559. - vulkan-tools: upgrade to 1.3.243
  560. - vulkan: upgrade 1.3.243.0 -> 1.3.261.1
  561. - waffle: upgrade 1.7.0 -> 1.7.2
  562. - wayland-protocols: upgrade 1.31 -> 1.32
  563. - wayland: upgrade 1.21.0 -> 1.22.0
  564. - wayland-utils: upgrade 1.1.0 -> 1.2.0
  565. - webkitgtk: update 2.38.5 -> 2.40.5
  566. - weston: update 11.0.1 -> 12.0.2
  567. - wget: upgrade 1.21.3 -> 1.21.4
  568. - wireless-regdb: upgrade 2023.02.13 -> 2023.09.01
  569. - wpebackend-fdo: upgrade 1.14.0 -> 1.14.2
  570. - xcb-proto: upgrade 1.15.2 -> 1.16.0
  571. - xdpyinfo: upgrade 1.3.3 -> 1.3.4
  572. - xeyes: upgrade 1.2.0 -> 1.3.0
  573. - xf86-input-libinput: upgrade 1.2.1 -> 1.4.0
  574. - xf86-input-mouse: upgrade 1.9.4 -> 1.9.5
  575. - xinput: upgrade to v1.6.4
  576. - xkeyboard-config: upgrade 2.38 -> 2.39
  577. - xorgproto: upgrade 2022.2 -> 2023.2
  578. - xserver-xorg: upgrade 21.1.7 -> 21.1.8
  579. - xtrans: update 1.4.0 -> 1.5.0
  580. - xwayland: upgrade 22.1.8 -> 23.2.1
  581. - xwininfo: upgrade to v1.1.6
  582. - xxhash: upgrade 0.8.1 -> 0.8.2
  583. - xz: upgrade 5.4.2 -> 5.4.4
  584. - zlib: upgrade 1.2.13 -> 1.3
  585. - zstd: upgrade 1.5.4 -> 1.5.5
  586. Contributors to 4.3
  587. ~~~~~~~~~~~~~~~~~~~
  588. Thanks to the following people who contributed to this release:
  589. - Adrian Freihofer
  590. - Alassane Yattara
  591. - Alberto Pianon
  592. - Alberto Planas
  593. - Alejandro Hernandez Samaniego
  594. - Alexander Kanavin
  595. - Alexandre Belloni
  596. - Alexis Lothoré
  597. - Alex Kiernan
  598. - Andreas Cord-Landwehr
  599. - André Draszik
  600. - Andrej Valek
  601. - Andrew Jeffery
  602. - Andrey Zhizhikin
  603. - Angelo Ribeiro
  604. - Antoine Lubineau
  605. - Antonin Godard
  606. - Anuj Mittal
  607. - Archana Polampalli
  608. - Armin Kuster
  609. - Arne Schwerdt
  610. - Arno Baumfalk
  611. - Arslan Ahmad
  612. - Bartosz Golaszewski
  613. - BELHADJ SALEM Talel
  614. - BELOUARGA Mohamed
  615. - Benjamin Bara
  616. - Benjamin Bouvier
  617. - Bergin, Peter
  618. - Bruce Ashfield
  619. - Changhyeok Bae
  620. - Changqing Li
  621. - Charles-Antoine Couret
  622. - Charlie Wu
  623. - Chen Qi
  624. - Chi Xu
  625. - Chris Laplante
  626. - Christopher Larson
  627. - Daniel Ammann
  628. - Daniel McGregor
  629. - Daniel Semkowicz
  630. - David Reyna
  631. - Deepthi Hemraj
  632. - Denis OSTERLAND-HEIM
  633. - Denys Dmytriyenko
  634. - Derek Straka
  635. - Dit Kozmaj
  636. - Dmitry Baryshkov
  637. - Ed Beroset
  638. - Eero Aaltonen
  639. - Eilís 'pidge' Ní Fhlannagáin
  640. - Emil Ekmečić
  641. - Emil Kronborg Andersen
  642. - Enrico Jörns
  643. - Enrico Scholz
  644. - Etienne Cordonnier
  645. - Fabien Mahot
  646. - Fabio Estevam
  647. - Fahad Arslan
  648. - Frank WOLFF
  649. - Frederic Martinsons
  650. - Frieder Paape
  651. - Frieder Schrempf
  652. - Geoff Parker
  653. - Hannu Lounento
  654. - Ian Ray
  655. - Insu Park
  656. - Jaeyoon Jung
  657. - Jamin Lin
  658. - Jan Garcia
  659. - Jan Vermaete
  660. - Jasper Orschulko
  661. - Jean-Marie Lemetayer
  662. - Jérémy Rosen
  663. - Jermain Horsman
  664. - Jialing Zhang
  665. - Joel Stanley
  666. - Joe Slater
  667. - Johannes Schrimpf
  668. - Jon Mason
  669. - Jörg Sommer
  670. - Jose Quaresma
  671. - Joshua Watt
  672. - Julien Stephan
  673. - Kai Kang
  674. - Khem Raj
  675. - Kyle Russell
  676. - Lee Chee Yang
  677. - Lei Maohui
  678. - Leon Anavi
  679. - Lorenzo Arena
  680. - Louis Rannou
  681. - Luan Rafael Carneiro
  682. - Luca Boccassi
  683. - Luca Ceresoli
  684. - Marc Ferland
  685. - Marcus Flyckt
  686. - Marek Vasut
  687. - Mark Asselstine
  688. - Mark Hatle
  689. - Markus Niebel
  690. - Markus Volk
  691. - Marlon Rodriguez Garcia
  692. - Marta Rybczynska
  693. - Martijn de Gouw
  694. - Martin Jansa
  695. - Martin Siegumfeldt
  696. - Matthias Schnelte
  697. - Mauro Queiros
  698. - Max Krummenacher
  699. - Michael Halstead
  700. - Michael Opdenacker
  701. - Mickael RAMILISON
  702. - Mikko Rapeli
  703. - Ming Liu
  704. - Mingli Yu
  705. - Narpat Mali
  706. - Natasha Bailey
  707. - Nikhil R
  708. - Ninad Palsule
  709. - Ola x Nilsson
  710. - Oleksandr Hnatiuk
  711. - Otavio Salvador
  712. - Ovidiu Panait
  713. - Pascal Bach
  714. - Patrick Williams
  715. - Paul Eggleton
  716. - Paul Gortmaker
  717. - Paulo Neves
  718. - Pavel Zhukov
  719. - Pawan Badganchi
  720. - Peter Bergin
  721. - Peter Hoyes
  722. - Peter Kjellerstedt
  723. - Peter Marko
  724. - Peter Suti
  725. - Petr Gotthard
  726. - Petr Kubizňák
  727. - Piotr Łobacz
  728. - Poonam Jadhav
  729. - Qiu Tingting
  730. - Quentin Schulz
  731. - Randolph Sapp
  732. - Randy MacLeod
  733. - Ranjitsinh Rathod
  734. - Rasmus Villemoes
  735. - Remi Peuvergne
  736. - Richard Purdie
  737. - Riyaz Khan
  738. - Robert Joslyn
  739. - Robert P. J. Day
  740. - Robert Yang
  741. - Roland Hieber
  742. - Ross Burton
  743. - Ryan Eatmon
  744. - Sakib Sajal
  745. - Samantha Jalabert
  746. - Sanjay Chitroda
  747. - Sean Nyekjaer
  748. - Sergei Zhmylev
  749. - Siddharth Doshi
  750. - Soumya Sambu
  751. - Staffan Rydén
  752. - Stefano Babic
  753. - Stefan Tauner
  754. - Stéphane Veyret
  755. - Stephan Wurm
  756. - Sudip Mukherjee
  757. - Sundeep KOKKONDA
  758. - Svend Meyland Nicolaisen
  759. - Tan Wen Yan
  760. - Thomas Roos
  761. - Tim Orling
  762. - Tom Hochstein
  763. - Tom Isaacson
  764. - Trevor Gamblin
  765. - Ulrich Ölmann
  766. - Victor Kamensky
  767. - Vincent Davis Jr
  768. - Virendra Thakur
  769. - Wang Mingyu
  770. - Xiangyu Chen
  771. - Yang Xu
  772. - Yash Shinde
  773. - Yi Zhao
  774. - Yoann Congal
  775. - Yogita Urade
  776. - Yuta Hayama
  777. - Zang Ruochen
  778. - Zhixiong Chi
  779. Repositories / Downloads for Yocto-4.3
  780. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  781. poky
  782. - Repository Location: :yocto_git:`/poky`
  783. - Branch: :yocto_git:`nanbield </poky/log/?h=nanbield>`
  784. - Tag: :yocto_git:`yocto-4.3 </poky/log/?h=yocto-4.3>`
  785. - Git Revision: :yocto_git:`15b576c4101231d248fda7ae0824e1780e1a8901 </poky/commit/?id=15b576c4101231d248fda7ae0824e1780e1a8901>`
  786. - Release Artefact: poky-15b576c4101231d248fda7ae0824e1780e1a8901
  787. - sha: 6b0ef7914d15db057f3efdf091b169a7361c74aac0abcfa717ef55d1a0adf74c
  788. - Download Locations:
  789. http://downloads.yoctoproject.org/releases/yocto/yocto-4.3/poky-15b576c4101231d248fda7ae0824e1780e1a8901.tar.bz2
  790. http://mirrors.kernel.org/yocto/yocto/yocto-4.3/poky-15b576c4101231d248fda7ae0824e1780e1a8901.tar.bz2
  791. openembedded-core
  792. - Repository Location: :oe_git:`/openembedded-core`
  793. - Branch: :oe_git:`nanbield </openembedded-core/log/?h=nanbield>`
  794. - Tag: :oe_git:`yocto-4.3 </openembedded-core/log/?h=yocto-4.3>`
  795. - Git Revision: :oe_git:`4c261f8cbdf0c7196a74daad041d04eb093015f3 </openembedded-core/commit/?id=4c261f8cbdf0c7196a74daad041d04eb093015f3>`
  796. - Release Artefact: oecore-4c261f8cbdf0c7196a74daad041d04eb093015f3
  797. - sha: c9e6ac75d7848ce8844cb29c98659dd8f83b3de13b916124dff76abe034e6a5c
  798. - Download Locations:
  799. http://downloads.yoctoproject.org/releases/yocto/yocto-4.3/oecore-4c261f8cbdf0c7196a74daad041d04eb093015f3.tar.bz2
  800. http://mirrors.kernel.org/yocto/yocto/yocto-4.3/oecore-4c261f8cbdf0c7196a74daad041d04eb093015f3.tar.bz2
  801. meta-mingw
  802. - Repository Location: :yocto_git:`/meta-mingw`
  803. - Branch: :yocto_git:`nanbield </meta-mingw/log/?h=nanbield>`
  804. - Tag: :yocto_git:`yocto-4.3 </meta-mingw/log/?h=yocto-4.3>`
  805. - Git Revision: :yocto_git:`65ef95a74f6ae815f63f636ed53e140a26a014ce </meta-mingw/commit/?id=65ef95a74f6ae815f63f636ed53e140a26a014ce>`
  806. - Release Artefact: meta-mingw-65ef95a74f6ae815f63f636ed53e140a26a014ce
  807. - sha: fb2bf806941a00a1be6349c074379b63a76490bcf0f3b740d96d1aeeefa12286
  808. - Download Locations:
  809. http://downloads.yoctoproject.org/releases/yocto/yocto-4.3/meta-mingw-65ef95a74f6ae815f63f636ed53e140a26a014ce.tar.bz2
  810. http://mirrors.kernel.org/yocto/yocto/yocto-4.3/meta-mingw-65ef95a74f6ae815f63f636ed53e140a26a014ce.tar.bz2
  811. bitbake
  812. - Repository Location: :oe_git:`/bitbake`
  813. - Branch: :oe_git:`2.6 </bitbake/log/?h=2.6>`
  814. - Tag: :oe_git:`yocto-4.3 </bitbake/log/?h=yocto-4.3>`
  815. - Git Revision: :oe_git:`5419a8473d6d4cd1d01537de68ad8d72cf5be0b2 </bitbake/commit/?id=5419a8473d6d4cd1d01537de68ad8d72cf5be0b2>`
  816. - Release Artefact: bitbake-5419a8473d6d4cd1d01537de68ad8d72cf5be0b2
  817. - sha: e5dab4b3345d91307860803e2ad73b2fcffa9d17dd3fde0e013ca0ebea0d05ca
  818. - Download Locations:
  819. http://downloads.yoctoproject.org/releases/yocto/yocto-4.3/bitbake-5419a8473d6d4cd1d01537de68ad8d72cf5be0b2.tar.bz2
  820. http://mirrors.kernel.org/yocto/yocto/yocto-4.3/bitbake-5419a8473d6d4cd1d01537de68ad8d72cf5be0b2.tar.bz2
  821. yocto-docs
  822. - Repository Location: :yocto_git:`/yocto-docs`
  823. - Branch: :yocto_git:`nanbield </yocto-docs/log/?h=nanbield>`
  824. - Tag: :yocto_git:`yocto-4.3 </yocto-docs/log/?h=yocto-4.3>`
  825. - Git Revision: :yocto_git:`ceb1812e63b9fac062f886c2a1dde23137c0e1ed </yocto-docs/commit/?id=ceb1812e63b9fac062f886c2a1dde23137c0e1ed>`