mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 19:39:40 +01:00
Updating to the latest korg -stable release that comprises
the following commits:
6eae1503ddf9 Linux 5.10.136
1bea03b44ea2 x86/speculation: Add LFENCE to RSB fill sequence
509c2c9fe75e x86/speculation: Add RSB VM Exit protections
e5b556a7b271 macintosh/adb: fix oob read in do_adb_query() function
75742ffc3630 Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3586
40e2e7f1bf03 Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3587
9c45bb363e26 Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0CB8:0xC558
3a292cb18132 Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04C5:0x1675
1a2a2e34569c Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04CA:0x4007
e81f95d03060 Bluetooth: btusb: Add support of IMC Networks PID 0x3568
918ce738e28b Bluetooth: hci_bcm: Add DT compatible for CYW55572
033a4455d9d6 Bluetooth: hci_bcm: Add BCM4349B1 variant
50763f0ac070 selftests: KVM: Handle compiler optimizations in ucall
a56e1ccdb7bb tools/kvm_stat: fix display of error when multiple processes are found
3c77292d52b3 crypto: arm64/poly1305 - fix a read out-of-bound
e2c63e1afdb3 ACPI: APEI: Better fix to avoid spamming the console with old error logs
6ccff35588d2 ACPI: video: Shortening quirk list by identifying Clevo by board_name only
a2b472b152f9 ACPI: video: Force backlight native for some TongFang devices
a01a4e9f5dc9 tun: avoid double free in tun_free_netdev
1069087e2fb1 selftests/bpf: Check dst_port only on the client socket
042fb1c281f3 selftests/bpf: Extend verifier and bpf_sock tests for dst_port loads
78c8397132dd ath9k_htc: fix NULL pointer dereference at ath9k_htc_tx_get_packet()
4f3b85233660 ath9k_htc: fix NULL pointer dereference at ath9k_htc_rxep()
45b69848a2fe x86/speculation: Make all RETbleed mitigations 64-bit only
(From OE-Core rev: 3dbf621c295be2bdf1009dd52f1a4bfe55806173)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
2.0 KiB
BlitzBasic
46 lines
2.0 KiB
BlitzBasic
KBRANCH ?= "v5.10/standard/preempt-rt/base"
|
|
|
|
require recipes-kernel/linux/linux-yocto.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 ?= "53c4c47a43a3309e6aac7c67642877e2fb5f0aa5"
|
|
SRCREV_meta ?= "443f1c2f821e55dd96d115bb09e89f8f106b63d4"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \
|
|
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.10;destsuffix=${KMETA}"
|
|
|
|
LINUX_VERSION ?= "5.10.136"
|
|
|
|
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${SRCPV}"
|
|
|
|
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 = "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", "", d)}"
|