From a12fdc3903c8f7f7528021785568d57447719457 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 21 Aug 2024 23:34:34 -0700 Subject: [PATCH 1/5] envsetup: Setup umask consistently Some distros e.g. ubuntu do not have it set and build complains about it Signed-off-by: Khem Raj --- envsetup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/envsetup.sh b/envsetup.sh index 26a6b1607..f2b9f00d3 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -640,6 +640,7 @@ dkr() { wrapcmd() { ulimit -n 4096 + umask 0022 cmd=$1 shift if [ -z $DOCKER_REPO ] || [ "$DOCKER_REPO" = "none" ]; then From ebe61a08414aaf6fab025dc20601eba6fd42ad8c Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 21 Aug 2024 23:48:09 -0700 Subject: [PATCH 2/5] Layer Updates: sources/poky * sources/poky 39de8c65492...94993b0ef4d (24): > vim: Upgrade 9.1.0114 -> 9.1.0682 > systemd: upgrade 256.4 -> 256.5 > xwayland: upgrade 24.1.1 -> 24.1.2 > ttyrun: upgrade 2.33.1 -> 2.34.0 > sysklogd: upgrade 2.6.0 -> 2.6.1 > rpcbind: upgrade 1.2.6 -> 1.2.7 > python3-setuptools: upgrade 72.1.0 -> 72.2.0 > python3-lxml: upgrade 5.2.2 -> 5.3.0 > python3-hypothesis: upgrade 6.110.1 -> 6.111.1 > python3-babel: upgrade 2.15.0 -> 2.16.0 > pkgconf: upgrade 2.2.0 -> 2.3.0 > libxtst: upgrade 1.2.4 -> 1.2.5 > libxfont2: upgrade 2.0.6 -> 2.0.7 > libx11: upgrade 1.8.9 -> 1.8.10 > freetype: upgrade 2.13.2 -> 2.13.3 > ethtool: upgrade 6.9 -> 6.10 > erofs-utils: upgrade 1.7.1 -> 1.8.1 > enchant2: upgrade 2.8.1 -> 2.8.2 > dnf: upgrade 4.21.0 -> 4.21.1 > diffoscope: upgrade 272 -> 276 > createrepo-c: upgrade 1.1.3 -> 1.1.4 > btrfs-tools: upgrade 6.9.2 -> 6.10.1 > binutils: upgrade 2.43 -> 2.43.1 > license_image.bbclass: Rename license-incompatible to license-exception Signed-off-by: Khem Raj --- sources/poky | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/poky b/sources/poky index 39de8c654..94993b0ef 160000 --- a/sources/poky +++ b/sources/poky @@ -1 +1 @@ -Subproject commit 39de8c65492a8b84494abc3f890744f89af70a36 +Subproject commit 94993b0ef4d670cbfee517b703e356de461078a9 From 773b45c1dd730d07db1887fa8de98ad0a0355a34 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 22 Aug 2024 08:07:39 -0700 Subject: [PATCH 3/5] Layer Updates: sources/meta-freescale * sources/meta-freescale 8f5d0399...4c4483b3 (1): > Merge pull request #1903 from hiagofranco/update_mcore-demos Signed-off-by: Khem Raj --- sources/meta-freescale | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/meta-freescale b/sources/meta-freescale index 8f5d0399a..4c4483b3b 160000 --- a/sources/meta-freescale +++ b/sources/meta-freescale @@ -1 +1 @@ -Subproject commit 8f5d0399a8ea2c39a65b6f19e67ac5e3ee898166 +Subproject commit 4c4483b3bd6896468f422f6201d9080e57c543fc From 6b96603633f2c3d6e367a5d60ca22ab914b8c7e6 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 21 Aug 2024 23:50:25 -0700 Subject: [PATCH 4/5] site: Bump image version Signed-off-by: Khem Raj --- conf/site.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/site.conf b/conf/site.conf index 4b7b08157..b7261c6e2 100644 --- a/conf/site.conf +++ b/conf/site.conf @@ -11,4 +11,4 @@ require ${TOPDIR}/conf/projects/${PROJECT}/config.conf #YOE_PROFILE = "yoe-musl-sysvinit-wayland" #require conf/world.conf -IMG_VERSION = "24.7.3" +IMG_VERSION = "24.7.4" From bf22feee9e685a0b779729bb19103dda7f0d956e Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 21 Aug 2024 23:51:58 -0700 Subject: [PATCH 5/5] CHANGELOG.md: Document changes Signed-off-by: Khem Raj --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bf34c2e6..d756bc50f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,9 +25,11 @@ and this project adheres to - Set CVE_PRODUCT in several recipes - Use imx-boot from NXP 6.6.23-2.0.0 BSP - Pin weston to 12.0.4.imx for IMX -- Upgrade systemd to 256.4 +- Upgrade systemd to 256.5 - Upgrade rust to 1.78 - Fix reproducibility issues in several meta-openembedded recipes +- Set umask to 0022 on build directories on bitbake invocation +- Upgrade binutils to 2.43.1 ### Added