mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 01:49:40 +01:00
Updating linux-yocto/5.8 to the latest korg -stable release that comprises
the following commits:
9ece50d8a470 Linux 5.8.5
c05dea7c0f3f binfmt_flat: revert "binfmt_flat: don't offset the data start"
44f639d5aeda io_uring: fix missing ->mm on exit
3f4be7a7db9f netlink: fix state reallocation in policy export
1c0be9a99c9c ethtool: Don't omit the netlink reply if no features were changed
507d7ac63fad ethtool: Account for hw_features in netlink interface
e53140320193 ethtool: Fix preserving of wanted feature bits in netlink interface
da995e0a6dac net: ena: Make missed_tx stat incremental
3942262b7499 tipc: fix uninit skb->data in tipc_nl_compat_dumpit()
828fd2e892b0 tipc: call rcu_read_lock() in tipc_aead_encrypt_done()
22f2be57784e net/smc: Prevent kernel-infoleak in __smc_diag_dump()
df805b956877 net: sctp: Fix negotiation of the number of data streams.
4c1fc05e5d6a net/sched: act_ct: Fix skb double-free in tcf_ct_handle_fragments() error flow
351366ffef2c net: qrtr: fix usage of idr in port assignment to socket
c4c76ec584a7 net: nexthop: don't allow empty NHA_GROUP
a75f8a60c415 net: Fix potential wrong skb->protocol in skb_vlan_untag()
3f13223bb0b1 gre6: Fix reception with IP6_TNL_F_RCV_DSCP_COPY
(From OE-Core rev: ccea217e6f8d8489e71b0801953542faf679d23d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
45 lines
1.9 KiB
BlitzBasic
45 lines
1.9 KiB
BlitzBasic
KBRANCH ?= "v5.8/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 ?= "ded3e9afb3262feb367227c63da1f762f893b192"
|
|
SRCREV_meta ?= "0a4bef3856894e8bca3c74c97e7924ad262c0dc8"
|
|
|
|
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.8;destsuffix=${KMETA}"
|
|
|
|
LINUX_VERSION ?= "5.8.5"
|
|
|
|
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 = "2"
|
|
|
|
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)}"
|