Skip to content

Commit 221d8c1

Browse files
authored
Merge pull request #1040 from YoeDistro/kraj/master
Update layers and fix fallouts from merge of clang to oe-core
2 parents cdf6074 + df6f037 commit 221d8c1

File tree

24 files changed

+56
-28
lines changed

24 files changed

+56
-28
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,38 @@ and this project adheres to
2020
- Fix several recipes to build with Cmake 4+
2121
- Update Linux UAPI libc headers to v6.15
2222
- Enable TUNE_FEATURES based KERNEL_FEATURES for RISCV
23-
- Update linux-yocto/6.12 to v6.12.36
23+
- Update linux-yocto/6.12 to v6.12.38
2424
- Handle workspaces for multiconfig in devtool
2525
- Add support for xz archives for XFCE components tarballs in SRC_URI
2626
- Upgrade go compiler from 1.24.4 -> 1.24.5
2727
- Fix building with clang-native when using compiler-rt
2828
- Upgrade openSSL from 3.5.0 -> 3.5.1
2929
- Fix compiler-rt nativesdk builds when using clang and llvm runtime
30-
30+
- Split libclc into a independent recipe out of clang
31+
- Upgrade cmake to 4.0.3
32+
- Upgrade clang to 20.1.8 release
33+
3134
### Added
3235

3336
- Added recipes - gpicview, pstack, opensbi-revyos, python3-colorama
3437
python3-sphinx-argparse, python3-sphinx-copybutton, python3-pytest-sugar
3538
systemd-repart-native, nilfs-utils, python3-rich-argparse, python3-genson
3639
cpp-argparse, python3-jsonschema-default, python3-rstr, lldb
37-
llvm-tblgen-native
40+
llvm-tblgen-native, tailscale
3841
- Add systemd-sysext image class
3942
- Add OrangePi RV2 machine support
4043
- Add Tegra holoscan SDK support
4144
- Add TCOVERRIDE for toolchain selection at recipe scope
4245
- Add whinlatter to compatible layers
4346
- Add support for required TUNE_FEATURES in features_check.bbclass
4447
- Add XFCEBASEBUILDCLASS in xfce bbclass
48+
- Fix several recipes to build with clang from oe-core
49+
- Add ptest support for icu and dosfstools
50+
51+
### Removed
52+
53+
- Deleted recipes - msr-tools
54+
- Remove obsolete 'terminfo' PACKAGECONFIG from clang
4555

4656
## [2025.06] - 2025-06-30
4757

conf/site.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ require ${TOPDIR}/conf/projects/${PROJECT}/config.conf
1111
#YOE_PROFILE = "yoe-musl-systemd-wayland"
1212
#require conf/world.conf
1313

14-
IMG_VERSION = "25.06.2"
14+
IMG_VERSION = "25.06.3"
1515

1616
#INHERIT += "cve-check"

conf/site.conf.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ YOE_PROFILE = "yoe-glibc-systemd-wayland"
2929
# configure docker container to run bitbake in
3030
# for mac hosts `uname -m` may return arm64 which needs
3131
# to be mapped to `aarch64`
32-
export DOCKER_REPO=yoedistro/yoe-build:bookworm-`uname -m`
32+
export DOCKER_REPO=yoedistro/yoe-build:trixie-`uname -m`
3333
# Keep the load in control and do not issue more parallel jobs
3434
# when load hits 1.5 * number of cpus
3535
PARALLEL_MAKE:append = " -l ${@int(os.sysconf(os.sysconf_names['SC_NPROCESSORS_ONLN'])) * 150/100}"

envsetup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ yoe_clean_sstate() {
505505
}
506506

507507
# Docker integration
508-
# set DOCKER_REPO to something like yoedistro/yoe-build:bookworm-x86_64
508+
# set DOCKER_REPO to something like yoedistro/yoe-build:trixie-x86_64
509509
# DOCKER_REPO can be set in scripts that wrap envsetup.sh
510510
# set DOCKER_REPO to 'none' to disable docker
511511

@@ -515,8 +515,8 @@ if [ -z "$DOCKER_REPO" ]; then
515515
elif [ "`uname`" = "Linux" ]; then
516516
dockerarch="-`uname -m`"
517517
fi
518-
echo "Setting DOCKER_REPO to yoedistro/yoe-build:bookworm${dockerarch}"
519-
export DOCKER_REPO=yoedistro/yoe-build:bookworm${dockerarch}
518+
echo "Setting DOCKER_REPO to yoedistro/yoe-build:trixie${dockerarch}"
519+
export DOCKER_REPO=yoedistro/yoe-build:trixie${dockerarch}
520520
fi
521521

522522
check_docker() {

local.sh.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# export HOST_IP=10.10.10.10
1818

1919
# configure docker container to run bitbake in
20-
#export DOCKER_REPO=yoedistro/yoe-build:bookworm-`uname -m`
20+
#export DOCKER_REPO=yoedistro/yoe-build:trixie-`uname -m`
2121

2222
# Flag to control docker launch with pseudo-tty
2323
# when output is piped or redirected to files then

0 commit comments

Comments
 (0)