release-notes-4.0.rst 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. .. SPDX-License-Identifier: CC-BY-SA-2.0-UK
  2. Release notes for 4.0 (kirkstone)
  3. ---------------------------------
  4. This is a Long Term Support release, published in April 2022, and supported at least for two years (April 2024).
  5. New Features / Enhancements in 4.0
  6. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  7. - Linux kernel 5.15, glibc 2.35 and ~300 other recipe upgrades
  8. - Reproducibility: this release fixes the reproducibility issues with
  9. ``rust-llvm`` and ``golang``. Recipes in OpenEmbedded-Core are now fully
  10. reproducible. Functionality previously in the optional "reproducible"
  11. class has been merged into the :ref:`ref-classes-base` class.
  12. - Network access is now disabled by default for tasks other than where it is expected to ensure build integrity (where host kernel supports it)
  13. - The Yocto Project now allows you to reuse the Shared State cache from
  14. its autobuilder. If the network connection between our server and your
  15. machine is faster than you would build recipes from source, you can
  16. try to speed up your builds by using such Shared State and Hash
  17. Equivalence by setting::
  18. BB_SIGNATURE_HANDLER = "OEEquivHash"
  19. BB_HASHSERVE = "auto"
  20. BB_HASHSERVE_UPSTREAM = "hashserv.yoctoproject.org:8686"
  21. SSTATE_MIRRORS ?= "file://.* https://sstate.yoctoproject.org/all/PATH;downloadfilename=PATH"
  22. - The Python package build process is now based on `wheels <https://pythonwheels.com/>`__
  23. in line with the upstream direction.
  24. - New :ref:`ref-classes-overlayfs` and :ref:`ref-classes-overlayfs-etc` classes and
  25. ``overlayroot`` support in the :term:`Initramfs` framework to make it easier to
  26. overlay read-only filesystems (for example) with
  27. :wikipedia:`OverlayFS <OverlayFS>`.
  28. - Inclusive language adjustments to some variable names - see the
  29. :ref:`4.0 migration guide <migration-4.0-inclusive-language>` for details.
  30. - New recipes:
  31. - ``buildtools-docs-tarball``
  32. - ``libptytty``
  33. - ``libxcvt``
  34. - ``lua``
  35. - ``nghttp2``
  36. - ``python3-alabaster``
  37. - ``python3-asn1crypto``
  38. - ``python3-babel``
  39. - ``python3-bcrypt``
  40. - ``python3-certifi``
  41. - ``python3-cffi``
  42. - ``python3-chardet``
  43. - ``python3-cryptography``
  44. - ``python3-cryptography-vectors``
  45. - ``python3-dtschema``
  46. - ``python3-flit-core``
  47. - ``python3-idna``
  48. - ``python3-imagesize``
  49. - ``python3-installer``
  50. - ``python3-iso8601``
  51. - ``python3-jsonpointer``
  52. - ``python3-jsonschema``
  53. - ``python3-ndg-httpsclient``
  54. - ``python3-ply``
  55. - ``python3-poetry-core``
  56. - ``python3-pretend``
  57. - ``python3-psutil``
  58. - ``python3-pyasn1``
  59. - ``python3-pycparser``
  60. - ``python3-pyopenssl``
  61. - ``python3-pyrsistent``
  62. - ``python3-pysocks``
  63. - ``python3-pytest-runner``
  64. - ``python3-pytest-subtests``
  65. - ``python3-pytz``
  66. - ``python3-requests``
  67. - ``python3-rfc3339-validator``
  68. - ``python3-rfc3986-validator``
  69. - ``python3-rfc3987``
  70. - ``python3-ruamel-yaml``
  71. - ``python3-semantic-version``
  72. - ``python3-setuptools-rust-native``
  73. - ``python3-snowballstemmer``
  74. - ``python3-sphinx``
  75. - ``python3-sphinxcontrib-applehelp``
  76. - ``python3-sphinxcontrib-devhelp``
  77. - ``python3-sphinxcontrib-htmlhelp``
  78. - ``python3-sphinxcontrib-jsmath``
  79. - ``python3-sphinxcontrib-qthelp``
  80. - ``python3-sphinxcontrib-serializinghtml``
  81. - ``python3-sphinx-rtd-theme``
  82. - ``python3-strict-rfc3339``
  83. - ``python3-tomli``
  84. - ``python3-typing-extensions``
  85. - ``python3-urllib3``
  86. - ``python3-vcversioner``
  87. - ``python3-webcolors``
  88. - ``python3-wheel``
  89. - ``repo``
  90. - ``seatd``
  91. - Extended recipes to ``native``: ``wayland``, ``wayland-protocols``
  92. - Shared state (sstate) improvements:
  93. - Switched to :wikipedia:`ZStandard (zstd) <Zstd>` instead
  94. of Gzip, for better performance.
  95. - Allow validation of sstate signatures against a list of keys
  96. - Improved error messages and exception handling
  97. - BitBake enhancements:
  98. - Fetcher enhancements:
  99. - New :ref:`bitbake-user-manual/bitbake-user-manual-fetching:crate fetcher (\`\`crate://\`\`)` for Rust packages
  100. - Added striplevel support to unpack
  101. - git: Add a warning asking users to set a branch in git urls
  102. - git: Allow git fetcher to support subdir param
  103. - git: canonicalize ids in generated tarballs
  104. - git: stop generated tarballs from leaking info
  105. - npm: Put all downloaded files in the npm2 directory
  106. - npmsw: Add support for duplicate dependencies without url
  107. - npmsw: Add support for github prefix in npm shrinkwrap version
  108. - ssh: now supports checkstatus, allows : in URLs (both required for use with sstate) and no longer requires username
  109. - wget: add redirectauth parameter
  110. - wget: add 30s timeout for checkstatus calls
  111. - Show warnings for append/prepend/remove operators combined with +=/.=
  112. - Add bb.warnonce() and bb.erroronce() log methods
  113. - Improved setscene task display
  114. - Show elapsed time also for tasks with progress bars
  115. - Improved cleanup on forced shutdown (either because of errors or Ctrl+C)
  116. - contrib: Add Dockerfile for building PR service container
  117. - Change file format of siginfo files to use zstd compressed json
  118. - Display active tasks when printing keep-alive message to help debugging
  119. - Architecture-specific enhancements:
  120. - ARM:
  121. - tune-cortexa72: Enable the crc extension by default for cortexa72
  122. - qemuarm64: Add tiny ktype to qemuarm64 bsp
  123. - armv9a/tune: Add the support for the Neoverse N2 core
  124. - arch-armv8-5a.inc: Add tune include for armv8.5a
  125. - grub-efi: Add xen_boot support when 'xen' is in :term:`DISTRO_FEATURES` for aarch64
  126. - tune-cortexa73: Introduce cortexa73-crypto tune
  127. - libacpi: Build libacpi also for 'aarch64' machines
  128. - core-image-tiny-initramfs: Mark recipe as 32 bit ARM compatible
  129. - PowerPC:
  130. - weston-init: Use pixman rendering for qemuppc64
  131. - rust: add support for big endian 64-bit PowerPC
  132. - rust: Add snapshot checksums for powerpc64le
  133. - RISC-V:
  134. - libunwind: Enable for rv64
  135. - systemtap: Enable for riscv64
  136. - linux-yocto-dev: add qemuriscv32
  137. - packagegroup-core-tools-profile: Enable systemtap for riscv64
  138. - qemuriscv: Use virtio-tablet-pci for mouse
  139. - x86:
  140. - kernel-yocto: conditionally enable stack protection checking on x86-64
  141. - Kernel-related enhancements:
  142. - Allow :term:`Initramfs` to be built from a separate multiconfig
  143. - Make kernel-base recommend kernel-image, not depend (allowing images containing kernel modules without kernel image)
  144. - linux-yocto: split vtpm for more granular inclusion
  145. - linux-yocto: cfg/debug: add configs for kcsan
  146. - linux-yocto: cfg: add kcov feature fragment
  147. - linux-yocto: export pkgconfig variables to devshell
  148. - linux-yocto-dev: use versioned branch as default
  149. - New :term:`KERNEL_DEBUG_TIMESTAMPS` variable (to replace removed ``BUILD_REPRODUCIBLE_BINARIES`` for the kernel)
  150. - Introduce python3-dtschema-wrapper in preparation for mandatory schema checking on dtb files in 5.16
  151. - Allow disabling kernel artifact symlink creation
  152. - Allow changing default .bin kernel artifact extension
  153. - FIT image related enhancements:
  154. - New ``FIT_SUPPORTED_INITRAMFS_FSTYPES`` variable to allow extending :term:`Initramfs` image types to look for
  155. - New ``FIT_CONF_PREFIX`` variable to allow overriding FIT configuration prefix
  156. - Use 'bbnote' for better logging
  157. - New :term:`PACKAGECONFIG` options in ``curl``, ``dtc``, ``epiphany``, ``git``, ``git``, ``gstreamer1.0-plugins-bad``, ``linux-yocto-dev``, ``kmod``, ``mesa``, ``piglit``, ``qemu``, ``rpm``, ``systemd``, ``webkitgtk``, ``weston-init``
  158. - ptest enhancements in ``findutils``, ``lttng-tools``, ``openssl``, ``gawk``, ``strace``, ``lttng-tools``, ``valgrind``, ``perl``, ``libxml-parser-perl``, ``openssh``, ``python3-cryptography``, ``popt``
  159. - Sysroot dependencies have been further optimised
  160. - Significant effort to upstream / rationalise patches across a variety of recipes
  161. - Allow the creation of block devices on top of UBI volumes
  162. - archiver: new ARCHIVER_MODE[compression] to set tarball compression, and switch default to xz
  163. - yocto-check-layer: add ability to perform tests from a global bbclass
  164. - yocto-check-layer: improved README checks
  165. - cve-check: add json output format
  166. - cve-check: add coverage statistics on recipes with/without CVEs
  167. - Added mirrors for kernel sources and uninative binaries on kernel.org
  168. - glibc and binutils recipes now use shallow mirror tarballs for faster fetching
  169. - When patching fails, show more information on the fatal error
  170. - wic Image Creator enhancements:
  171. - Support rootdev identified by partition label
  172. - rawcopy: Add support for packed images
  173. - partition: Support valueless keys in sourceparams
  174. - QA check enhancements:
  175. - Allow treating license issues as errors
  176. - Added a check that Upstream-Status patch tag is present and correctly formed
  177. - Added a check for directories that are expected to be empty
  178. - Ensure addition of patch-fuzz retriggers do_qa_patch
  179. - Added a sanity check for allarch packagegroups
  180. - :ref:`ref-classes-create-spdx` class improvements:
  181. - Get SPDX-License-Identifier from source files
  182. - Generate manifest also for SDKs
  183. - New SPDX_ORG variable to allow changing the Organization field value
  184. - Added packageSupplier field
  185. - Added create_annotation function
  186. - devtool add / recipetool create enhancements:
  187. - Extend curl detection when creating recipes
  188. - Handle GitLab URLs like we do GitHub
  189. - Recognize more standard license text variants
  190. - Separate licenses with & operator
  191. - Detect more known licenses in Python code
  192. - Move license md5sums data into CSV files
  193. - npm: Use README as license fallback
  194. - SDK-related enhancements:
  195. - Extended recipes to :ref:`ref-classes-nativesdk`: ``cargo``,
  196. ``librsvg``, ``libstd-rs``, ``libva``, ``python3-docutil``, ``python3-packaging``
  197. - Enabled :ref:`ref-classes-nativesdk` recipes to find a correct version
  198. of the rust cross compiler
  199. - Support creating per-toolchain cmake file in SDK
  200. - Rust enhancements:
  201. - New python_setuptools3_rust class to enable building python extensions in Rust
  202. - classes/meson: Add optional rust definitions
  203. - QEMU / runqemu enhancements:
  204. - qemu: Add knob for enabling PMDK pmem support
  205. - qemu: add tpm string section to qemu acpi table
  206. - qemu: Build on musl targets
  207. - runqemu: support rootfs mounted ro
  208. - runqemu: add :term:`DEPLOY_DIR_IMAGE` replacement in QB_OPT_APPEND
  209. - runqemu: Allow auto-detection of the correct graphics options
  210. - Capped ``cpu_count()`` (used to set parallelisation defaults) to 64 since any higher usually hurts parallelisation
  211. - Adjust some GL-using recipes so that they only require virtual/egl
  212. - package_rpm: use zstd instead of xz
  213. - npm: new ``EXTRA_OENPM`` variable (to set node-gyp variables for example)
  214. - npm: new ``NPM_NODEDIR`` variable
  215. - perl: Enable threading
  216. - u-boot: Convert ${UBOOT_ENV}.cmd into ${UBOOT_ENV}.scr
  217. - u-boot: Split do_configure logic into separate file
  218. - go.bbclass: Allow adding parameters to go ldflags
  219. - go: log build id computations
  220. - scons: support out-of-tree builds
  221. - scripts: Add a conversion script to use SPDX license names
  222. - scripts: Add convert-variable-renames script for inclusive language variable renaming
  223. - binutils-cross-canadian: enable gold for mingw
  224. - grub-efi: Add option to include all available modules
  225. - bitbake.conf: allow wayland distro feature through for native/SDK builds
  226. - weston-init: Pass --continue-without-input when launching weston
  227. - weston: wrapper for weston modules argument
  228. - weston: Add a knob to control simple clients
  229. - uninative: Add version to uninative tarball name
  230. - volatile-binds: SELinux and overlayfs extensions in mount-copybind
  231. - gtk-icon-cache: Allow using gtk4
  232. - kmod: Add an exclude directive to depmod
  233. - os-release: add os-release-initrd package for use in systemd-based :term:`Initramfs` images
  234. - gstreamer1.0-plugins-base: add support for graphene
  235. - gpg-sign: Add parameters to gpg signature function
  236. - package_manager: sign DEB package feeds
  237. - zstd: add libzstd package
  238. - libical: build gobject and vala introspection
  239. - dhcpcd: add option to set DBDIR location
  240. - rpcbind: install rpcbind.conf
  241. - mdadm: install mdcheck
  242. - boost: add json lib
  243. - libxkbcommon: allow building of API documentation
  244. - libxkbcommon: split libraries and xkbcli into separate packages
  245. - systemd: move systemd shared library into its own package
  246. - systemd: Minimize udev package size if :term:`DISTRO_FEATURES` doen't contain sysvinit
  247. Known Issues in 4.0
  248. ~~~~~~~~~~~~~~~~~~~
  249. - ``make`` version 4.2.1 is known to be buggy on non-Ubuntu systems. If this ``make``
  250. version is detected on host distributions other than Ubuntu at build start time,
  251. then a warning will be displayed.
  252. Recipe License changes in 4.0
  253. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  254. The following corrections have been made to the :term:`LICENSE` values set by recipes:
  255. * cmake: add BSD-1-Clause & MIT & BSD-2-Clause to :term:`LICENSE` due to additional vendored libraries in native/target context
  256. * gettext: extend :term:`LICENSE` conditional upon :term:`PACKAGECONFIG` (due to vendored libraries)
  257. * gstreamer1.0: update licenses of all modules to LGPL-2.1-or-later (with some exceptions that are GPL-2.0-or-later)
  258. * gstreamer1.0-plugins-bad/ugly: use the GPL-2.0-or-later only when it is in use
  259. * kern-tools-native: add missing MIT license due to Kconfiglib
  260. * libcap: add pam_cap license to :term:`LIC_FILES_CHKSUM` if pam is enabled
  261. * libidn2: add Unicode-DFS-2016 license
  262. * libsdl2: add BSD-2-Clause to :term:`LICENSE` due to default yuv2rgb and hidapi inclusion
  263. * libx11-compose-data: update :term:`LICENSE` to "MIT & MIT-style & BSD-1-Clause & HPND & HPND-sell-variant" to better reflect reality
  264. * libx11: update :term:`LICENSE` to "MIT & MIT-style & BSD-1-Clause & HPND & HPND-sell-variant" to better reflect reality
  265. * libxshmfence: correct :term:`LICENSE` - MIT -> HPND
  266. * newlib: add BSD-3-Clause to :term:`LICENSE`
  267. * python3-idna: correct :term:`LICENSE` - Unicode -> Unicode-TOU
  268. * python3-pip: add "Apache-2.0 & MPL-2.0 & LGPL-2.1-only & BSD-3-Clause & PSF-2.0 & BSD-2-Clause" to :term:`LICENSE` due to vendored libraries
  269. Other license-related notes:
  270. - The ambiguous "BSD" license has been removed from the ``common-licenses`` directory.
  271. Each recipe that fetches or builds BSD-licensed code should specify the proper
  272. version of the BSD license in its :term:`LICENSE` value.
  273. - :term:`LICENSE` definitions now have to use `SPDX identifiers <https://spdx.org/licenses/>`__.
  274. A :oe_git:`convert-spdx-licenses.py </openembedded-core/tree/scripts/contrib/convert-spdx-licenses.py>`
  275. script can be used to update your recipes.
  276. Security Fixes in 4.0
  277. ~~~~~~~~~~~~~~~~~~~~~
  278. - binutils: :cve_nist:`2021-42574`, :cve_nist:`2021-45078`
  279. - curl: :cve_nist:`2021-22945`, :cve_nist:`2021-22946`, :cve_nist:`2021-22947`
  280. - epiphany: :cve_nist:`2021-45085`, :cve_nist:`2021-45086`, :cve_nist:`2021-45087`, :cve_nist:`2021-45088`
  281. - expat: :cve_nist:`2021-45960`, :cve_nist:`2021-46143`, :cve_nist:`2022-22822`, :cve_nist:`2022-22823`, :cve_nist:`2022-22824`, :cve_nist:`2022-22825`, :cve_nist:`2022-22826`, :cve_nist:`2022-22827`, :cve_nist:`2022-23852`, :cve_nist:`2022-23990`, :cve_nist:`2022-25235`, :cve_nist:`2022-25236`, :cve_nist:`2022-25313`, :cve_nist:`2022-25314`, :cve_nist:`2022-25315`
  282. - ffmpeg: :cve_nist:`2021-38114`
  283. - gcc: :cve_nist:`2021-35465`, :cve_nist:`2021-42574`, :cve_nist:`2021-46195`, :cve_nist:`2022-24765`
  284. - glibc: :cve_nist:`2021-3998`, :cve_nist:`2021-3999`, :cve_nist:`2021-43396`, :cve_nist:`2022-23218`, :cve_nist:`2022-23219`
  285. - gmp: :cve_nist:`2021-43618`
  286. - go: :cve_nist:`2021-41771` and :cve_nist:`2021-41772`
  287. - grub2: :cve_nist:`2021-3981`
  288. - gzip: :cve_nist:`2022-1271`
  289. - libarchive : :cve_nist:`2021-31566`, :cve_nist:`2021-36976`
  290. - libxml2: :cve_nist:`2022-23308`
  291. - libxslt: :cve_nist:`2021-30560`
  292. - lighttpd: :cve_nist:`2022-22707`
  293. - linux-yocto/5.10: amdgpu: :cve_nist:`2021-42327`
  294. - lua: :cve_nist:`2021-43396`
  295. - openssl: :cve_nist:`2021-4044`, :cve_nist:`2022-0778`
  296. - qemu: :cve_nist:`2022-1050`, :cve_nist:`2022-26353`, :cve_nist:`2022-26354`
  297. - rpm: :cve_nist:`2021-3521`
  298. - seatd: :cve_nist:`2022-25643`
  299. - speex: :cve_nist:`2020-23903`
  300. - squashfs-tools: :cve_nist:`2021-41072`
  301. - systemd: :cve_nist:`2021-4034`
  302. - tiff: :cve_nist:`2022-0561`, :cve_nist:`2022-0562`, :cve_nist:`2022-0865`, :cve_nist:`2022-0891`, :cve_nist:`2022-0907`, :cve_nist:`2022-0908`, :cve_nist:`2022-0909`, :cve_nist:`2022-0924`, :cve_nist:`2022-1056`, :cve_nist:`2022-22844`
  303. - unzip: :cve_nist:`2021-4217`
  304. - vim: :cve_nist:`2021-3796`, :cve_nist:`2021-3872`, :cve_nist:`2021-3875`, :cve_nist:`2021-3927`, :cve_nist:`2021-3928`, :cve_nist:`2021-3968`, :cve_nist:`2021-3973`, :cve_nist:`2021-4187`, :cve_nist:`2022-0128`, :cve_nist:`2022-0156`, :cve_nist:`2022-0158`, :cve_nist:`2022-0261`, :cve_nist:`2022-0318`, :cve_nist:`2022-0319`, :cve_nist:`2022-0554`, :cve_nist:`2022-0696`, :cve_nist:`2022-0714`, :cve_nist:`2022-0729`, :cve_nist:`2022-0943`
  305. - virglrenderer: :cve_nist:`2022-0135`, :cve_nist:`2022-0175`
  306. - webkitgtk: :cve_nist:`2022-22589`, :cve_nist:`2022-22590`, :cve_nist:`2022-22592`
  307. - xz: :cve_nist:`2022-1271`
  308. - zlib: :cve_nist:`2018-25032`
  309. Recipe Upgrades in 4.0
  310. ~~~~~~~~~~~~~~~~~~~~~~
  311. - acpica: upgrade 20210730 -> 20211217
  312. - acpid: upgrade 2.0.32 -> 2.0.33
  313. - adwaita-icon-theme: update 3.34/38 -> 41.0
  314. - alsa-ucm-conf: upgrade 1.2.6.2 -> 1.2.6.3
  315. - alsa: upgrade 1.2.5 -> 1.2.6
  316. - apt: upgrade 2.2.4 -> 2.4.3
  317. - asciidoc: upgrade 9.1.0 -> 10.0.0
  318. - atk: upgrade 2.36.0 -> 2.38.0
  319. - at-spi2-core: upgrade 2.40.3 -> 2.42.0
  320. - at: update 3.2.2 -> 3.2.5
  321. - autoconf-archive: upgrade 2021.02.19 -> 2022.02.11
  322. - automake: update 1.16.3 -> 1.16.5
  323. - bash: upgrade 5.1.8 -> 5.1.16
  324. - bind: upgrade 9.16.20 -> 9.18.1
  325. - binutils: Bump to latest 2.38 release branch
  326. - bison: upgrade 3.7.6 -> 3.8.2
  327. - bluez5: upgrade 5.61 -> 5.64
  328. - boost: update 1.77.0 -> 1.78.0
  329. - btrfs-tools: upgrade 5.13.1 -> 5.16.2
  330. - buildtools-installer: Update to use 3.4
  331. - busybox: 1.34.0 -> 1.35.0
  332. - ca-certificates: update 20210119 -> 20211016
  333. - cantarell-fonts: update 0.301 -> 0.303.1
  334. - ccache: upgrade 4.4 -> 4.6
  335. - cmake: update 3.21.1 -> 3.22.3
  336. - connman: update 1.40 -> 1.41
  337. - coreutils: update 8.32 -> 9.0
  338. - cracklib: update 2.9.5 -> 2.9.7
  339. - createrepo-c: upgrade 0.17.4 -> 0.19.0
  340. - cronie: upgrade 1.5.7 -> 1.6.0
  341. - cups: update 2.3.3op2 -> 2.4.1
  342. - curl: update 7.78.0 -> 7.82.0
  343. - dbus: upgrade 1.12.20 -> 1.14.0
  344. - debianutils: update 4.11.2 -> 5.7
  345. - dhcpcd: upgrade 9.4.0 -> 9.4.1
  346. - diffoscope: upgrade 181 -> 208
  347. - dnf: upgrade 4.8.0 -> 4.11.1
  348. - dpkg: update 1.20.9 -> 1.21.4
  349. - e2fsprogs: upgrade 1.46.4 -> 1.46.5
  350. - ed: upgrade 1.17 -> 1.18
  351. - efivar: update 37 -> 38
  352. - elfutils: update 0.185 -> 0.186
  353. - ell: upgrade 0.43 -> 0.49
  354. - enchant2: upgrade 2.3.1 -> 2.3.2
  355. - epiphany: update 40.3 -> 42.0
  356. - erofs-utils: update 1.3 -> 1.4
  357. - ethtool: update to 5.16
  358. - expat: upgrade 2.4.1 -> 2.4.7
  359. - ffmpeg: update 4.4 -> 5.0
  360. - file: upgrade 5.40 -> 5.41
  361. - findutils: upgrade 4.8.0 -> 4.9.0
  362. - flac: upgrade 1.3.3 -> 1.3.4
  363. - freetype: upgrade 2.11.0 -> 2.11.1
  364. - fribidi: upgrade 1.0.10 -> 1.0.11
  365. - gawk: update 5.1.0 -> 5.1.1
  366. - gcompat: Update to latest
  367. - gdbm: upgrade 1.19 -> 1.23
  368. - gdb: Upgrade to 11.2
  369. - ghostscript: update 9.54.0 -> 9.55.0
  370. - gi-docgen: upgrade 2021.7 -> 2022.1
  371. - git: update 2.33.0 -> 2.35.2
  372. - glib-2.0: update 2.68.4 -> 2.72.0
  373. - glibc: Upgrade to 2.35
  374. - glib-networking: update 2.68.2 -> 2.72.0
  375. - glslang: update 11.5.0 -> 11.8.0
  376. - gnu-config: update to latest revision
  377. - gnupg: update 2.3.1 -> 2.3.4
  378. - gnutls: update 3.7.2 -> 3.7.4
  379. - gobject-introspection: upgrade 1.68.0 -> 1.72.0
  380. - go-helloworld: update to latest revision
  381. - go: update 1.16.7 -> 1.17.8
  382. - gpgme: upgrade 1.16.0 -> 1.17.1
  383. - gsettings-desktop-schemas: upgrade 40.0 -> 42.0
  384. - gst-devtools: 1.18.4 -> 1.20.1
  385. - gst-examples: 1.18.4 -> 1.18.6
  386. - gstreamer1.0: 1.18.4 -> 1.20.1
  387. - gstreamer1.0-libav: 1.18.4 -> 1.20.1
  388. - gstreamer1.0-omx: 1.18.4 -> 1.20.1
  389. - gstreamer1.0-plugins-bad: 1.18.4 1.20.1
  390. - gstreamer1.0-plugins-base: 1.18.4 -> 1.20.1
  391. - gstreamer1.0-plugins-good: 1.18.4 -> 1.20.1
  392. - gstreamer1.0-plugins-ugly: 1.18.4 -> 1.20.1
  393. - gstreamer1.0-python: 1.18.4 -> 1.20.1
  394. - gstreamer1.0-rtsp-server: 1.18.4 -> 1.20.1
  395. - gstreamer1.0-vaapi: 1.18.4 -> 1.20.1
  396. - gtk+3: upgrade 3.24.30 -> 3.24.33
  397. - gzip: upgrade 1.10 -> 1.12
  398. - harfbuzz: upgrade 2.9.0 -> 4.0.1
  399. - hdparm: upgrade 9.62 -> 9.63
  400. - help2man: upgrade 1.48.4 -> 1.49.1
  401. - icu: update 69.1 -> 70.1
  402. - ifupdown: upgrade 0.8.36 -> 0.8.37
  403. - inetutils: update 2.1 -> 2.2
  404. - init-system-helpers: upgrade 1.60 -> 1.62
  405. - iproute2: update to 5.17.0
  406. - iputils: update 20210722 to 20211215
  407. - iso-codes: upgrade 4.6.0 -> 4.9.0
  408. - itstool: update 2.0.6 -> 2.0.7
  409. - iw: upgrade 5.9 -> 5.16
  410. - json-glib: upgrade 1.6.4 -> 1.6.6
  411. - kea: update 1.8.2 -> 2.0.2
  412. - kexec-tools: update 2.0.22 -> 2.0.23
  413. - less: upgrade 590 -> 600
  414. - libarchive: upgrade 3.5.1 -> 3.6.1
  415. - libatomic-ops: upgrade 7.6.10 -> 7.6.12
  416. - libbsd: upgrade 0.11.3 -> 0.11.5
  417. - libcap: update 2.51 -> 2.63
  418. - libcgroup: upgrade 2.0 -> 2.0.1
  419. - libcomps: upgrade 0.1.17 -> 0.1.18
  420. - libconvert-asn1-perl: upgrade 0.31 -> 0.33
  421. - libdazzle: upgrade 3.40.0 -> 3.44.0
  422. - libdnf: update 0.63.1 -> 0.66.0
  423. - libdrm: upgrade 2.4.107 -> 2.4.110
  424. - libedit: upgrade 20210714-3.1 -> 20210910-3.1
  425. - liberation-fonts: update 2.1.4 -> 2.1.5
  426. - libevdev: upgrade 1.11.0 -> 1.12.1
  427. - libexif: update 0.6.22 -> 0.6.24
  428. - libgit2: update 1.1.1 -> 1.4.2
  429. - libgpg-error: update 1.42 -> 1.44
  430. - libhandy: update 1.2.3 -> 1.5.0
  431. - libical: upgrade 3.0.10 -> 3.0.14
  432. - libinput: update to 1.19.3
  433. - libjitterentropy: update 3.1.0 -> 3.4.0
  434. - libjpeg-turbo: upgrade 2.1.1 -> 2.1.3
  435. - libmd: upgrade 1.0.3 -> 1.0.4
  436. - libmicrohttpd: upgrade 0.9.73 -> 0.9.75
  437. - libmodulemd: upgrade 2.13.0 -> 2.14.0
  438. - libpam: update 1.5.1 -> 1.5.2
  439. - libpcre2: upgrade 10.37 -> 10.39
  440. - libpipeline: upgrade 1.5.3 -> 1.5.5
  441. - librepo: upgrade 1.14.1 -> 1.14.2
  442. - librsvg: update 2.40.21 -> 2.52.7
  443. - libsamplerate0: update 0.1.9 -> 0.2.2
  444. - libsdl2: update 2.0.16 -> 2.0.20
  445. - libseccomp: update to 2.5.3
  446. - libsecret: upgrade 0.20.4 -> 0.20.5
  447. - libsndfile1: bump to version 1.0.31
  448. - libsolv: upgrade 0.7.19 -> 0.7.22
  449. - libsoup-2.4: upgrade 2.72.0 -> 2.74.2
  450. - libsoup: add a recipe for 3.0.5
  451. - libssh2: update 1.9.0 -> 1.10.0
  452. - libtasn1: upgrade 4.17.0 -> 4.18.0
  453. - libtool: Upgrade 2.4.6 -> 2.4.7
  454. - libucontext: Upgrade to 1.2 release
  455. - libunistring: update 0.9.10 -> 1.0
  456. - libunwind: upgrade 1.5.0 -> 1.6.2
  457. - liburcu: upgrade 0.13.0 -> 0.13.1
  458. - libusb1: upgrade 1.0.24 -> 1.0.25
  459. - libuv: update 1.42.0 -> 1.44.1
  460. - libva: update 2.12.0 -> 2.14.0
  461. - libva-utils: upgrade 2.13.0 -> 2.14.0
  462. - libwebp: 1.2.1 -> 1.2.2
  463. - libwpe: upgrade 1.10.1 -> 1.12.0
  464. - libx11: update to 1.7.3.1
  465. - libxcrypt: upgrade 4.4.26 -> 4.4.27
  466. - libxcrypt-compat: upgrade 4.4.26 -> 4.4.27
  467. - libxi: update to 1.8
  468. - libxkbcommon: update to 1.4.0
  469. - libxml2: update to 2.9.13
  470. - libxslt: update to v1.1.35
  471. - lighttpd: update 1.4.59 -> 1.4.64
  472. - linux-firmware: upgrade 20210818 -> 20220310
  473. - linux-libc-headers: update to v5.16
  474. - linux-yocto/5.10: update to v5.10.109
  475. - linux-yocto/5.15: introduce recipes (v5.15.32)
  476. - linux-yocto-dev: update to v5.18+
  477. - linux-yocto-rt/5.10: update to -rt61
  478. - linux-yocto-rt/5.15: update to -rt34
  479. - llvm: update 12.0.1 -> 13.0.1
  480. - logrotate: update 3.18.1 -> 3.19.0
  481. - lsof: update 4.91 -> 4.94.0
  482. - ltp: update 20210927 -> 20220121
  483. - ltp: Update to 20210927
  484. - lttng-modules: update devupstream to latest 2.13
  485. - lttng-modules: update to 2.13.3
  486. - lttng-tools: upgrade 2.13.0 -> 2.13.4
  487. - lttng-ust: upgrade 2.13.0 -> 2.13.2
  488. - lua: update 5.3.6 -> 5.4.4
  489. - lzip: upgrade 1.22 -> 1.23
  490. - man-db: upgrade 2.9.4 -> 2.10.2
  491. - man-pages: update to 5.13
  492. - mdadm: update 4.1 -> 4.2
  493. - mesa: upgrade 21.2.1 -> 22.0.0
  494. - meson: update 0.58.1 -> 0.61.3
  495. - minicom: Upgrade 2.7.1 -> 2.8
  496. - mmc-utils: upgrade to latest revision
  497. - mobile-broadband-provider-info: upgrade 20210805 -> 20220315
  498. - mpg123: upgrade 1.28.2 -> 1.29.3
  499. - msmtp: upgrade 1.8.15 -> 1.8.20
  500. - mtd-utils: upgrade 2.1.3 -> 2.1.4
  501. - mtools: upgrade 4.0.35 -> 4.0.38
  502. - musl: Update to latest master
  503. - ncurses: update 6.2 -> 6.3
  504. - newlib: Upgrade 4.1.0 -> 4.2.0
  505. - nfs-utils: upgrade 2.5.4 -> 2.6.1
  506. - nghttp2: upgrade 1.45.1 -> 1.47.0
  507. - ofono: upgrade 1.32 -> 1.34
  508. - opensbi: Upgrade to 1.0
  509. - openssh: upgrade 8.7p1 -> 8.9
  510. - openssl: update 1.1.1l -> 3.0.2
  511. - opkg: upgrade 0.4.5 -> 0.5.0
  512. - opkg-utils: upgrade 0.4.5 -> 0.5.0
  513. - ovmf: update 202105 -> 202202
  514. - p11-kit: update 0.24.0 -> 0.24.1
  515. - pango: upgrade 1.48.9 -> 1.50.4
  516. - patchelf: upgrade 0.13 -> 0.14.5
  517. - perl-cross: update 1.3.6 -> 1.3.7
  518. - perl: update 5.34.0 -> 5.34.1
  519. - piglit: upgrade to latest revision
  520. - pigz: upgrade 2.6 -> 2.7
  521. - pinentry: update 1.1.1 -> 1.2.0
  522. - pkgconfig: Update to latest
  523. - psplash: upgrade to latest revision
  524. - puzzles: upgrade to latest revision
  525. - python3-asn1crypto: upgrade 1.4.0 -> 1.5.1
  526. - python3-attrs: upgrade 21.2.0 -> 21.4.0
  527. - python3-cryptography: Upgrade to 36.0.2
  528. - python3-cryptography-vectors: upgrade to 36.0.2
  529. - python3-cython: upgrade 0.29.24 -> 0.29.28
  530. - python3-dbusmock: update to 0.27.3
  531. - python3-docutils: upgrade 0.17.1 0.18.1
  532. - python3-dtschema: upgrade 2021.10 -> 2022.1
  533. - python3-gitdb: upgrade 4.0.7 -> 4.0.9
  534. - python3-git: update to 3.1.27
  535. - python3-hypothesis: upgrade 6.15.0 -> 6.39.5
  536. - python3-imagesize: upgrade 1.2.0 -> 1.3.0
  537. - python3-importlib-metadata: upgrade 4.6.4 -> 4.11.3
  538. - python3-jinja2: upgrade 3.0.1 -> 3.1.1
  539. - python3-jsonschema: upgrade 3.2.0 -> 4.4.0
  540. - python3-libarchive-c: upgrade 3.1 -> 4.0
  541. - python3-magic: upgrade 0.4.24 -> 0.4.25
  542. - python3-mako: upgrade 1.1.5 -> 1.1.6
  543. - python3-markdown: upgrade 3.3.4 -> 3.3.6
  544. - python3-markupsafe: upgrade 2.0.1 -> 2.1.1
  545. - python3-more-itertools: upgrade 8.8.0 -> 8.12.0
  546. - python3-numpy: upgrade 1.21.2 -> 1.22.3
  547. - python3-packaging: upgrade 21.0 -> 21.3
  548. - python3-pathlib2: upgrade 2.3.6 -> 2.3.7
  549. - python3-pbr: upgrade 5.6.0 -> 5.8.1
  550. - python3-pip: update 21.2.4 -> 22.0.3
  551. - python3-pycairo: upgrade 1.20.1 -> 1.21.0
  552. - python3-pycryptodome: upgrade 3.10.1 -> 3.14.1
  553. - python3-pyelftools: upgrade 0.27 -> 0.28
  554. - python3-pygments: upgrade 2.10.0 -> 2.11.2
  555. - python3-pygobject: upgrade 3.40.1 -> 3.42.0
  556. - python3-pyparsing: update to 3.0.7
  557. - python3-pyrsistent: upgrade 0.18.0 -> 0.18.1
  558. - python3-pytest-runner: upgrade 5.3.1 -> 6.0.0
  559. - python3-pytest-subtests: upgrade 0.6.0 -> 0.7.0
  560. - python3-pytest: upgrade 6.2.4 -> 7.1.1
  561. - python3-pytz: upgrade 2021.3 -> 2022.1
  562. - python3-py: upgrade 1.10.0 -> 1.11.0
  563. - python3-pyyaml: upgrade 5.4.1 -> 6.0
  564. - python3-ruamel-yaml: upgrade 0.17.16 -> 0.17.21
  565. - python3-scons: upgrade 4.2.0 -> 4.3.0
  566. - python3-setuptools-scm: upgrade 6.0.1 -> 6.4.2
  567. - python3-setuptools: update to 59.5.0
  568. - python3-smmap: update to 5.0.0
  569. - python3-tomli: upgrade 1.2.1 -> 2.0.1
  570. - python3: update to 3.10.3
  571. - python3-urllib3: upgrade 1.26.8 -> 1.26.9
  572. - python3-zipp: upgrade 3.5.0 -> 3.7.0
  573. - qemu: update 6.0.0 -> 6.2.0
  574. - quilt: upgrade 0.66 -> 0.67
  575. - re2c: upgrade 2.2 -> 3.0
  576. - readline: upgrade 8.1 -> 8.1.2
  577. - repo: upgrade 2.17.3 -> 2.22
  578. - resolvconf: update 1.87 -> 1.91
  579. - rng-tools: upgrade 6.14 -> 6.15
  580. - rpcsvc-proto: upgrade 1.4.2 -> 1.4.3
  581. - rpm: update 4.16.1.3 -> 4.17.0
  582. - rt-tests: update 2.1 -> 2.3
  583. - ruby: update 3.0.2 -> 3.1.1
  584. - rust: update 1.54.0 -> 1.59.0
  585. - rxvt-unicode: upgrade 9.26 -> 9.30
  586. - screen: upgrade 4.8.0 -> 4.9.0
  587. - shaderc: update 2021.1 -> 2022.1
  588. - shadow: upgrade 4.9 -> 4.11.1
  589. - socat: upgrade 1.7.4.1 -> 1.7.4.3
  590. - spirv-headers: bump to b42ba6 revision
  591. - spirv-tools: update 2021.2 -> 2022.1
  592. - sqlite3: upgrade 3.36.0 -> 3.38.2
  593. - strace: update 5.14 -> 5.16
  594. - stress-ng: upgrade 0.13.00 -> 0.13.12
  595. - sudo: update 1.9.7p2 -> 1.9.10
  596. - sysklogd: upgrade 2.2.3 -> 2.3.0
  597. - sysstat: upgrade 12.4.3 -> 12.4.5
  598. - systemd: update 249.3 -> 250.4
  599. - systemtap: upgrade 4.5 -> 4.6
  600. - sysvinit: upgrade 2.99 -> 3.01
  601. - tzdata: update to 2022a
  602. - u-boot: upgrade 2021.07 -> 2022.01
  603. - uninative: Upgrade to 3.6 with gcc 12 support
  604. - util-linux: update 2.37.2 -> 2.37.4
  605. - vala: upgrade 0.52.5 -> 0.56.0
  606. - valgrind: update 3.17.0 -> 3.18.1
  607. - vim: upgrade to 8.2 patch 4681
  608. - vte: upgrade 0.64.2 -> 0.66.2
  609. - vulkan-headers: upgrade 1.2.182 -> 1.2.191
  610. - vulkan-loader: upgrade 1.2.182 -> 1.2.198.1
  611. - vulkan-samples: update to latest revision
  612. - vulkan-tools: upgrade 1.2.182 -> 1.2.191
  613. - vulkan: update 1.2.191.0 -> 1.3.204.1
  614. - waffle: update 1.6.1 -> 1.7.0
  615. - wayland-protocols: upgrade 1.21 -> 1.25
  616. - wayland: upgrade 1.19.0 -> 1.20.0
  617. - webkitgtk: upgrade 2.34.0 -> 2.36.0
  618. - weston: upgrade 9.0.0 -> 10.0.0
  619. - wget: update 1.21.1 -> 1.21.3
  620. - wireless-regdb: upgrade 2021.07.14 -> 2022.02.18
  621. - wpa-supplicant: update 2.9 -> 2.10
  622. - wpebackend-fdo: upgrade 1.10.0 -> 1.12.0
  623. - xauth: upgrade 1.1 -> 1.1.1
  624. - xf86-input-libinput: update to 1.2.1
  625. - xf86-video-intel: update to latest commit
  626. - xkeyboard-config: update to 2.35.1
  627. - xorgproto: update to 2021.5
  628. - xserver-xorg: update 1.20.13 -> 21.1.3
  629. - xwayland: update 21.1.2 -> 22.1.0
  630. - xxhash: upgrade 0.8.0 -> 0.8.1
  631. - zstd: update 1.5.0 -> 1.5.2
  632. Contributors to 4.0
  633. ~~~~~~~~~~~~~~~~~~~
  634. Thanks to the following people who contributed to this release:
  635. - Abongwa Amahnui Bonalais
  636. - Adriaan Schmidt
  637. - Adrian Freihofer
  638. - Ahmad Fatoum
  639. - Ahmed Hossam
  640. - Ahsan Hussain
  641. - Alejandro Hernandez Samaniego
  642. - Alessio Igor Bogani
  643. - Alexander Kanavin
  644. - Alexandre Belloni
  645. - Alexandru Ardelean
  646. - Alexey Brodkin
  647. - Alex Stewart
  648. - Andreas Müller
  649. - Andrei Gherzan
  650. - Andrej Valek
  651. - Andres Beltran
  652. - Andrew Jeffery
  653. - Andrey Zhizhikin
  654. - Anton Mikanovich
  655. - Anuj Mittal
  656. - Bill Pittman
  657. - Bruce Ashfield
  658. - Caner Altinbasak
  659. - Carlos Rafael Giani
  660. - Chaitanya Vadrevu
  661. - Changhyeok Bae
  662. - Changqing Li
  663. - Chen Qi
  664. - Christian Eggers
  665. - Claudius Heine
  666. - Claus Stovgaard
  667. - Daiane Angolini
  668. - Daniel Ammann
  669. - Daniel Gomez
  670. - Daniel McGregor
  671. - Daniel Müller
  672. - Daniel Wagenknecht
  673. - David Joyner
  674. - David Reyna
  675. - Denys Dmytriyenko
  676. - Dhruva Gole
  677. - Diego Sueiro
  678. - Dmitry Baryshkov
  679. - Ferry Toth
  680. - Florian Amstutz
  681. - Henry Kleynhans
  682. - He Zhe
  683. - Hongxu Jia
  684. - Hsia-Jun(Randy) Li
  685. - Ian Ray
  686. - Jacob Kroon
  687. - Jagadeesh Krishnanjanappa
  688. - Jasper Orschulko
  689. - Jim Wilson
  690. - Joel Winarske
  691. - Joe Slater
  692. - Jon Mason
  693. - Jose Quaresma
  694. - Joshua Watt
  695. - Justin Bronder
  696. - Kai Kang
  697. - Kamil Dziezyk
  698. - Kevin Hao
  699. - Khairul Rohaizzat Jamaluddin
  700. - Khem Raj
  701. - Kiran Surendran
  702. - Konrad Weihmann
  703. - Kory Maincent
  704. - Lee Chee Yang
  705. - Leif Middelschulte
  706. - Lei Maohui
  707. - Li Wang
  708. - Liwei Song
  709. - Luca Boccassi
  710. - Lukasz Majewski
  711. - Luna Gräfje
  712. - Manuel Leonhardt
  713. - Marek Vasut
  714. - Mark Hatle
  715. - Markus Niebel
  716. - Markus Volk
  717. - Marta Rybczynska
  718. - Martin Beeger
  719. - Martin Jansa
  720. - Matthias Klein
  721. - Matt Madison
  722. - Maximilian Blenk
  723. - Max Krummenacher
  724. - Michael Halstead
  725. - Michael Olbrich
  726. - Michael Opdenacker
  727. - Mike Crowe
  728. - Ming Liu
  729. - Mingli Yu
  730. - Minjae Kim
  731. - Nicholas Sielicki
  732. - Olaf Mandel
  733. - Oleh Matiusha
  734. - Oleksandr Kravchuk
  735. - Oleksandr Ocheretnyi
  736. - Oleksandr Suvorov
  737. - Oleksiy Obitotskyy
  738. - Otavio Salvador
  739. - Pablo Saavedra
  740. - Paul Barker
  741. - Paul Eggleton
  742. - Pavel Zhukov
  743. - Peter Hoyes
  744. - Peter Kjellerstedt
  745. - Petr Vorel
  746. - Pgowda
  747. - Quentin Schulz
  748. - Ralph Siemsen
  749. - Randy Li
  750. - Randy MacLeod
  751. - Rasmus Villemoes
  752. - Ricardo Salveti
  753. - Richard Neill
  754. - Richard Purdie
  755. - Robert Joslyn
  756. - Robert P. J. Day
  757. - Robert Yang
  758. - Ross Burton
  759. - Rudolf J Streif
  760. - Sakib Sajal
  761. - Samuli Piippo
  762. - Saul Wold
  763. - Scott Murray
  764. - Sean Anderson
  765. - Simone Weiss
  766. - Simon Kuhnle
  767. - S. Lockwood-Childs
  768. - Stefan Herbrechtsmeier
  769. - Steve Sakoman
  770. - Sundeep KOKKONDA
  771. - Tamizharasan Kumar
  772. - Tean Cunningham
  773. - Teoh Jay Shen
  774. - Thomas Perrot
  775. - Tim Orling
  776. - Tobias Kaufmann
  777. - Tom Hochstein
  778. - Tony McDowell
  779. - Trevor Gamblin
  780. - Ulrich Ölmann
  781. - Valerii Chernous
  782. - Vivien Didelot
  783. - Vyacheslav Yurkov
  784. - Wang Mingyu
  785. - Xavier Berger
  786. - Yi Zhao
  787. - Yongxin Liu
  788. - Yureka
  789. - Zev Weiss
  790. - Zheng Ruoqin
  791. - Zoltán Böszörményi
  792. - Zygmunt Krynicki
  793. Repositories / Downloads for 4.0
  794. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  795. poky
  796. - Repository Location: :yocto_git:`/poky`
  797. - Branch: :yocto_git:`kirkstone </poky/log/?h=kirkstone>`
  798. - Tag: :yocto_git:`yocto-4.0 </poky/tag/?h=yocto-4.0>`
  799. - Git Revision: :yocto_git:`00cfdde791a0176c134f31e5a09eff725e75b905 </poky/commit/?id=00cfdde791a0176c134f31e5a09eff725e75b905>`
  800. - Release Artefact: poky-00cfdde791a0176c134f31e5a09eff725e75b905
  801. - sha: 4cedb491b7bf0d015768c61690f30d7d73f4266252d6fba907bba97eac83648c
  802. - Download Locations:
  803. http://downloads.yoctoproject.org/releases/yocto/yocto-4.0/poky-00cfdde791a0176c134f31e5a09eff725e75b905.tar.bz2
  804. http://mirrors.kernel.org/yocto/yocto/yocto-4.0/poky-00cfdde791a0176c134f31e5a09eff725e75b905.tar.bz2
  805. openembedded-core
  806. - Repository Location: :oe_git:`/openembedded-core`
  807. - Branch: :oe_git:`kirkstone </openembedded-core/log/?h=kirkstone>`
  808. - Tag: :oe_git:`yocto-4.0 </openembedded-core/tag/?h=yocto-4.0>`
  809. - Git Revision: :oe_git:`92fcb6570bddd0c5717d8cfdf38ecf3e44942b0f </openembedded-core/commit/?id=92fcb6570bddd0c5717d8cfdf38ecf3e44942b0f>`
  810. - Release Artefact: oecore-92fcb6570bddd0c5717d8cfdf38ecf3e44942b0f
  811. - sha: c042629752543a10b0384b2076b1ee8742fa5e8112aef7b00b3621f8387a51c6
  812. - Download Locations:
  813. http://downloads.yoctoproject.org/releases/yocto/yocto-4.0/oecore-92fcb6570bddd0c5717d8cfdf38ecf3e44942b0f.tar.bz2
  814. http://mirrors.kernel.org/yocto/yocto/yocto-4.0/oecore-92fcb6570bddd0c5717d8cfdf38ecf3e44942b0f.tar.bz2
  815. meta-mingw
  816. - Repository Location: :yocto_git:`/meta-mingw`
  817. - Branch: :yocto_git:`kirkstone </meta-mingw/log/?h=kirkstone>`
  818. - Tag: :yocto_git:`yocto-4.0 </meta-mingw/tag/?h=yocto-4.0>`
  819. - Git Revision: :yocto_git:`a90614a6498c3345704e9611f2842eb933dc51c1 </meta-mingw/commit/?id=a90614a6498c3345704e9611f2842eb933dc51c1>`
  820. - Release Artefact: meta-mingw-a90614a6498c3345704e9611f2842eb933dc51c1
  821. - sha: 49f9900bfbbc1c68136f8115b314e95d0b7f6be75edf36a75d9bcd1cca7c6302
  822. - Download Locations:
  823. http://downloads.yoctoproject.org/releases/yocto/yocto-4.0/meta-mingw-a90614a6498c3345704e9611f2842eb933dc51c1.tar.bz2
  824. http://mirrors.kernel.org/yocto/yocto/yocto-4.0/meta-mingw-a90614a6498c3345704e9611f2842eb933dc51c1.tar.bz2
  825. meta-gplv2
  826. - Repository Location: :yocto_git:`/meta-gplv2`
  827. - Branch: :yocto_git:`kirkstone </meta-gplv2/log/?h=kirkstone>`
  828. - Tag: :yocto_git:`yocto-4.0 </meta-gplv2/tag/?h=yocto-4.0>`
  829. - Git Revision: :yocto_git:`d2f8b5cdb285b72a4ed93450f6703ca27aa42e8a </meta-mingw/commit/?id=d2f8b5cdb285b72a4ed93450f6703ca27aa42e8a>`
  830. - Release Artefact: meta-gplv2-d2f8b5cdb285b72a4ed93450f6703ca27aa42e8a
  831. - sha: c386f59f8a672747dc3d0be1d4234b6039273d0e57933eb87caa20f56b9cca6d
  832. - Download Locations:
  833. http://downloads.yoctoproject.org/releases/yocto/yocto-4.0/meta-gplv2-d2f8b5cdb285b72a4ed93450f6703ca27aa42e8a.tar.bz2
  834. http://mirrors.kernel.org/yocto/yocto/yocto-4.0/meta-gplv2-d2f8b5cdb285b72a4ed93450f6703ca27aa42e8a.tar.bz2
  835. bitbake
  836. - Repository Location: :oe_git:`/bitbake`
  837. - Branch: :oe_git:`2.0 </bitbake/log/?h=2.0>`
  838. - Tag: :oe_git:`yocto-4.0 </bitbake/tag/?h=yocto-4.0>`
  839. - Git Revision: :oe_git:`c212b0f3b542efa19f15782421196b7f4b64b0b9 </bitbake/commit/?id=c212b0f3b542efa19f15782421196b7f4b64b0b9>`
  840. - Release Artefact: bitbake-c212b0f3b542efa19f15782421196b7f4b64b0b9
  841. - sha: 6872095c7d7be5d791ef3e18b6bab2d1e0e237962f003d2b00dc7bd6fb6d2ef7
  842. - Download Locations:
  843. http://downloads.yoctoproject.org/releases/yocto/yocto-4.0/bitbake-c212b0f3b542efa19f15782421196b7f4b64b0b9.tar.bz2
  844. http://mirrors.kernel.org/yocto/yocto/yocto-4.0/bitbake-c212b0f3b542efa19f15782421196b7f4b64b0b9.tar.bz2
  845. yocto-docs
  846. - Repository Location: :yocto_git:`/yocto-docs`
  847. - Branch: :yocto_git:`kirkstone </yocto-docs/log/?h=kirkstone>`
  848. - Tag: :yocto_git:`yocto-4.0 </yocto-docs/tag/?h=yocto-4.0>`
  849. - Git Revision: :yocto_git:`a6f571ad5b087385cad8765ed455c4b4eaeebca6 </yocto-docs/commit/?id=a6f571ad5b087385cad8765ed455c4b4eaeebca6>`