Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
LINUX_VERSION ?= "6.12.30"
LINUX_RPI_BRANCH ?= ""
LINUX_RPI_KMETA_BRANCH ?= "yocto-6.12"

SRCREV_machine = "1ec873f3f18c98f0dc6d51db5b75958e109a0e5c"
SRCREV_meta = "60484dda26122958e5f4d8f813424fa637770bf6"
require linux-raspberrypi_6.12.inc

KMETA = "kernel-meta"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
LINUX_VERSION ?= "6.12.30"
LINUX_RPI_BRANCH ?= ""
LINUX_RPI_KMETA_BRANCH ?= "yocto-6.12"

SRCREV_machine = "1ec873f3f18c98f0dc6d51db5b75958e109a0e5c"
SRCREV_meta = "60484dda26122958e5f4d8f813424fa637770bf6"
require linux-raspberrypi_6.12.inc

KMETA = "kernel-meta"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

# To update the kernel:
#
# 1. Find latest upstream merge at https://github.com/raspberrypi/linux/commits/rpi-6.12.y
# Update SRCREV_machine to the merge commit hash
# - SRCREV_machine = "676b222160afa6c3f3fb60a292946096bd2fcdb6"
#
# 2. Find the version bump commit a few commits before the merge
# Update LINUX_VERSION to match the SUBLEVEL in Makefile
# - LINUX_VERSION = "6.12.32"
#
# 3. Find matching yocto-kernel-cache commit at https://git.yoctoproject.org/yocto-kernel-cache
# Look for "bump to 6.12.xx" commit on yocto-6.12 branch
# Update SRCREV_meta to that commit hash
# - SRCREV_meta = "0d1b94bc6669a9573f15b9a83a288cc5a666c9ee"
#
# Note: Not all kernel versions have corresponding yocto-kernel-cache commits immediately

LINUX_VERSION ?= "6.12.32"
LINUX_RPI_BRANCH ?= ""
LINUX_RPI_KMETA_BRANCH ?= "yocto-6.12"

SRCREV_machine = "676b222160afa6c3f3fb60a292946096bd2fcdb6"
SRCREV_meta = "0d1b94bc6669a9573f15b9a83a288cc5a666c9ee"
Loading