-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare 14.0.rc3 #3707
Prepare 14.0.rc3 #3707
Conversation
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.63 (cherry picked from commit 22dd060)
For yet unknown root cause, the eMMC interface sometimes fails to initialize properly, delaying boot for up to 130 seconds. This can be reduced by ~100s by disabling SD and SDIO modes on the sdio1 interface used for mmc0 before a better patch is found. (cherry picked from commit 489de0b)
The I/O operations on the eMMC can sometimes fail and lock up completely, and disabling CQE on the sdio1 (mmc0) interface seems to solve the issue. While it is a known (and potentially resolved) issue [1] for SD cards in Raspberry Pi's Linux fork, it is not acknowledged neither resolved for CM5's eMMC. With CQE enabled, the device usually locks up within the first 10 first boots, when the swap file is being created. After disabling CQE, no error occurred after more that 100 cold boots (every time with swap file removed). [1] https://github.com/raspberrypi/linuxissues/6349 (cherry picked from commit c514d6b)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.9.0 to 6.10.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6.9.0...v6.10.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit e0ccf39)
📝 WalkthroughWalkthroughThe pull request includes updates to various configuration files and the workflow for the Home Assistant Operating System build. Key changes involve updating the Docker action version, refining the logic for build publishing and versioning, and incrementing the Linux kernel version across multiple configurations from Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Workflow
participant Docker
participant ArtifactStorage
User->>Workflow: Trigger build (manual)
Workflow->>Docker: Build image
Docker->>Workflow: Image built
Workflow->>Workflow: Check publish conditions
alt Publish required
Workflow->>ArtifactStorage: Upload artifacts
ArtifactStorage-->>Workflow: Artifacts uploaded
end
Workflow-->>User: Build completed
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (17)
✅ Files skipped from review due to trivial changes (11)
🔇 Additional comments (9)buildroot-external/board/raspberrypi/yellow/patches/linux/0018-ARM-dts-bcm2712-yellow-Disable-SD-SDIO-modes-on-eMMC.patch (2)
The patch description effectively communicates:
The implementation:
buildroot-external/board/raspberrypi/yellow/patches/linux/0019-ARM-dts-bcm2712-yellow-Disable-CQE-on-eMMC-interface.patch (2)
The patch description effectively demonstrates the problem with:
The change:
buildroot-external/configs/odroid_c4_defconfig (1)
The change is part of a broader kernel update across multiple platform configurations. ✅ Verification successfulKernel version 6.6.63 is consistently set across all platform configurations The verification confirms that all platform configuration files in 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Verify kernel version consistency across all config files
echo "Checking kernel version consistency..."
rg "BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE=" buildroot-external/configs/
Length of output: 1288 buildroot-external/configs/odroid_m1_defconfig (1)
The kernel version update from 6.6.62 to 6.6.63 aligns with the PR objectives. Let's verify this is the latest stable version in the 6.6.x series: ✅ Verification successfulKernel version 6.6.63 is confirmed as the latest stable version in the 6.6.x series The verification confirms that the kernel version update to 6.6.63 in the defconfig file matches the latest stable release in the 6.6.x series according to kernel.org. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check latest stable kernel version in 6.6.x series
curl -s https://www.kernel.org/releases.json | jq -r '.releases[] | select(.version | startswith("6.6.")) | .version' | sort -V | tail -n1
Length of output: 147 buildroot-external/configs/generic_x86_64_defconfig (1)
The kernel version update to 6.6.63 is consistent with other configuration files and aligns with the PR objectives. .github/workflows/build.yaml (2)Line range hint The workflow effectively handles:
The update from v6.9.0 to v6.10.0 needs verification for any breaking changes or security fixes. Let's check the changelog: ✅ Verification successfulUpdate to docker/[email protected] is safe to proceed The changelog shows no breaking changes. The update includes:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check changelog for docker/build-push-action
gh api repos/docker/build-push-action/releases/tags/v6.10.0 --jq '.body'
Length of output: 598 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary by CodeRabbit
Release Notes
New Features
Bug Fixes
Version Updates