-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
recipes-kernel: Update from v6.6 to v6.12
Copy kernel v6.12 recipes from poky 4be6d8c Changelog-entry: Update kernel from v6.6 to v6.12 Signed-off-by: Joseph Kogut <[email protected]>
- Loading branch information
Showing
8 changed files
with
2,163 additions
and
802 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | ||
PREFERRED_VERSION_linux-yocto ?= "6.6%" | ||
PREFERRED_VERSION_linux-yocto ?= "6.12%" | ||
|
||
FIRMWARE_COMPRESSION = "1" |
2,732 changes: 2,004 additions & 728 deletions
2,732
...ecipes-kernel/linux/cve-exclusion_6.6.inc → ...cipes-kernel/linux/cve-exclusion_6.12.inc
Large diffs are not rendered by default.
Oops, something went wrong.
48 changes: 48 additions & 0 deletions
48
layers/meta-balena-generic/recipes-kernel/linux/linux-yocto-rt_6.12.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
KBRANCH ?= "v6.12/standard/preempt-rt/base" | ||
|
||
require recipes-kernel/linux/linux-yocto.inc | ||
|
||
# CVE exclusions | ||
include recipes-kernel/linux/cve-exclusion_6.12.inc | ||
|
||
# Skip processing of this recipe if it is not explicitly specified as the | ||
# PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying | ||
# to build multiple virtual/kernel providers, e.g. as dependency of | ||
# core-image-rt-sdk, core-image-rt. | ||
python () { | ||
if d.getVar("KERNEL_PACKAGE_NAME") == "kernel" and d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt": | ||
raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") | ||
} | ||
|
||
SRCREV_machine ?= "29974e6f86d7ddc55a72fc44d209b84256c69e21" | ||
SRCREV_meta ?= "38b941ae2f4f28c0ba40b2ba6da466f6f5fe3ba0" | ||
|
||
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \ | ||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" | ||
|
||
LINUX_VERSION ?= "6.12.3" | ||
|
||
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
|
||
DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
DEPENDS += "openssl-native util-linux-native" | ||
|
||
PV = "${LINUX_VERSION}+git" | ||
|
||
KMETA = "kernel-meta" | ||
KCONF_BSP_AUDIT_LEVEL = "1" | ||
|
||
LINUX_KERNEL_TYPE = "preempt-rt" | ||
|
||
COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm|qemuarmv5|qemuarm64|qemuppc|qemumips)$" | ||
|
||
KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb" | ||
|
||
# Functionality flags | ||
KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" | ||
KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" | ||
KERNEL_FEATURES:append:qemuall=" cfg/virtio.scc features/drm-bochs/drm-bochs.scc" | ||
KERNEL_FEATURES:append:qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
KERNEL_FEATURES:append:qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "", d)}" | ||
KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}" |
33 changes: 33 additions & 0 deletions
33
layers/meta-balena-generic/recipes-kernel/linux/linux-yocto-tiny_6.12.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
KBRANCH ?= "v6.12/standard/tiny/base" | ||
|
||
LINUX_KERNEL_TYPE = "tiny" | ||
KCONFIG_MODE = "--allnoconfig" | ||
|
||
require recipes-kernel/linux/linux-yocto.inc | ||
|
||
# CVE exclusions | ||
include recipes-kernel/linux/cve-exclusion_6.12.inc | ||
|
||
LINUX_VERSION ?= "6.12.3" | ||
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
|
||
DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
DEPENDS += "openssl-native util-linux-native" | ||
|
||
KMETA = "kernel-meta" | ||
KCONF_BSP_AUDIT_LEVEL = "2" | ||
|
||
SRCREV_machine ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_meta ?= "38b941ae2f4f28c0ba40b2ba6da466f6f5fe3ba0" | ||
|
||
PV = "${LINUX_VERSION}+git" | ||
|
||
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \ | ||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" | ||
|
||
COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm64|qemuarm|qemuarmv5)$" | ||
|
||
# Functionality flags | ||
KERNEL_FEATURES:append:qemuall=" cfg/virtio.scc cfg/fs/ext4.scc" | ||
|
||
KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb" |
2 changes: 1 addition & 1 deletion
2
layers/meta-balena-generic/recipes-kernel/linux/linux-yocto.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
layers/meta-balena-generic/recipes-kernel/linux/linux-yocto_6.12.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
KBRANCH ?= "v6.12/standard/base" | ||
|
||
require recipes-kernel/linux/linux-yocto.inc | ||
|
||
# CVE exclusions | ||
include recipes-kernel/linux/cve-exclusion.inc | ||
include recipes-kernel/linux/cve-exclusion_6.12.inc | ||
|
||
# board specific branches | ||
KBRANCH:qemuarm ?= "v6.12/standard/arm-versatile-926ejs" | ||
KBRANCH:qemuarm64 ?= "v6.12/standard/base" | ||
KBRANCH:qemumips ?= "v6.12/standard/mti-malta32" | ||
KBRANCH:qemuppc ?= "v6.12/standard/qemuppc" | ||
KBRANCH:qemuriscv64 ?= "v6.12/standard/base" | ||
KBRANCH:qemuriscv32 ?= "v6.12/standard/base" | ||
KBRANCH:qemux86 ?= "v6.12/standard/base" | ||
KBRANCH:qemux86.104 ?= "v6.12/standard/base" | ||
KBRANCH:qemuloongarch64 ?= "v6.12/standard/base" | ||
KBRANCH:qemumips64 ?= "v6.12/standard/mti-malta64" | ||
|
||
SRCREV_machine:qemuarm ?= "0c33fda4cb5c0a3dfbdbb2040a8b4affbb34e00a" | ||
SRCREV_machine:qemuarm64 ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemuloongarch64 ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemumips ?= "cb10a94d7ca5ce5c00608ffcea74a79df6b15329" | ||
SRCREV_machine:qemuppc ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemuriscv64 ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemuriscv32 ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemux86 ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemux86-64 ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_machine:qemumips64 ?= "861600ef3aecc4bb78dd57f92e4814c9647f1cd9" | ||
SRCREV_machine ?= "7160a4379dccf0e95526f1ab9be4ef704835074a" | ||
SRCREV_meta ?= "38b941ae2f4f28c0ba40b2ba6da466f6f5fe3ba0" | ||
|
||
# set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll | ||
# get the <version>/base branch, which is pure upstream -stable, and the same | ||
# meta SRCREV as the linux-yocto-standard builds. Select your version using the | ||
# normal PREFERRED_VERSION settings. | ||
BBCLASSEXTEND = "devupstream:target" | ||
SRCREV_machine:class-devupstream ?= "47edb26c8ed9dd1877f8623ee1cd3b998874ca65" | ||
PN:class-devupstream = "linux-yocto-upstream" | ||
KBRANCH:class-devupstream = "v6.12/base" | ||
|
||
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH};protocol=https \ | ||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" | ||
|
||
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
LINUX_VERSION ?= "6.12.3" | ||
|
||
PV = "${LINUX_VERSION}+git" | ||
|
||
KMETA = "kernel-meta" | ||
KCONF_BSP_AUDIT_LEVEL = "1" | ||
|
||
KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb" | ||
|
||
COMPATIBLE_MACHINE = "^(qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemuppc64|qemumips|qemumips64|qemux86-64|qemuriscv64|qemuriscv32|qemuloongarch64)$" | ||
|
||
# Functionality flags | ||
KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" | ||
KERNEL_FEATURES:append:qemuall=" cfg/virtio.scc features/drm-bochs/drm-bochs.scc cfg/net/mdio.scc" | ||
KERNEL_FEATURES:append:qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
KERNEL_FEATURES:append:qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
KERNEL_FEATURES:append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "", d)}" | ||
KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc features/nf_tables/nft_test.scc", "", d)}" | ||
KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}" | ||
KERNEL_FEATURES:append = " ${@bb.utils.contains("KERNEL_DEBUG", "True", " features/reproducibility/reproducibility.scc features/debug/debug-btf.scc", "", d)}" | ||
# libteam ptests from meta-oe needs it | ||
KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/net/team/team.scc", "", d)}" | ||
# openl2tp tests from meta-networking needs it | ||
KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " cgl/cfg/net/l2tp.scc", "", d)}" | ||
KERNEL_FEATURES:append:powerpc =" arch/powerpc/powerpc-debug.scc" | ||
KERNEL_FEATURES:append:powerpc64 =" arch/powerpc/powerpc-debug.scc" | ||
KERNEL_FEATURES:append:powerpc64le =" arch/powerpc/powerpc-debug.scc" | ||
|
||
INSANE_SKIP:kernel-vmlinux:qemuppc64 = "textrel" |
File renamed without changes.
72 changes: 0 additions & 72 deletions
72
layers/meta-balena-generic/recipes-kernel/linux/linux-yocto_6.6.bb
This file was deleted.
Oops, something went wrong.