Update package version to 6.12.68

This commit is contained in:
2026-02-01 11:59:05 +02:00
parent 4acdcc025f
commit e966775197
3 changed files with 20 additions and 2 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
name: linux-lts name: linux-lts
description: The longterm support version of the linux kernel description: The longterm support version of the linux kernel
version: 6.12.67 version: 6.12.68
revision: 1 revision: 1
url: https://www.kernel.org/ url: https://www.kernel.org/
license: GPL2-only license: GPL2-only
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
make_depends: make_depends:
@@ -22,7 +24,7 @@ downloads:
- url: https://cdn.kernel.org/pub/linux/kernel/v${BPM_PKG_VERSION%%.*}.x/linux-${BPM_PKG_VERSION}.tar.xz - url: https://cdn.kernel.org/pub/linux/kernel/v${BPM_PKG_VERSION%%.*}.x/linux-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 16805dc62e1fa5ef8a3f466f3f44a2efb171b5206d6840ced4ba5475cf12c432 checksum: d367c7504bd4da520dd01eb08125d2d0ac088bc8af4cd56d236f2074dd4225b7
split_packages: split_packages:
- name: linux-lts - name: linux-lts
optional_depends: optional_depends:
+13
View File
@@ -0,0 +1,13 @@
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 4db7e4bf69f5..c60371db49d9 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -98,7 +98,7 @@ ifeq ($(CONFIG_X86_KERNEL_IBT),y)
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104816
#
KBUILD_CFLAGS += $(call cc-option,-fcf-protection=branch -fno-jump-tables)
-KBUILD_RUSTFLAGS += -Zcf-protection=branch -Zno-jump-tables
+KBUILD_RUSTFLAGS += -Zcf-protection=branch $(if $(call rustc-min-version,109300),-Cjump-tables=n,-Zno-jump-tables)
else
KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none)
endif
+3
View File
@@ -6,6 +6,9 @@
# This function is used for putting downloaded files to the correct location or applying patches # This function is used for putting downloaded files to the correct location or applying patches
prepare() { prepare() {
cd "$BPM_SOURCE" cd "$BPM_SOURCE"
patch -Np1 -i "$BPM_WORKDIR"/rust-1.93.0-fix.patch
make mrproper make mrproper
cp ../config .config cp ../config .config
} }