Skip to content
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

Pin kernel and uboot to stable release revision #9

Merged
merged 5 commits into from
Nov 1, 2023
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
Expand Up @@ -12,6 +12,13 @@ SRC_URI:append = " \
BALENA_DEVICE_FDT_ADDR_VAR = "fdt_addr_r"
BALENA_UBOOT_DEVICE_TYPES = "usb mmc"

# Upstream uses AUTOREV, but we need to track
# the stable release as per the release notes,
# at the date of the present commit,
# otherwise we won't know which exact
# revision is used by which balenaOS release
SRCREV="34382c7df25560904a521d3f62bf5768899c55a2"

# Bring in configure step from poky
# to make sure the merge_config script is called
# appropriately, otherwise the build will fail
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ DEPENDS += "rsync-native"

SRC_URI:append = "file://0001-fix-kernel-build.patch"

# Upstream uses AUTOREV, but we need to track
# the stable release as per the release notes,
# at the date of the present commit,
# otherwise we won't know which exact kernel
# revision is used by which balenaOS release
SRCREV="77c117ac5747ea5c1afbdde8dcc5ca8b8b231e13"

# Fixes issue where cryptodev module is installed
# along with the kernel image in the initramfs
KERNEL_PACKAGE_NAME="kernel"
Expand Down