diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e419d380..65318b0a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [2022.09] - 2022-09-30 ### Changed @@ -63,6 +63,10 @@ and this project adheres to not exist yet - Fix recipes in meta-arm to build with clang-15 - Update clang to 15.0.2 +- Logic in gtk-icon-cache class fixed for GTK4 +- Update tzdata to 2022d +- Update rpm to 4.18.0-release +- Fix weston imx version packageconfig appending syntax error ### Added @@ -72,6 +76,7 @@ and this project adheres to - Add documentation for numa machine feature - Add support for a ARMv8 machine supporting multiple Raspberry Pi boards - Add yoe-ptest-image target for ptests +- Add enable_loopback_networking() function in bitbake utilities ### Removed diff --git a/conf/site.conf b/conf/site.conf index 65105014e..11ab6a1b1 100644 --- a/conf/site.conf +++ b/conf/site.conf @@ -8,6 +8,9 @@ SCONF_VERSION = "1" # Modify the following if you need to change the types of images generated # most of the time, this is set by the machine conf or in a custom image # recipe. +# Ensure that meta-yoe/recipes-core/images/yoe-initramfs-image.bb is removing +# all these appends, otherwise it can cause parsing cycles on some riscv machines +# e.g. unmatched IMAGE_FSTYPES:append = " wic.xz wic.bmap tar.xz" IMAGE_FSTYPES:remove:qemuall = "tar.bz2 tar.xz tar tar.gz wic.xz wic.bmap" diff --git a/sources/meta-arm b/sources/meta-arm index 1dc0baf42..aa89fe3f0 160000 --- a/sources/meta-arm +++ b/sources/meta-arm @@ -1 +1 @@ -Subproject commit 1dc0baf42135c2b641699294faa18defdd9b64cd +Subproject commit aa89fe3f08cb8406f9f1082c683bd71cd04628fb diff --git a/sources/meta-freescale b/sources/meta-freescale index 6fc00d903..119f98736 160000 --- a/sources/meta-freescale +++ b/sources/meta-freescale @@ -1 +1 @@ -Subproject commit 6fc00d903fa4552e19b03447400498d7bb6bf168 +Subproject commit 119f987366951830d5f636de26f7d20757af061a diff --git a/sources/meta-intel b/sources/meta-intel index ad81baa4f..c22741940 160000 --- a/sources/meta-intel +++ b/sources/meta-intel @@ -1 +1 @@ -Subproject commit ad81baa4f5016f585e303cf373e347379368406c +Subproject commit c227419402d1ca9b2c4624265441a8cc578247d8 diff --git a/sources/meta-yoe/conf/distro/yoe.inc b/sources/meta-yoe/conf/distro/yoe.inc index 513c3a79d..1bf78a063 100644 --- a/sources/meta-yoe/conf/distro/yoe.inc +++ b/sources/meta-yoe/conf/distro/yoe.inc @@ -6,7 +6,7 @@ MAINTAINER = "Yoe Distro Community " TARGET_VENDOR = "-yoe" SDK_VENDOR = "-yoesdk" # Distro version is YYYY.MM -DISTRO_VERSION = "2022.09-rc.1" +DISTRO_VERSION = "2022.09" DISTRO_CODENAME = "Uda" SDK_VERSION := "${DISTRO_VERSION}" diff --git a/sources/meta-yoe/conf/layer.conf b/sources/meta-yoe/conf/layer.conf index 901ff05be..3f3c44f4d 100644 --- a/sources/meta-yoe/conf/layer.conf +++ b/sources/meta-yoe/conf/layer.conf @@ -7,7 +7,7 @@ BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" BBFILE_COLLECTIONS += "meta-yoe" BBFILE_PATTERN_meta-yoe := "^${LAYERDIR}/" BBFILE_PRIORITY_meta-yoe = "99" -LAYERSERIES_COMPAT_meta-yoe = "kirkstone" +LAYERSERIES_COMPAT_meta-yoe = "kirkstone langdale" LAYERDEPENDS_meta-yoe = "core elm-binary-layer" BBFILES_DYNAMIC += " \ diff --git a/sources/meta-yoe/recipes-core/images/yoe-initramfs-image.bb b/sources/meta-yoe/recipes-core/images/yoe-initramfs-image.bb index 7edfde1a3..a1e740475 100644 --- a/sources/meta-yoe/recipes-core/images/yoe-initramfs-image.bb +++ b/sources/meta-yoe/recipes-core/images/yoe-initramfs-image.bb @@ -25,6 +25,9 @@ PACKAGE_INSTALL = "\ util-linux-fdisk \ " IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" +# Check conf/site.conf where there is IMAGE_FSTYPES:append +# if that value changes make the change here as well +IMAGE_FSTYPES:remove = "wic.* wic.xz wic.bmap tar.xz" inherit core-image IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt" diff --git a/sources/poky b/sources/poky index e7619f765..74877d2dc 160000 --- a/sources/poky +++ b/sources/poky @@ -1 +1 @@ -Subproject commit e7619f7650e1f545dccba327bbc8d03a7b34fc4e +Subproject commit 74877d2dc267c958d02342d16cebeaeded23df8c