All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] kernel: consolidated pull request
@ 2020-12-22 14:28 Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 1/9] kern-tools: non-gcc config support and option re-classification Bruce Ashfield
                   ` (9 more replies)
  0 siblings, 10 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

This is largely a resend of the configuration changes and kernel version
bump that I had previously sent.

The kern-tools SRCREV bump has a tweak in the tools from the previous
version, and there are specific fixups for the warnings that the tools were
now exposing. I had to balance tiny and standard needing different values
for some common options!

The AB run that I did is here: https://autobuilder.yoctoproject.org/typhoon/#/builders/85/builds/1270

Everything looks good to me (but I only just realized that there are now
multiple pages to check) :).

I've also included the systemtap uprev that was sitting on the list, since
I ran into issues with v5.10 and systemtap, and the bump was most of the fix.
I left the original uprev and my fixup separate, so credit for the work would
be preserved. My fixup can probably be dropped in the future, but I'd prefer
to keep systemtap building, giving that 5.10 is just about ready.

Cheers,

Bruce

The following changes since commit 9aae620b9515e925db4a043a96fda2a6b6b0b5bd:

  gcsections: add more suppressions for SDK builds (2020-12-20 00:03:34 +0000)

are available in the Git repository at:

  git://git.yoctoproject.org/poky-contrib zedd/kernel
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (8):
  kern-tools: non-gcc config support and option re-classification
  linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y'
  linux-yocto/5.4: update to v5.4.82
  linux-yocto/cfg: qemuarm64-gfx.cfg: add CONFIG_INPUT_UINPUT
  linux-yocto/5.4: update to v5.4.83
  linux-yocto/5.8/cfg: fix -tiny warnings
  linux-yocto/5.4/cfg: fix -tiny warnings
  systemtap: fix on target build for 4.4 and 5.10+

zangrc (1):
  systemtap: upgrade 4.3 -> 4.4

 .../kern-tools/kern-tools-native_git.bb       |  2 +-
 .../linux/linux-yocto-rt_5.4.bb               |  6 +--
 .../linux/linux-yocto-rt_5.8.bb               |  2 +-
 .../linux/linux-yocto-tiny_5.4.bb             |  8 ++--
 .../linux/linux-yocto-tiny_5.8.bb             |  2 +-
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 +++++-----
 meta/recipes-kernel/linux/linux-yocto_5.8.bb  |  2 +-
 ...t-include-and-callsite-with-same-con.patch | 44 +++++++++++++++++++
 .../systemtap/systemtap_git.inc               |  5 ++-
 9 files changed, 69 insertions(+), 24 deletions(-)
 create mode 100644 meta/recipes-kernel/systemtap/systemtap/0001-transport-protect-include-and-callsite-with-same-con.patch

-- 
2.19.1


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [PATCH 1/9] kern-tools: non-gcc config support and option re-classification
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y' Bruce Ashfield
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Integrating the following commits:

  1aa9046 merge_config.sh: Translate some env variables to make variables
  6fdcd64 symbol_why: allow re-classification from non-hardare to hardware

With these, a non-gcc compiler can be used, since the invocation of the
kernel configuration explicitly passes the variables as command line
vars, versus environment variables. This means the kernel Makefile
assignments are overriden and the desired compiler used.

With option re-classification, we can inhibit warnings when an option
has incorrectly been classified has 'hardware', and hence triggers a
visible warning.

[merge_config.sh: Translate some env variables to make variables]
Signed-off-by: Tyler Hicks <tyhicks@linux.microsoft.com>
[symbol_why: allow re-classification from non-hardare to hardware]
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
index ea33732a3e..27eef7fb6a 100644
--- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
+++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249
 
 DEPENDS = "git-native"
 
-SRCREV = "df4390b18a500a1a7d4695e1856971f8e36ce517"
+SRCREV = "73f813024d33432116a122524fd2ae48afc910c7"
 PR = "r12"
 PV = "0.2+git${SRCPV}"
 
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y'
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 1/9] kern-tools: non-gcc config support and option re-classification Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-24 14:48   ` [OE-core] " Steve Sakoman
  2020-12-22 14:28 ` [PATCH 3/9] linux-yocto/5.4: update to v5.4.82 Bruce Ashfield
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Integrating the following configuration commit(s):

    72a1fe336d7 qemuppc: configure the CONFIG_SCSI to '=y'

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb   | 2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb   | 2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +-
 meta/recipes-kernel/linux/linux-yocto_5.4.bb      | 2 +-
 meta/recipes-kernel/linux/linux-yocto_5.8.bb      | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
index d415c3c63a..8bc93bf438 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
@@ -12,7 +12,7 @@ python () {
 }
 
 SRCREV_machine ?= "1ab0814d41526c27888888188d884884c8b4a52d"
-SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
+SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
 
 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.4;destsuffix=${KMETA}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
index 033dfc76a2..f5f7c87a31 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
@@ -12,7 +12,7 @@ python () {
 }
 
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
+SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
 
 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}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
index 33ca5856a3..3b462d5872 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
@@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
 
 SRCREV_machine_qemuarm ?= "9a4d015ce467549f5f587a5001cd333ea7182aa2"
 SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
+SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
index 50cee07620..4afddae092 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
@@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
 
 SRCREV_machine_qemuarm ?= "9509db6e3ed6a23b1f7495b53248d1cbfe22710b"
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
+SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
index 1a14c8bdb5..456875a7b5 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
@@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
 SRCREV_machine_qemux86-64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
 SRCREV_machine_qemumips64 ?= "f8d0d215cf1a02a1e2915b8d57fb8f9f29e5dc49"
 SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
+SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
 
 # remap qemuarm to qemuarma15 for the 5.4 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.8.bb b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
index af576891e2..3f94d22654 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
@@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
 SRCREV_machine_qemux86-64 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
 SRCREV_machine_qemumips64 ?= "01a02b058f9a8941032b298b8d25c673526152f4"
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
+SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
 
 # remap qemuarm to qemuarma15 for the 5.8 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 3/9] linux-yocto/5.4: update to v5.4.82
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 1/9] kern-tools: non-gcc config support and option re-classification Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y' Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 4/9] linux-yocto/cfg: qemuarm64-gfx.cfg: add CONFIG_INPUT_UINPUT Bruce Ashfield
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Updating linux-yocto/5.4 to the latest korg -stable release that comprises
the following commits:

    ec274ecd62f9 Linux 5.4.82
    4460a7c979ee RDMA/i40iw: Address an mmap handler exploit in i40iw
    07434172c58b tracing: Remove WARN_ON in start_thread()
    6ad995b851cb Input: i8042 - add ByteSpeed touchpad to noloop table
    dfe5d9a8307e Input: xpad - support Ardwiino Controllers
    c38a7023c00a ALSA: usb-audio: US16x08: fix value count for level meters
    8cd76dacd3dc net/mlx5: Fix wrong address reclaim when command interface is down
    2598dd80b801 net/mlx5: DR, Proper handling of unsupported Connect-X6DX SW steering
    8f92330b0873 net/sched: act_mpls: ensure LSE is pullable before reading it
    1086f789060a net: openvswitch: ensure LSE is pullable before reading it
    ba203b92a829 net: skbuff: ensure LSE is pullable before decrementing the MPLS ttl
    892e08e0b4f3 net: mvpp2: Fix error return code in mvpp2_open()
    7c3894f695e4 chelsio/chtls: fix a double free in chtls_setkey()
    178da08f9b5b vxlan: fix error return code in __vxlan_dev_create()
    5405a299b8c1 net: pasemi: fix error return code in pasemi_mac_open()
    dc469f423654 cxgb3: fix error return code in t3_sge_alloc_qset()
    8bfe5b73b185 net/x25: prevent a couple of overflows
    187a6daf5db4 net: ip6_gre: set dev->hard_header_len when using header_ops
    a6cd76132872 geneve: pull IP header before ECN decapsulation
    2b714b607f24 inet_ecn: Fix endianness of checksum update when setting ECT(1)
    9a3cce1ceee4 ibmvnic: Fix TX completion error handling
    40caea31dd56 ibmvnic: Ensure that SCRQ entry reads are correctly ordered
    d126c30eb30d chelsio/chtls: fix panic during unload reload chtls
    8a1bb298f75f dt-bindings: net: correct interrupt flags in examples
    af0b082e16fb ipv4: Fix tos mask in inet_rtm_getroute()
    4615228a50f9 netfilter: bridge: reset skb->pkt_type after NF_INET_POST_ROUTING traversal
    294de8933adb sched/fair: Fix unthrottle_cfs_rq() for leaf_cfs_rq list
    c4405cdf96f4 ima: extend boot_aggregate with kernel measurements
    733729d3e0e4 staging/octeon: fix up merge error
    6dd37fdc9550 bonding: wait for sysfs kobject destruction before freeing struct slave
    beead010654d usbnet: ipheth: fix connectivity with iOS 14
    f057c4d226f1 tun: honor IOCB_NOWAIT flag
    538008749df2 tcp: Set INET_ECN_xmit configuration in tcp_reinit_congestion_control
    9a62c8229cff sock: set sk_err to ee_errno on dequeue from errq
    7f0ddd41e289 rose: Fix Null pointer dereference in rose_send_frame()
    f2f25bc79782 net/tls: Protect from calling tls_dev_del for TLS RX twice
    a6300aedf862 net/tls: missing received data after fast remote close
    a15beea80e72 net/af_iucv: set correct sk_protocol for child sockets
    9414855a1305 ipv6: addrlabel: fix possible memory leak in ip6addrlbl_net_init
    99b5382bffd5 devlink: Hold rtnl lock while reading netdev attributes
    42af416d7146 Linux 5.4.81
    cd7343987376 ASoC: Intel: Skylake: Automatic DMIC format configuration according to information from NHLT
    6ebb6af62721 ASoC: Intel: Multiple I/O PCM format support for pipe
    b2b05b04d44d ASoC: Intel: Skylake: Await purge request ack on CNL
    a28144d62ddc ASoC: Intel: Allow for ROM init retry on CNL platforms
    4029a29f93ef ASoC: Intel: Skylake: Shield against no-NHLT configurations
    754df2d3349d ASoC: Intel: Skylake: Enable codec wakeup during chip init
    6de661f146a2 ASoC: Intel: Skylake: Select hda configuration permissively
    422c4938f704 ASoC: Intel: Skylake: Remove superfluous chip initialization
    23b093a2c4f9 USB: core: Fix regression in Hercules audio card
    cc54f8b8e1cd x86/resctrl: Add necessary kernfs_put() calls to prevent refcount leak
    d0c4c5a89f5b x86/resctrl: Remove superfluous kernfs_get() calls to prevent refcount leak
    e799c00a745e x86/speculation: Fix prctl() when spectre_v2_user={seccomp,prctl},ibpb
    f753e1c02a2e x86/mce: Do not overwrite no_way_out if mce_end() fails
    62405223bafd irqchip/exiu: Fix the index of fwspec for IRQ type
    f69d749d5f7f usb: gadget: Fix memleak in gadgetfs_fill_super
    cad7b76a6129 USB: quirks: Add USB_QUIRK_DISCONNECT_SUSPEND quirk for Lenovo A630Z TIO built-in usb-audio card
    c775935dfd1e usb: gadget: f_midi: Fix memleak in f_midi_alloc
    e1a2a3043cc2 USB: core: Change %pK for __user pointers to %px
    84d04d722b6a spi: bcm2835aux: Restore err assignment in bcm2835aux_spi_probe
    5849e7dc560b perf probe: Fix to die_entrypc() returns error correctly
    27193c41d0db perf stat: Use proper cpu for shadow stats
    dc4d672a3fb5 can: m_can: fix nominal bitiming tseg2 min for version >= 3.1
    1f076cc1de82 can: m_can: m_can_open(): remove IRQF_TRIGGER_FALLING from request_threaded_irq()'s flags
    dd8ab85fd88e RDMA/hns: Bugfix for memory window mtpt configuration
    e69f384e22f1 RDMA/hns: Fix retry_cnt and rnr_cnt when querying QP
    49b26b969474 platform/x86: toshiba_acpi: Fix the wrong variable assignment
    fbd3f1d6ef2f platform/x86: thinkpad_acpi: Send tablet mode switch at wakeup time
    405fd2180583 can: gs_usb: fix endianess problem with candleLight firmware
    11420c32c1b4 efi: EFI_EARLYCON should depend on EFI
    0d245cbd939a efivarfs: revert "fix memory leak in efivarfs_create()"
    abae897f283b arm64: tegra: Wrong AON HSP reg property size
    5c4c6b2be717 optee: add writeback to valid memory type
    6d371c3e70d7 ibmvnic: fix NULL pointer dereference in ibmvic_reset_crq
    382383538f68 ibmvnic: fix NULL pointer dereference in reset_sub_crq_queues
    a447dbb44d44 net: ena: set initial DMA width to avoid intel iommu issue
    7869696d6c1e nfc: s3fwrn5: use signed integer for parsing GPIO numbers
    1a831f889db3 i40e: Fix removing driver while bare-metal VFs pass traffic
    676857f78c1a IB/mthca: fix return value of error branch in mthca_init_cq()
    22f821fa5cbb powerpc/64s: Fix allnoconfig build since uaccess flush
    ae6e75b8c6d6 ibmvnic: notify peers when failover and migration happen
    7b4e9fcf5ec3 ibmvnic: fix call_netdevice_notifiers in do_reset
    993e42d0f7d6 s390/qeth: fix tear down of async TX buffers
    ef0f6e36a6d4 s390/qeth: fix af_iucv notification race
    bb6c548934c9 s390/qeth: make af_iucv TX notification call more robust
    f29dfa2bf6c7 cxgb4: fix the panic caused by non smac rewrite
    0410aeb9e04c bnxt_en: Release PCI regions when DMA mask setup fails during probe.
    db49200b1dad video: hyperv_fb: Fix the cache type when mapping the VRAM
    d1a7fb15673e bnxt_en: fix error return code in bnxt_init_board()
    22e10c6bbefc bnxt_en: fix error return code in bnxt_init_one()
    11b62fd00c62 scsi: ufs: Fix race between shutdown and runtime resume flow
    559ab6fb7b66 ARM: dts: dra76x: m_can: fix order of clocks
    1bef5f25a692 arch: pgtable: define MAX_POSSIBLE_PHYSMEM_BITS where needed
    95b1f326315b batman-adv: set .owner to THIS_MODULE
    f5672b83fc2d iwlwifi: mvm: write queue_sync_state only for sync
    f32a1065c930 phy: tegra: xusb: Fix dangling pointer on probe failure
    acea5424d9d2 ARM: OMAP2+: Manage MPU state properly for omap_enter_idle_coupled()
    6f87d79ef40d bus: ti-sysc: Fix bogus resetdone warning on enable for cpsw
    e8060ddddc9f net: dsa: mv88e6xxx: Wait for EEPROM done after HW reset
    1f5531bb9720 xtensa: uaccess: Add missing __user to strncpy_from_user() prototype
    3753a62d5760 perf/x86: fix sysfs type mismatches
    fd81f0711d9c scsi: target: iscsi: Fix cmd abort fabric stop race
    8814c070e783 scsi: libiscsi: Fix NOP race condition
    070a9a046d6d dmaengine: pl330: _prep_dma_memcpy: Fix wrong burst size
    8a2ae7fa5d5c vhost scsi: fix cmd completion race
    4940816604e3 nvme: free sq/cq dbbuf pointers when dbbuf set fails
    01968f9af006 proc: don't allow async path resolution of /proc/self components
    830f4aa73a69 HID: Add Logitech Dinovo Edge battery quirk
    4d070afa1080 HID: logitech-hidpp: Add HIDPP_CONSUMER_VENDOR_KEYS quirk for the Dinovo Edge
    204dbc26f14e x86/xen: don't unbind uninitialized lock_kicker_irq
    d6b5dc5429f1 dmaengine: xilinx_dma: use readl_poll_timeout_atomic variant
    54b01ded1e92 HID: add HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE for Gamevice devices
    cd7ea86a4a64 staging: ralink-gdma: fix kconfig dependency bug for DMA_RALINK
    b3701c29a468 HID: hid-sensor-hub: Fix issue with devices with no report ID
    8f68a28c9ecc Input: i8042 - allow insmod to succeed on devices without an i8042 controller
    dbe67dcf97cf HID: add support for Sega Saturn
    3845b2117f6d HID: cypress: Support Varmilo Keyboards' media hotkeys
    604912c2b20e HID: ite: Replace ABS_MISC 120/121 events with touchpad on/off keypresses
    8a35be6c38aa HID: uclogic: Add ID for Trust Flex Design Tablet
    733e6db9736d arm64: pgtable: Ensure dirty bit is preserved across pte_wrprotect()
    b456de294ee4 arm64: pgtable: Fix pte_accessible()
    8b4d82d8dbff trace: fix potenial dangerous pointer
    4a301b05cf61 KVM: x86: Fix split-irqchip vs interrupt injection window request
    b7d2e45cf613 KVM: x86: handle !lapic_in_kernel case in kvm_cpu_*_extint
    6276d38cce87 KVM: arm64: vgic-v3: Drop the reporting of GICR_TYPER.Last for userspace
    45b5f4b1b40b KVM: PPC: Book3S HV: XIVE: Fix possible oops when accessing ESB page
    214e6af4217a cifs: fix a memleak with modefromsid
    56f639aa0b5d smb3: Handle error case during offload read path
    afa51221b911 smb3: Avoid Mid pending list corruption
    1b63215666c0 smb3: Call cifs reconnect from demultiplex thread
    f923044a6c72 wireless: Use linux/stddef.h instead of stddef.h
    a6676b0fa09f btrfs: fix lockdep splat when reading qgroup config on mount
    6ea14731ac4c btrfs: don't access possibly stale fs_info data for printing duplicate device
    12aedea58281 btrfs: tree-checker: add missing returns after data_ref alignment checks
    0115a2613397 btrfs: tree-checker: add missing return after error in root_item
    6ec51459df71 netfilter: clear skb->next in NF_HOOK_LIST()
    ee791835b3ec ipv4: use IS_ENABLED instead of ifdef
    9d16996369fd spi: bcm2835: Fix use-after-free on unbind
    b606031bbfed spi: bcm-qspi: Fix use-after-free on unbind

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 .../linux/linux-yocto-rt_5.4.bb               |  6 ++---
 .../linux/linux-yocto-tiny_5.4.bb             |  8 +++----
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 +++++++++----------
 3 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
index 8bc93bf438..2bd41965a6 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
@@ -11,13 +11,13 @@ python () {
         raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
 }
 
-SRCREV_machine ?= "1ab0814d41526c27888888188d884884c8b4a52d"
-SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
+SRCREV_machine ?= "65a53ac9134b9736ae67afc5fb02049f4908d8e3"
+SRCREV_meta ?= "e872ef155c596e4cc2f68405d85ab6f2b0303c28"
 
 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.4;destsuffix=${KMETA}"
 
-LINUX_VERSION ?= "5.4.80"
+LINUX_VERSION ?= "5.4.82"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
index 3b462d5872..67157b1685 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
@@ -6,7 +6,7 @@ KCONFIG_MODE = "--allnoconfig"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-LINUX_VERSION ?= "5.4.80"
+LINUX_VERSION ?= "5.4.82"
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
 
 DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
@@ -15,9 +15,9 @@ DEPENDS += "openssl-native util-linux-native"
 KMETA = "kernel-meta"
 KCONF_BSP_AUDIT_LEVEL = "2"
 
-SRCREV_machine_qemuarm ?= "9a4d015ce467549f5f587a5001cd333ea7182aa2"
-SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
+SRCREV_machine_qemuarm ?= "0c335c490cfe932664f2e40c791efa387f769df5"
+SRCREV_machine ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_meta ?= "e872ef155c596e4cc2f68405d85ab6f2b0303c28"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
index 456875a7b5..4d60d0a557 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
@@ -12,16 +12,16 @@ KBRANCH_qemux86  ?= "v5.4/standard/base"
 KBRANCH_qemux86-64 ?= "v5.4/standard/base"
 KBRANCH_qemumips64 ?= "v5.4/standard/mti-malta64"
 
-SRCREV_machine_qemuarm ?= "9c4e95c4439a84d2472404af630659ee3ac880e8"
-SRCREV_machine_qemuarm64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_machine_qemumips ?= "07747fd48470e60ea2323df735795d9d44b74edc"
-SRCREV_machine_qemuppc ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_machine_qemuriscv64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_machine_qemux86 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_machine_qemux86-64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_machine_qemumips64 ?= "f8d0d215cf1a02a1e2915b8d57fb8f9f29e5dc49"
-SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
-SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
+SRCREV_machine_qemuarm ?= "844ffab23aca849f9f4cf89866229e079fc7aa11"
+SRCREV_machine_qemuarm64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_machine_qemumips ?= "7937b24594ecce307971a3b2871fc1286055d0c4"
+SRCREV_machine_qemuppc ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_machine_qemuriscv64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_machine_qemux86 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_machine_qemux86-64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_machine_qemumips64 ?= "0ba329b53891de44e4ef8d2ca8a948e1c6a5866c"
+SRCREV_machine ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
+SRCREV_meta ?= "e872ef155c596e4cc2f68405d85ab6f2b0303c28"
 
 # remap qemuarm to qemuarma15 for the 5.4 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
@@ -30,7 +30,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRA
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
-LINUX_VERSION ?= "5.4.80"
+LINUX_VERSION ?= "5.4.82"
 
 DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
 DEPENDS += "openssl-native util-linux-native"
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 4/9] linux-yocto/cfg: qemuarm64-gfx.cfg: add CONFIG_INPUT_UINPUT
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (2 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 3/9] linux-yocto/5.4: update to v5.4.82 Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 5/9] linux-yocto/5.4: update to v5.4.83 Bruce Ashfield
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Integrating the following commit(s):

    qemuarm64-gfx.cfg: add CONFIG_INPUT_UINPUT

    This will address libinput ptest failures:
    https://www.kernel.org/doc/html/latest/input/uinput.html
    https://wayland.freedesktop.org/libinput/doc/latest/test-suite.html

    qemux86_64 already has it enabled.

    Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb   | 2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb   | 2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +-
 meta/recipes-kernel/linux/linux-yocto_5.4.bb      | 2 +-
 meta/recipes-kernel/linux/linux-yocto_5.8.bb      | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
index 2bd41965a6..5162c065ed 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
@@ -12,7 +12,7 @@ python () {
 }
 
 SRCREV_machine ?= "65a53ac9134b9736ae67afc5fb02049f4908d8e3"
-SRCREV_meta ?= "e872ef155c596e4cc2f68405d85ab6f2b0303c28"
+SRCREV_meta ?= "104cf3e89371ac8971fef69f55a6c788c46ec65a"
 
 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.4;destsuffix=${KMETA}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
index f5f7c87a31..fae984cd4e 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
@@ -12,7 +12,7 @@ python () {
 }
 
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
+SRCREV_meta ?= "25b672aa4759b6ceb48777eb586033a186091692"
 
 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}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
index 67157b1685..01de087128 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
@@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
 
 SRCREV_machine_qemuarm ?= "0c335c490cfe932664f2e40c791efa387f769df5"
 SRCREV_machine ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_meta ?= "e872ef155c596e4cc2f68405d85ab6f2b0303c28"
+SRCREV_meta ?= "104cf3e89371ac8971fef69f55a6c788c46ec65a"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
index 4afddae092..b98d99a81f 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
@@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
 
 SRCREV_machine_qemuarm ?= "9509db6e3ed6a23b1f7495b53248d1cbfe22710b"
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
+SRCREV_meta ?= "25b672aa4759b6ceb48777eb586033a186091692"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
index 4d60d0a557..ebd25dab3e 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
@@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
 SRCREV_machine_qemux86-64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
 SRCREV_machine_qemumips64 ?= "0ba329b53891de44e4ef8d2ca8a948e1c6a5866c"
 SRCREV_machine ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_meta ?= "e872ef155c596e4cc2f68405d85ab6f2b0303c28"
+SRCREV_meta ?= "104cf3e89371ac8971fef69f55a6c788c46ec65a"
 
 # remap qemuarm to qemuarma15 for the 5.4 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.8.bb b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
index 3f94d22654..a2dacb2676 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
@@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
 SRCREV_machine_qemux86-64 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
 SRCREV_machine_qemumips64 ?= "01a02b058f9a8941032b298b8d25c673526152f4"
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
+SRCREV_meta ?= "25b672aa4759b6ceb48777eb586033a186091692"
 
 # remap qemuarm to qemuarma15 for the 5.8 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 5/9] linux-yocto/5.4: update to v5.4.83
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (3 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 4/9] linux-yocto/cfg: qemuarm64-gfx.cfg: add CONFIG_INPUT_UINPUT Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 6/9] linux-yocto/5.8/cfg: fix -tiny warnings Bruce Ashfield
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Updating linux-yocto/5.4 to the latest korg -stable release that comprises
the following commits:

    2bff021f53b2 Linux 5.4.83
    66a08d1d3bd8 Revert "geneve: pull IP header before ECN decapsulation"
    ed58971beb47 x86/insn-eval: Use new for_each_insn_prefix() macro to loop over prefixes bytes
    423e1b08ce5c netfilter: nftables_offload: set address type in control dissector
    13995410b616 netfilter: nf_tables: avoid false-postive lockdep splat
    f25fa580f99e Input: i8042 - fix error return code in i8042_setup_aux()
    b9df537e5fcd dm writecache: remove BUG() and fail gracefully instead
    8e2c50315f00 i2c: qup: Fix error return code in qup_i2c_bam_schedule_desc()
    1015eefe10e2 rtw88: debug: Fix uninitialized memory in debugfs code
    af699e99efdc ASoC: wm_adsp: fix error return code in wm_adsp_load()
    fdc1416c2199 tipc: fix a deadlock when flushing scheduled work
    6410c7f53698 netfilter: ipset: prevent uninit-value in hash_ip6_add
    cd928d387b0b gfs2: check for empty rgrp tree in gfs2_ri_update
    c358e7e99dda can: af_can: can_rx_unregister(): remove WARN() statement from list operation sanity check
    867fbf2bb739 lib/syscall: fix syscall registers retrieval on 32-bit platforms
    f68f5bdfefd9 tracing: Fix userstacktrace option for instances
    dbbf6cdab503 iommu/amd: Set DTE[IntTabLen] to represent 512 IRTEs
    d863a4ad3cc5 spi: bcm2835: Release the DMA channel if probe fails after dma_init
    83d5121c3b0f i2c: imx: Check for I2SR_IAL after every byte
    83366a7b2d34 i2c: imx: Fix reset of I2SR_IAL flag
    b0d4fa10bfcc speakup: Reject setting the speakup line discipline outside of speakup
    a2a163f70bdf mm/swapfile: do not sleep with a spin lock held
    4870004d30e3 mm: list_lru: set shrinker map bit when child nr_items is not zero
    42ccf9d14ede coredump: fix core_pattern parse error
    579c977253b6 x86/uprobes: Do not use prefixes.nbytes when looping over prefixes.bytes
    002d2c4a3f66 dm: remove invalid sparse __acquires and __releases annotations
    3b02d67064ff dm: fix bug with RCU locking in dm_blk_report_zones
    7eb514087cdd powerpc/pseries: Pass MSI affinity to irq_create_mapping()
    1f72986fc9df genirq/irqdomain: Add an irq_create_mapping_affinity() function
    6466119452a8 powerpc/64s/powernv: Fix memory corruption when saving SLB entries on MCE
    8a758e97b707 dm writecache: fix the maximum number of arguments
    3f680c5996f9 scsi: mpt3sas: Fix ioctl timeout
    812dff6a5250 drm/i915/gt: Program mocs:63 for cache eviction on gen9
    b92738c4f9d3 thunderbolt: Fix use-after-free in remove_unplugged_switch()
    ed201cb54d6f i2c: imx: Don't generate STOP condition if arbitration has been lost
    73948ab9f2df cifs: fix potential use-after-free in cifs_echo_request()
    a0ca8cb2f707 cifs: allow syscalls to be restarted in __smb_send_rqst()
    205740ca4a4d ftrace: Fix updating FTRACE_FL_TRAMP
    d18379bbb856 ALSA: hda/generic: Add option to enforce preferred_dacs pairs
    f28666e00a44 ALSA: hda/realtek - Add new codec supported for ALC897
    c57556f1798b ALSA: hda/realtek: Enable headset of ASUS UX482EG & B9400CEA with ALC294
    f3fc36614438 ALSA: hda/realtek: Add mute LED quirk to yet another HP x360 model
    de41002d2e0e ALSA: hda/realtek: Fix bass speaker DAC assignment on Asus Zephyrus G14
    35ee9ac51328 tty: Fix ->session locking
    c536ecd48560 tty: Fix ->pgrp locking in tiocspgrp()
    013d2d046532 USB: serial: option: fix Quectel BG96 matching
    3cf949422734 USB: serial: option: add support for Thales Cinterion EXS82
    0f8af69bec41 USB: serial: option: add Fibocom NL668 variants
    250930f60c33 USB: serial: ch341: sort device-id entries
    25b90f887dd4 USB: serial: ch341: add new Product ID for CH341A
    f0990c21af7d USB: serial: kl5kusb105: fix memleak on open
    8954745718e7 usb: gadget: f_fs: Use local copy of descriptors for userspace copy
    4a77729b25d6 Partially revert bpf: Zero-fill re-used per-cpu map element
    512b18eec5c2 pinctrl: baytrail: Fix pin being driven low for a while on gpiod_get(..., GPIOD_OUT_HIGH)
    e90d11d0be10 pinctrl: baytrail: Replace WARN with dev_info_once when setting direct-irq pin to output

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 .../linux/linux-yocto-rt_5.4.bb               |  6 ++---
 .../linux/linux-yocto-tiny_5.4.bb             |  8 +++----
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 +++++++++----------
 3 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
index 5162c065ed..3754abbc66 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
@@ -11,13 +11,13 @@ python () {
         raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
 }
 
-SRCREV_machine ?= "65a53ac9134b9736ae67afc5fb02049f4908d8e3"
-SRCREV_meta ?= "104cf3e89371ac8971fef69f55a6c788c46ec65a"
+SRCREV_machine ?= "7bc8ae3fc04fdc06192d39d725cb18d4c0b78d9f"
+SRCREV_meta ?= "cd9826707f887241a661ea886cfa19f8d282438c"
 
 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.4;destsuffix=${KMETA}"
 
-LINUX_VERSION ?= "5.4.82"
+LINUX_VERSION ?= "5.4.83"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
index 01de087128..b06db10f9f 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
@@ -6,7 +6,7 @@ KCONFIG_MODE = "--allnoconfig"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-LINUX_VERSION ?= "5.4.82"
+LINUX_VERSION ?= "5.4.83"
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
 
 DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
@@ -15,9 +15,9 @@ DEPENDS += "openssl-native util-linux-native"
 KMETA = "kernel-meta"
 KCONF_BSP_AUDIT_LEVEL = "2"
 
-SRCREV_machine_qemuarm ?= "0c335c490cfe932664f2e40c791efa387f769df5"
-SRCREV_machine ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_meta ?= "104cf3e89371ac8971fef69f55a6c788c46ec65a"
+SRCREV_machine_qemuarm ?= "2b6db4fbe53a1986c0249bc663d8ce7d99cbf19c"
+SRCREV_machine ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_meta ?= "cd9826707f887241a661ea886cfa19f8d282438c"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
index ebd25dab3e..21935ac171 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
@@ -12,16 +12,16 @@ KBRANCH_qemux86  ?= "v5.4/standard/base"
 KBRANCH_qemux86-64 ?= "v5.4/standard/base"
 KBRANCH_qemumips64 ?= "v5.4/standard/mti-malta64"
 
-SRCREV_machine_qemuarm ?= "844ffab23aca849f9f4cf89866229e079fc7aa11"
-SRCREV_machine_qemuarm64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_machine_qemumips ?= "7937b24594ecce307971a3b2871fc1286055d0c4"
-SRCREV_machine_qemuppc ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_machine_qemuriscv64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_machine_qemux86 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_machine_qemux86-64 ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_machine_qemumips64 ?= "0ba329b53891de44e4ef8d2ca8a948e1c6a5866c"
-SRCREV_machine ?= "53e9ea9bf3868442be0b1aef4e7624ec8143f10b"
-SRCREV_meta ?= "104cf3e89371ac8971fef69f55a6c788c46ec65a"
+SRCREV_machine_qemuarm ?= "78231a4abb434782470d272690b7792b7dc1c1c6"
+SRCREV_machine_qemuarm64 ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_machine_qemumips ?= "adca343488d22623848ba206071cc0fa67b79b6a"
+SRCREV_machine_qemuppc ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_machine_qemuriscv64 ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_machine_qemux86 ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_machine_qemux86-64 ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_machine_qemumips64 ?= "75c7340de480587c3a6650b46be7b1a2f71501a9"
+SRCREV_machine ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
+SRCREV_meta ?= "cd9826707f887241a661ea886cfa19f8d282438c"
 
 # remap qemuarm to qemuarma15 for the 5.4 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
@@ -30,7 +30,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRA
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
-LINUX_VERSION ?= "5.4.82"
+LINUX_VERSION ?= "5.4.83"
 
 DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
 DEPENDS += "openssl-native util-linux-native"
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 6/9] linux-yocto/5.8/cfg: fix -tiny warnings
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (4 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 5/9] linux-yocto/5.4: update to v5.4.83 Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 7/9] linux-yocto/5.4/cfg: " Bruce Ashfield
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Integrating the following commit(s) for configuration tweaks:

    b976de4f41d drm: change CONFIG_DRM_KMS_HELPER to =m
    669f5aa3795 tiny: enable CONFIG_FW_LOADER on a per-BSP basis
    d94b2d9f137 i915: adust helper to 'm'

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb   | 2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +-
 meta/recipes-kernel/linux/linux-yocto_5.8.bb      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
index fae984cd4e..d20b8b10ab 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
@@ -12,7 +12,7 @@ python () {
 }
 
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "25b672aa4759b6ceb48777eb586033a186091692"
+SRCREV_meta ?= "b976de4f41df1a50dc84839b64fb0ce2c6f9fb21"
 
 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}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
index b98d99a81f..a5135155d5 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
@@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
 
 SRCREV_machine_qemuarm ?= "9509db6e3ed6a23b1f7495b53248d1cbfe22710b"
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "25b672aa4759b6ceb48777eb586033a186091692"
+SRCREV_meta ?= "b976de4f41df1a50dc84839b64fb0ce2c6f9fb21"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.8.bb b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
index a2dacb2676..f6ebefbf1b 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.8.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
@@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
 SRCREV_machine_qemux86-64 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
 SRCREV_machine_qemumips64 ?= "01a02b058f9a8941032b298b8d25c673526152f4"
 SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
-SRCREV_meta ?= "25b672aa4759b6ceb48777eb586033a186091692"
+SRCREV_meta ?= "b976de4f41df1a50dc84839b64fb0ce2c6f9fb21"
 
 # remap qemuarm to qemuarma15 for the 5.8 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 7/9] linux-yocto/5.4/cfg: fix -tiny warnings
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (5 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 6/9] linux-yocto/5.8/cfg: fix -tiny warnings Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 8/9] systemtap: upgrade 4.3 -> 4.4 Bruce Ashfield
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Integrating the following commit(s) to fixup warnings when -tiny is
build with the latest kern-tools:

    b721178c41a drm: change CONFIG_DRM_KMS_HELPER to =m
    d9ac6174eaf tiny: enable CONFIG_FW_LOADER on a per-BSP basis
    a135c720bc7 i915: adust helper to 'm'

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb   | 2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +-
 meta/recipes-kernel/linux/linux-yocto_5.4.bb      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
index 3754abbc66..f35de787e1 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
@@ -12,7 +12,7 @@ python () {
 }
 
 SRCREV_machine ?= "7bc8ae3fc04fdc06192d39d725cb18d4c0b78d9f"
-SRCREV_meta ?= "cd9826707f887241a661ea886cfa19f8d282438c"
+SRCREV_meta ?= "b721178c41a2bffd19cc9be9e33af23b7a4affd9"
 
 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.4;destsuffix=${KMETA}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
index b06db10f9f..2c7ce3621f 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
@@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
 
 SRCREV_machine_qemuarm ?= "2b6db4fbe53a1986c0249bc663d8ce7d99cbf19c"
 SRCREV_machine ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
-SRCREV_meta ?= "cd9826707f887241a661ea886cfa19f8d282438c"
+SRCREV_meta ?= "b721178c41a2bffd19cc9be9e33af23b7a4affd9"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
index 21935ac171..475efbfc93 100644
--- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
@@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
 SRCREV_machine_qemux86-64 ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
 SRCREV_machine_qemumips64 ?= "75c7340de480587c3a6650b46be7b1a2f71501a9"
 SRCREV_machine ?= "21f1b92bddf5f6678f2c28da8d1a8a8160e39cf1"
-SRCREV_meta ?= "cd9826707f887241a661ea886cfa19f8d282438c"
+SRCREV_meta ?= "b721178c41a2bffd19cc9be9e33af23b7a4affd9"
 
 # remap qemuarm to qemuarma15 for the 5.4 kernel
 # KMACHINE_qemuarm ?= "qemuarma15"
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 8/9] systemtap: upgrade 4.3 -> 4.4
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (6 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 7/9] linux-yocto/5.4/cfg: " Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-22 14:28 ` [PATCH 9/9] systemtap: fix on target build for 4.4 and 5.10+ Bruce Ashfield
  2020-12-23 12:32 ` [PATCH 0/9] kernel: consolidated pull request Richard Purdie
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: zangrc <zangrc.fnst@cn.fujitsu.com>

The test log of oe-selftest is as follows:
2020-11-23 15:48:49,144 - oe-selftest - INFO - test_crosstap_helloworld (runtime_test.SystemTap)
2020-11-23 17:06:55,949 - oe-selftest - INFO -  ... ok
2020-11-23 17:06:55,951 - oe-selftest - INFO - test_crosstap_pstree (runtime_test.SystemTap)
2020-11-23 17:08:07,921 - oe-selftest - INFO -  ... ok
2020-11-23 17:08:07,922 - oe-selftest - INFO - test_crosstap_syscalls_by_pid (runtime_test.SystemTap)
2020-11-23 17:09:20,084 - oe-selftest - INFO -  ... ok
2020-11-23 17:09:20,085 - oe-selftest - INFO - test_crosstap_syscalls_by_proc (runtime_test.SystemTap)
2020-11-23 17:10:31,349 - oe-selftest - INFO -  ... ok
2020-11-23 17:12:58,052 - oe-selftest - INFO - ----------------------------------------------------------------------
2020-11-23 17:12:58,054 - oe-selftest - INFO - Ran 4 tests in 5051.537s
2020-11-23 17:12:58,054 - oe-selftest - INFO - OK
2020-11-23 17:13:08,416 - oe-selftest - INFO - RESULTS:
2020-11-23 17:13:08,417 - oe-selftest - INFO - RESULTS - runtime_test.SystemTap.test_crosstap_helloworld: PASSED (4686.81s)
2020-11-23 17:13:08,418 - oe-selftest - INFO - RESULTS - runtime_test.SystemTap.test_crosstap_pstree: PASSED (71.97s)
2020-11-23 17:13:08,418 - oe-selftest - INFO - RESULTS - runtime_test.SystemTap.test_crosstap_syscalls_by_pid: PASSED (72.16s)
2020-11-23 17:13:08,418 - oe-selftest - INFO - RESULTS - runtime_test.SystemTap.test_crosstap_syscalls_by_proc: PASSED (71.26s)
2020-11-23 17:13:08,432 - oe-selftest - INFO - SUMMARY:
2020-11-23 17:13:08,432 - oe-selftest - INFO - oe-selftest () - Ran 4 tests in 5051.540s
2020-11-23 17:13:08,432 - oe-selftest - INFO - oe-selftest - OK - All required tests passed (successes=4, skipped=0, failures=0, errors=0)

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 56fa51d61e..ae735025b7 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,7 +1,7 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-SRCREV = "82b8e1a07a31bf37ed05d6ebc5162b054c0be9fd"
-PV = "4.3"
+SRCREV = "988f439af39a359b4387963ca4633649866d8275"
+PV = "4.4"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git \
            file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 9/9] systemtap: fix on target build for 4.4 and 5.10+
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (7 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 8/9] systemtap: upgrade 4.3 -> 4.4 Bruce Ashfield
@ 2020-12-22 14:28 ` Bruce Ashfield
  2020-12-23 12:32 ` [PATCH 0/9] kernel: consolidated pull request Richard Purdie
  9 siblings, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-22 14:28 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

The following systemtap commit:

    commit 7615cae790c899bc8a82841c75c8ea9c6fa54df3
    Author: Frank Ch. Eigler <fche@redhat.com>
    Date:   Mon Nov 9 19:18:19 2020 -0500

        PR26665: relayfs-on-procfs megapatch

Changes the way that capabilities are checked when compiling
a systemtap probe.

In our cross-build -> on target workflow, this results in a
mismatch between the systemtap configuration capabilities and
the kernel configuration.

The result is a compilation failure since the security
components are protected by two different #ifdef's, and they
can be out of sync. By protecting the include and callsite with
the same #ifdef, we ensure they are in sync and fix our
on target problem.

While this fix is oe-specific, a variant will be proposed
upstream once a deeper analsysis of other options has been
completed.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 ...t-include-and-callsite-with-same-con.patch | 44 +++++++++++++++++++
 .../systemtap/systemtap_git.inc               |  1 +
 2 files changed, 45 insertions(+)
 create mode 100644 meta/recipes-kernel/systemtap/systemtap/0001-transport-protect-include-and-callsite-with-same-con.patch

diff --git a/meta/recipes-kernel/systemtap/systemtap/0001-transport-protect-include-and-callsite-with-same-con.patch b/meta/recipes-kernel/systemtap/systemtap/0001-transport-protect-include-and-callsite-with-same-con.patch
new file mode 100644
index 0000000000..efc79f6c0f
--- /dev/null
+++ b/meta/recipes-kernel/systemtap/systemtap/0001-transport-protect-include-and-callsite-with-same-con.patch
@@ -0,0 +1,44 @@
+From cbf27cd54071f788231e69d96dbaad563f1010d4 Mon Sep 17 00:00:00 2001
+From: Bruce Ashfield <bruce.ashfield@gmail.com>
+Date: Fri, 18 Dec 2020 13:15:08 -0500
+Subject: [PATCH] transport: protect include and callsite with same conditional
+
+transport.c has the following code block:
+
+  if (!debugfs_p && security_locked_down (LOCKDOWN_DEBUGFS))
+
+Which is protected by the conditional STAPCONF_LOCKDOWN_DEBUGFS.
+
+linux/security.h provides the definition of LOCKDOWN_DEBUGFS, and
+must be included or we have a compilation issue.
+
+The include of security.h is protected by #ifdef CONFIG_SECURITY_LOCKDOWN_LSM,
+which means that in some configurations we can get out of sync with
+the include and the callsite.
+
+If we protect the include and the callsite with the same #ifdef, we can
+be sure that they will be consistent.
+
+Upstream-status: Inappropriate (kernel-devsrc specific)
+
+Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
+---
+ runtime/transport/transport.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c
+index bb4a98bd3..88e20ea28 100644
+--- a/runtime/transport/transport.c
++++ b/runtime/transport/transport.c
+@@ -21,7 +21,7 @@
+ #include <linux/namei.h>
+ #include <linux/delay.h>
+ #include <linux/mutex.h>
+-#ifdef CONFIG_SECURITY_LOCKDOWN_LSM
++#ifdef STAPCONF_LOCKDOWN_DEBUGFS
+ #include <linux/security.h>
+ #endif
+ #include "../uidgid_compatibility.h"
+-- 
+2.19.1
+
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index ae735025b7..016b423847 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -7,6 +7,7 @@ SRC_URI = "git://sourceware.org/git/systemtap.git \
            file://0001-Do-not-let-configure-write-a-python-location-into-th.patch \
            file://0001-Install-python-modules-to-correct-library-dir.patch \
            file://0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch \
+           file://0001-transport-protect-include-and-callsite-with-same-con.patch \
            "
 
 COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64|microblazeel|mips).*-linux'
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* Re: [PATCH 0/9] kernel: consolidated pull request
  2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
                   ` (8 preceding siblings ...)
  2020-12-22 14:28 ` [PATCH 9/9] systemtap: fix on target build for 4.4 and 5.10+ Bruce Ashfield
@ 2020-12-23 12:32 ` Richard Purdie
  2020-12-23 13:37   ` Bruce Ashfield
       [not found]   ` <818c16d5-07aa-1638-3b99-b2ea975c3d46@arm.com>
  9 siblings, 2 replies; 22+ messages in thread
From: Richard Purdie @ 2020-12-23 12:32 UTC (permalink / raw)
  To: bruce.ashfield, Ross Burton, Jon Mason, Mittal, Anuj; +Cc: openembedded-core

Anuj/Ross/Jon: See below

On Tue, 2020-12-22 at 09:28 -0500, bruce.ashfield@gmail.com wrote:
> This is largely a resend of the configuration changes and kernel
> version bump that I had previously sent.
> 
> The kern-tools SRCREV bump has a tweak in the tools from the previous
> version, and there are specific fixups for the warnings that the
> tools were now exposing. I had to balance tiny and standard needing
> different values for some common options!
> 
> The AB run that I did is here:  https://autobuilder.yoctoproject.org/typhoon/#/builders/85/builds/1270
> 
> Everything looks good to me (but I only just realized that there are
> now multiple pages to check) :).

Thanks Bruce. This does now work on the autobuilder, it does also
expose warnings in meta-intel and meta-arm:

https://autobuilder.yoctoproject.org/typhoon/#/builders/113/builds/560
https://autobuilder.yoctoproject.org/typhoon/#/builders/100/builds/1031

which gives me a bit of a dilemma as I doubt these are going to get
fixed in the next couple of weeks...

Ross/Jon: We also need to talk about the intermittent ptest results on
arm...

Cheers,

Richard


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 0/9] kernel: consolidated pull request
  2020-12-23 12:32 ` [PATCH 0/9] kernel: consolidated pull request Richard Purdie
@ 2020-12-23 13:37   ` Bruce Ashfield
  2020-12-23 16:57     ` Anuj Mittal
  2020-12-23 23:03     ` Ross Burton
       [not found]   ` <818c16d5-07aa-1638-3b99-b2ea975c3d46@arm.com>
  1 sibling, 2 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-23 13:37 UTC (permalink / raw)
  To: Richard Purdie
  Cc: Ross Burton, Jon Mason, Mittal, Anuj,
	Patches and discussions about the oe-core layer

On Wed, Dec 23, 2020 at 7:32 AM Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> Anuj/Ross/Jon: See below
>
> On Tue, 2020-12-22 at 09:28 -0500, bruce.ashfield@gmail.com wrote:
> > This is largely a resend of the configuration changes and kernel
> > version bump that I had previously sent.
> >
> > The kern-tools SRCREV bump has a tweak in the tools from the previous
> > version, and there are specific fixups for the warnings that the
> > tools were now exposing. I had to balance tiny and standard needing
> > different values for some common options!
> >
> > The AB run that I did is here:  https://autobuilder.yoctoproject.org/typhoon/#/builders/85/builds/1270
> >
> > Everything looks good to me (but I only just realized that there are
> > now multiple pages to check) :).
>
> Thanks Bruce. This does now work on the autobuilder, it does also
> expose warnings in meta-intel and meta-arm:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/113/builds/560
> https://autobuilder.yoctoproject.org/typhoon/#/builders/100/builds/1031
>

I'll tweak the v5.4 meta data and send it as a separate patch.

Bruce

> which gives me a bit of a dilemma as I doubt these are going to get
> fixed in the next couple of weeks...
>
> Ross/Jon: We also need to talk about the intermittent ptest results on
> arm...
>
> Cheers,
>
> Richard
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 0/9] kernel: consolidated pull request
  2020-12-23 13:37   ` Bruce Ashfield
@ 2020-12-23 16:57     ` Anuj Mittal
  2020-12-23 23:03     ` Ross Burton
  1 sibling, 0 replies; 22+ messages in thread
From: Anuj Mittal @ 2020-12-23 16:57 UTC (permalink / raw)
  To: richard.purdie, bruce.ashfield; +Cc: openembedded-core, Jon.Mason, ross.burton

On Wed, 2020-12-23 at 08:37 -0500, Bruce Ashfield wrote:
> On Wed, Dec 23, 2020 at 7:32 AM Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > 
> > Anuj/Ross/Jon: See below
> > 
> > On Tue, 2020-12-22 at 09:28 -0500, bruce.ashfield@gmail.com wrote:
> > > This is largely a resend of the configuration changes and kernel
> > > version bump that I had previously sent.
> > > 
> > > The kern-tools SRCREV bump has a tweak in the tools from the
> > > previous
> > > version, and there are specific fixups for the warnings that the
> > > tools were now exposing. I had to balance tiny and standard
> > > needing
> > > different values for some common options!
> > > 
> > > The AB run that I did is here:  
> > > https://autobuilder.yoctoproject.org/typhoon/#/builders/85/builds/1270
> > > 
> > > Everything looks good to me (but I only just realized that there
> > > are
> > > now multiple pages to check) :).
> > 
> > Thanks Bruce. This does now work on the autobuilder, it does also
> > expose warnings in meta-intel and meta-arm:
> > 
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/113/builds/560
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/100/builds/1031
> > 
> 
> I'll tweak the v5.4 meta data and send it as a separate patch.
> 

Thanks a lot Bruce! I have updated the meta revision for the Intel
kernel in meta-intel to the one that you just sent. This fixes the
kernel warnings for meta-intel.

Thanks,

Anuj


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 0/9] kernel: consolidated pull request
  2020-12-23 13:37   ` Bruce Ashfield
  2020-12-23 16:57     ` Anuj Mittal
@ 2020-12-23 23:03     ` Ross Burton
  2020-12-24  3:41       ` Bruce Ashfield
       [not found]       ` <16538A0D49119031.25471@lists.openembedded.org>
  1 sibling, 2 replies; 22+ messages in thread
From: Ross Burton @ 2020-12-23 23:03 UTC (permalink / raw)
  To: Bruce Ashfield, Richard Purdie
  Cc: Jon Mason, Mittal, Anuj, Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

> I'll tweak the v5.4 meta data and send it as a separate patch.

Will that tweak the metadata sufficiently to fix the problem?  That was the Juno machine failing, and that just uses defconfig.

KBUILD_DEFCONFIG_juno = "defconfig"
KCONFIG_MODE_juno = "--alldefconfig"

Cheers,
Ross
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

[-- Attachment #2: Type: text/html, Size: 2104 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 0/9] kernel: consolidated pull request
  2020-12-23 23:03     ` Ross Burton
@ 2020-12-24  3:41       ` Bruce Ashfield
       [not found]       ` <16538A0D49119031.25471@lists.openembedded.org>
  1 sibling, 0 replies; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-24  3:41 UTC (permalink / raw)
  To: Ross Burton
  Cc: Richard Purdie, Jon Mason, Mittal, Anuj,
	Patches and discussions about the oe-core layer

On Wed, Dec 23, 2020 at 6:03 PM Ross Burton <Ross.Burton@arm.com> wrote:
>
> > I'll tweak the v5.4 meta data and send it as a separate patch.
>
> Will that tweak the metadata sufficiently to fix the problem?  That was the Juno machine failing, and that just uses defconfig.
>

Should be.

It's explicitly setting the option, which comes after the default
mode. The final .config is compared to the last option, so it will
match.

Bruce

>
>
> KBUILD_DEFCONFIG_juno = "defconfig"
>
> KCONFIG_MODE_juno = "--alldefconfig"
>
>
>
> Cheers,
>
> Ross
>
> IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [OE-core] [PATCH 0/9] kernel: consolidated pull request
       [not found]       ` <16538A0D49119031.25471@lists.openembedded.org>
@ 2020-12-24  3:43         ` Bruce Ashfield
  2020-12-24  8:14           ` Richard Purdie
  0 siblings, 1 reply; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-24  3:43 UTC (permalink / raw)
  To: Bruce Ashfield
  Cc: Ross Burton, Richard Purdie, Jon Mason, Mittal, Anuj,
	Patches and discussions about the oe-core layer

On Wed, Dec 23, 2020 at 10:41 PM Bruce Ashfield via
lists.openembedded.org
<bruce.ashfield=gmail.com@lists.openembedded.org> wrote:
>
> On Wed, Dec 23, 2020 at 6:03 PM Ross Burton <Ross.Burton@arm.com> wrote:
> >
> > > I'll tweak the v5.4 meta data and send it as a separate patch.
> >
> > Will that tweak the metadata sufficiently to fix the problem?  That was the Juno machine failing, and that just uses defconfig.
> >
>
> Should be.
>
> It's explicitly setting the option, which comes after the default
> mode. The final .config is compared to the last option, so it will
> match.

And I should add, if it isn't, the fix is on me. So I started to clone
the appropriate layers and will do a local build to check.

Bruce

>
> Bruce
>
> >
> >
> > KBUILD_DEFCONFIG_juno = "defconfig"
> >
> > KCONFIG_MODE_juno = "--alldefconfig"
> >
> >
> >
> > Cheers,
> >
> > Ross
> >
> > IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>
> 
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [OE-core] [PATCH 0/9] kernel: consolidated pull request
  2020-12-24  3:43         ` [OE-core] " Bruce Ashfield
@ 2020-12-24  8:14           ` Richard Purdie
  0 siblings, 0 replies; 22+ messages in thread
From: Richard Purdie @ 2020-12-24  8:14 UTC (permalink / raw)
  To: Bruce Ashfield
  Cc: Ross Burton, Jon Mason, Mittal, Anuj,
	Patches and discussions about the oe-core layer

On Wed, 2020-12-23 at 22:43 -0500, Bruce Ashfield wrote:
> On Wed, Dec 23, 2020 at 10:41 PM Bruce Ashfield via
> lists.openembedded.org
> <bruce.ashfield=gmail.com@lists.openembedded.org> wrote:
> > 
> > On Wed, Dec 23, 2020 at 6:03 PM Ross Burton <Ross.Burton@arm.com>
> > wrote:
> > > 
> > > > I'll tweak the v5.4 meta data and send it as a separate patch.
> > > 
> > > Will that tweak the metadata sufficiently to fix the problem? 
> > > That was the Juno machine failing, and that just uses defconfig.
> > > 
> > 
> > Should be.
> > 
> > It's explicitly setting the option, which comes after the default
> > mode. The final .config is compared to the last option, so it will
> > match.
> 
> And I should add, if it isn't, the fix is on me. So I started to
> clone
> the appropriate layers and will do a local build to check.

Bruce's update fixed it, so we're good, thanks!

Cheers,

Richard


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [OE-core] [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y'
  2020-12-22 14:28 ` [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y' Bruce Ashfield
@ 2020-12-24 14:48   ` Steve Sakoman
  2020-12-24 15:26     ` Bruce Ashfield
  0 siblings, 1 reply; 22+ messages in thread
From: Steve Sakoman @ 2020-12-24 14:48 UTC (permalink / raw)
  To: Bruce Ashfield
  Cc: Richard Purdie, Patches and discussions about the oe-core layer

On Tue, Dec 22, 2020 at 4:28 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
>
> From: Bruce Ashfield <bruce.ashfield@gmail.com>
>
> Integrating the following configuration commit(s):
>
>     72a1fe336d7 qemuppc: configure the CONFIG_SCSI to '=y'

What is the reason behind this change?  Trying to decide if it is
something I should take for dunfell (minus the 5.8 changes of course)

Thanks!

Steve

>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
> ---
>  meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb   | 2 +-
>  meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb   | 2 +-
>  meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +-
>  meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +-
>  meta/recipes-kernel/linux/linux-yocto_5.4.bb      | 2 +-
>  meta/recipes-kernel/linux/linux-yocto_5.8.bb      | 2 +-
>  6 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> index d415c3c63a..8bc93bf438 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> @@ -12,7 +12,7 @@ python () {
>  }
>
>  SRCREV_machine ?= "1ab0814d41526c27888888188d884884c8b4a52d"
> -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
>
>  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.4;destsuffix=${KMETA}"
> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> index 033dfc76a2..f5f7c87a31 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> @@ -12,7 +12,7 @@ python () {
>  }
>
>  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
>
>  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}"
> diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> index 33ca5856a3..3b462d5872 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> @@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
>
>  SRCREV_machine_qemuarm ?= "9a4d015ce467549f5f587a5001cd333ea7182aa2"
>  SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
>
>  PV = "${LINUX_VERSION}+git${SRCPV}"
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> index 50cee07620..4afddae092 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> @@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
>
>  SRCREV_machine_qemuarm ?= "9509db6e3ed6a23b1f7495b53248d1cbfe22710b"
>  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
>
>  PV = "${LINUX_VERSION}+git${SRCPV}"
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> index 1a14c8bdb5..456875a7b5 100644
> --- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> @@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
>  SRCREV_machine_qemux86-64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
>  SRCREV_machine_qemumips64 ?= "f8d0d215cf1a02a1e2915b8d57fb8f9f29e5dc49"
>  SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
>
>  # remap qemuarm to qemuarma15 for the 5.4 kernel
>  # KMACHINE_qemuarm ?= "qemuarma15"
> diff --git a/meta/recipes-kernel/linux/linux-yocto_5.8.bb b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> index af576891e2..3f94d22654 100644
> --- a/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> @@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
>  SRCREV_machine_qemux86-64 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
>  SRCREV_machine_qemumips64 ?= "01a02b058f9a8941032b298b8d25c673526152f4"
>  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
>
>  # remap qemuarm to qemuarma15 for the 5.8 kernel
>  # KMACHINE_qemuarm ?= "qemuarma15"
> --
> 2.19.1
>
>
> 
>

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [OE-core] [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y'
  2020-12-24 14:48   ` [OE-core] " Steve Sakoman
@ 2020-12-24 15:26     ` Bruce Ashfield
  2020-12-24 16:14       ` Steve Sakoman
  0 siblings, 1 reply; 22+ messages in thread
From: Bruce Ashfield @ 2020-12-24 15:26 UTC (permalink / raw)
  To: Steve Sakoman
  Cc: Richard Purdie, Patches and discussions about the oe-core layer

On Thu, Dec 24, 2020 at 9:48 AM Steve Sakoman <steve@sakoman.com> wrote:
>
> On Tue, Dec 22, 2020 at 4:28 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
> >
> > From: Bruce Ashfield <bruce.ashfield@gmail.com>
> >
> > Integrating the following configuration commit(s):
> >
> >     72a1fe336d7 qemuppc: configure the CONFIG_SCSI to '=y'
>
> What is the reason behind this change?  Trying to decide if it is
> something I should take for dunfell (minus the 5.8 changes of course)
>

It fixes a warning that popped up due to my kern-tools changes (they
were masking some warnings).

So if you take my kern-tools SRCREV bumps, you'd need this (and the
others I've been sending out for 5.4 kernel meta-data)

Those tools bumps aren't necessary (they are bug fixes, but not bugs
that would break anything), so I leave that up to you.

Bruce

> Thanks!
>
> Steve
>
> >
> > Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
> > ---
> >  meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb   | 2 +-
> >  meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb   | 2 +-
> >  meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +-
> >  meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +-
> >  meta/recipes-kernel/linux/linux-yocto_5.4.bb      | 2 +-
> >  meta/recipes-kernel/linux/linux-yocto_5.8.bb      | 2 +-
> >  6 files changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> > index d415c3c63a..8bc93bf438 100644
> > --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> > +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> > @@ -12,7 +12,7 @@ python () {
> >  }
> >
> >  SRCREV_machine ?= "1ab0814d41526c27888888188d884884c8b4a52d"
> > -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> > +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
> >
> >  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.4;destsuffix=${KMETA}"
> > diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> > index 033dfc76a2..f5f7c87a31 100644
> > --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> > +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> > @@ -12,7 +12,7 @@ python () {
> >  }
> >
> >  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> > +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
> >
> >  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}"
> > diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> > index 33ca5856a3..3b462d5872 100644
> > --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> > +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> > @@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
> >
> >  SRCREV_machine_qemuarm ?= "9a4d015ce467549f5f587a5001cd333ea7182aa2"
> >  SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> > -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> > +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
> >
> >  PV = "${LINUX_VERSION}+git${SRCPV}"
> >
> > diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> > index 50cee07620..4afddae092 100644
> > --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> > +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> > @@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
> >
> >  SRCREV_machine_qemuarm ?= "9509db6e3ed6a23b1f7495b53248d1cbfe22710b"
> >  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> > +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
> >
> >  PV = "${LINUX_VERSION}+git${SRCPV}"
> >
> > diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> > index 1a14c8bdb5..456875a7b5 100644
> > --- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> > +++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> > @@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> >  SRCREV_machine_qemux86-64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> >  SRCREV_machine_qemumips64 ?= "f8d0d215cf1a02a1e2915b8d57fb8f9f29e5dc49"
> >  SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> > -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> > +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
> >
> >  # remap qemuarm to qemuarma15 for the 5.4 kernel
> >  # KMACHINE_qemuarm ?= "qemuarma15"
> > diff --git a/meta/recipes-kernel/linux/linux-yocto_5.8.bb b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> > index af576891e2..3f94d22654 100644
> > --- a/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> > +++ b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> > @@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> >  SRCREV_machine_qemux86-64 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> >  SRCREV_machine_qemumips64 ?= "01a02b058f9a8941032b298b8d25c673526152f4"
> >  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> > +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
> >
> >  # remap qemuarm to qemuarma15 for the 5.8 kernel
> >  # KMACHINE_qemuarm ?= "qemuarma15"
> > --
> > 2.19.1
> >
> >
> > 
> >



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [OE-core] [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y'
  2020-12-24 15:26     ` Bruce Ashfield
@ 2020-12-24 16:14       ` Steve Sakoman
  0 siblings, 0 replies; 22+ messages in thread
From: Steve Sakoman @ 2020-12-24 16:14 UTC (permalink / raw)
  To: Bruce Ashfield
  Cc: Richard Purdie, Patches and discussions about the oe-core layer

On Thu, Dec 24, 2020 at 5:27 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
>
> On Thu, Dec 24, 2020 at 9:48 AM Steve Sakoman <steve@sakoman.com> wrote:
> >
> > On Tue, Dec 22, 2020 at 4:28 AM Bruce Ashfield <bruce.ashfield@gmail.com> wrote:
> > >
> > > From: Bruce Ashfield <bruce.ashfield@gmail.com>
> > >
> > > Integrating the following configuration commit(s):
> > >
> > >     72a1fe336d7 qemuppc: configure the CONFIG_SCSI to '=y'
> >
> > What is the reason behind this change?  Trying to decide if it is
> > something I should take for dunfell (minus the 5.8 changes of course)
> >
>
> It fixes a warning that popped up due to my kern-tools changes (they
> were masking some warnings).
>
> So if you take my kern-tools SRCREV bumps, you'd need this (and the
> others I've been sending out for 5.4 kernel meta-data)
>
> Those tools bumps aren't necessary (they are bug fixes, but not bugs
> that would break anything), so I leave that up to you.

Thanks Bruce!  I'll pass on the tools bump for now.

Steve

> > >
> > > Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
> > > ---
> > >  meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb   | 2 +-
> > >  meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb   | 2 +-
> > >  meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +-
> > >  meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +-
> > >  meta/recipes-kernel/linux/linux-yocto_5.4.bb      | 2 +-
> > >  meta/recipes-kernel/linux/linux-yocto_5.8.bb      | 2 +-
> > >  6 files changed, 6 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> > > index d415c3c63a..8bc93bf438 100644
> > > --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> > > +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb
> > > @@ -12,7 +12,7 @@ python () {
> > >  }
> > >
> > >  SRCREV_machine ?= "1ab0814d41526c27888888188d884884c8b4a52d"
> > > -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> > > +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
> > >
> > >  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.4;destsuffix=${KMETA}"
> > > diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> > > index 033dfc76a2..f5f7c87a31 100644
> > > --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> > > +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb
> > > @@ -12,7 +12,7 @@ python () {
> > >  }
> > >
> > >  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > > -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> > > +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
> > >
> > >  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}"
> > > diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> > > index 33ca5856a3..3b462d5872 100644
> > > --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> > > +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb
> > > @@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
> > >
> > >  SRCREV_machine_qemuarm ?= "9a4d015ce467549f5f587a5001cd333ea7182aa2"
> > >  SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> > > -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> > > +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
> > >
> > >  PV = "${LINUX_VERSION}+git${SRCPV}"
> > >
> > > diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> > > index 50cee07620..4afddae092 100644
> > > --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> > > +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb
> > > @@ -17,7 +17,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
> > >
> > >  SRCREV_machine_qemuarm ?= "9509db6e3ed6a23b1f7495b53248d1cbfe22710b"
> > >  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > > -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> > > +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
> > >
> > >  PV = "${LINUX_VERSION}+git${SRCPV}"
> > >
> > > diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> > > index 1a14c8bdb5..456875a7b5 100644
> > > --- a/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> > > +++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb
> > > @@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> > >  SRCREV_machine_qemux86-64 ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> > >  SRCREV_machine_qemumips64 ?= "f8d0d215cf1a02a1e2915b8d57fb8f9f29e5dc49"
> > >  SRCREV_machine ?= "6f1adec8376dc0bbf423afa02d7d9fa12b73d5b5"
> > > -SRCREV_meta ?= "dfb689e49ce2b6a1790d0747d6041a961b812db5"
> > > +SRCREV_meta ?= "72a1fe336d7a8cead351b894c266a205f23f213c"
> > >
> > >  # remap qemuarm to qemuarma15 for the 5.4 kernel
> > >  # KMACHINE_qemuarm ?= "qemuarma15"
> > > diff --git a/meta/recipes-kernel/linux/linux-yocto_5.8.bb b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> > > index af576891e2..3f94d22654 100644
> > > --- a/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> > > +++ b/meta/recipes-kernel/linux/linux-yocto_5.8.bb
> > > @@ -21,7 +21,7 @@ SRCREV_machine_qemux86 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > >  SRCREV_machine_qemux86-64 ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > >  SRCREV_machine_qemumips64 ?= "01a02b058f9a8941032b298b8d25c673526152f4"
> > >  SRCREV_machine ?= "3c5d210805d61bea8f8a8081e0e3a89ea8a61f3f"
> > > -SRCREV_meta ?= "7883b60d324029d26020c0b3f826b35c52fd9674"
> > > +SRCREV_meta ?= "7329d33cf8f25f433ce8ca95787e1743344f7c5d"
> > >
> > >  # remap qemuarm to qemuarma15 for the 5.8 kernel
> > >  # KMACHINE_qemuarm ?= "qemuarma15"
> > > --
> > > 2.19.1
> > >
> > >
> > > 
> > >
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 0/9] kernel: consolidated pull request
       [not found]   ` <818c16d5-07aa-1638-3b99-b2ea975c3d46@arm.com>
@ 2021-01-04 15:54     ` Richard Purdie
  0 siblings, 0 replies; 22+ messages in thread
From: Richard Purdie @ 2021-01-04 15:54 UTC (permalink / raw)
  To: Jon Mason, bruce.ashfield, Ross Burton, Mittal, Anuj
  Cc: nd, openembedded-core

On Mon, 2021-01-04 at 10:38 -0500, Jon Mason wrote:
> On 12/23/20 7:32 AM, Richard Purdie wrote:
> > Ross/Jon: We also need to talk about the intermittent ptest results
> > on arm...
> 
> Is there a bug in bugzilla tracking this issue?  If so, we can add it
> to our internal queue to track and work-on.

https://bugzilla.yoctoproject.org/show_bug.cgi?id=14163
https://bugzilla.yoctoproject.org/show_bug.cgi?id=14164
https://bugzilla.yoctoproject.org/show_bug.cgi?id=14165

and maybe

https://bugzilla.yoctoproject.org/show_bug.cgi?id=14170

(which is showing sometimes for x86 and sometimes for arm)

Cheers,

Richard


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [PATCH 0/9] kernel: consolidated pull request
@ 2022-12-20 18:42 bruce.ashfield
  0 siblings, 0 replies; 22+ messages in thread
From: bruce.ashfield @ 2022-12-20 18:42 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

Most of these are -stable udpates, mixed in are a couple of clang fixes
from Khem, and of course the bigger items of the libc-headers bump and
the v6.1 reference kernel recipes.

I've built both musl and glibc for all architectures with the new libc
headers, and sent patches last week for issues that I found in core or
meta-oe.

That being said, I'm sure there's something .. somewhere lurking, but
there's no sense sitting on it longer.

As for the 6.1 reference kernel, I've done the same. Built and booted
core-image-minimal, sato and kernel dev on all architectures. The changes
sent before the last release meant that our normal culprits of lttng-modules
and kernel-devsrc don't need any tweaking to work. -rt has also been
tested.

We can't make 6.1 the default yet, as the reference h/w BSPs need to
be updated, and then 5.19 removed. But again, no sense sitting on these
longer.

I'm around full time for the rest of this week, and then off and on
through the first week of January to squash any fallout from the
updates.

Cheers,

Bruce

The following changes since commit ace02cec70a4a1bc9088044905b3c4a801a39a1b:

  systemd: Make importd depend on glib-2.0 again (2022-12-18 19:48:00 +0000)

are available in the Git repository at:

  https://git.yoctoproject.org/poky-contrib zedd/kernel
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (9):
  yocto-bsps/5.15: update to v5.15.78
  linux-yocto/5.15: update to v5.15.80
  linux-yocto/5.19: fix perf build with clang
  linux-yocto/5.15: ltp and squashfs fixes
  linux-libc-headers: bump to 6.1
  linux-yocto: introduce v6.1 reference kernel recipes
  linux-yocto/5.15: fix perf build with clang
  linux-yocto/5.15: update to v5.15.84
  linux-yocto/5.15: libbpf: Fix build warning on ref_ctr_off

 .../linux/linux-yocto_5.15.bbappend           | 16 ++---
 meta/conf/distro/include/tcmode-default.inc   |  2 +-
 ...d-input-and-output-files-instead-of-.patch | 67 ------------------
 ...ders_5.19.bb => linux-libc-headers_6.1.bb} |  5 +-
 .../linux/linux-yocto-rt_5.15.bb              |  4 +-
 .../linux/linux-yocto-rt_5.19.bb              |  4 +-
 .../linux/linux-yocto-rt_6.1.bb               | 45 ++++++++++++
 .../linux/linux-yocto-tiny_5.15.bb            |  4 +-
 .../linux/linux-yocto-tiny_5.19.bb            |  4 +-
 .../linux/linux-yocto-tiny_6.1.bb             | 30 ++++++++
 meta/recipes-kernel/linux/linux-yocto_5.15.bb | 24 +++----
 meta/recipes-kernel/linux/linux-yocto_5.19.bb | 22 +++---
 meta/recipes-kernel/linux/linux-yocto_6.1.bb  | 70 +++++++++++++++++++
 13 files changed, 187 insertions(+), 110 deletions(-)
 delete mode 100644 meta/recipes-kernel/linux-libc-headers/linux-libc-headers/0001-scripts-Use-fixed-input-and-output-files-instead-of-.patch
 rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers_5.19.bb => linux-libc-headers_6.1.bb} (70%)
 create mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_6.1.bb
 create mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_6.1.bb
 create mode 100644 meta/recipes-kernel/linux/linux-yocto_6.1.bb

-- 
2.37.3



^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2022-12-20 18:42 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-22 14:28 [PATCH 0/9] kernel: consolidated pull request Bruce Ashfield
2020-12-22 14:28 ` [PATCH 1/9] kern-tools: non-gcc config support and option re-classification Bruce Ashfield
2020-12-22 14:28 ` [PATCH 2/9] linux-yocto/cfg: qemuppc: set CONFIG_SCSI to '=y' Bruce Ashfield
2020-12-24 14:48   ` [OE-core] " Steve Sakoman
2020-12-24 15:26     ` Bruce Ashfield
2020-12-24 16:14       ` Steve Sakoman
2020-12-22 14:28 ` [PATCH 3/9] linux-yocto/5.4: update to v5.4.82 Bruce Ashfield
2020-12-22 14:28 ` [PATCH 4/9] linux-yocto/cfg: qemuarm64-gfx.cfg: add CONFIG_INPUT_UINPUT Bruce Ashfield
2020-12-22 14:28 ` [PATCH 5/9] linux-yocto/5.4: update to v5.4.83 Bruce Ashfield
2020-12-22 14:28 ` [PATCH 6/9] linux-yocto/5.8/cfg: fix -tiny warnings Bruce Ashfield
2020-12-22 14:28 ` [PATCH 7/9] linux-yocto/5.4/cfg: " Bruce Ashfield
2020-12-22 14:28 ` [PATCH 8/9] systemtap: upgrade 4.3 -> 4.4 Bruce Ashfield
2020-12-22 14:28 ` [PATCH 9/9] systemtap: fix on target build for 4.4 and 5.10+ Bruce Ashfield
2020-12-23 12:32 ` [PATCH 0/9] kernel: consolidated pull request Richard Purdie
2020-12-23 13:37   ` Bruce Ashfield
2020-12-23 16:57     ` Anuj Mittal
2020-12-23 23:03     ` Ross Burton
2020-12-24  3:41       ` Bruce Ashfield
     [not found]       ` <16538A0D49119031.25471@lists.openembedded.org>
2020-12-24  3:43         ` [OE-core] " Bruce Ashfield
2020-12-24  8:14           ` Richard Purdie
     [not found]   ` <818c16d5-07aa-1638-3b99-b2ea975c3d46@arm.com>
2021-01-04 15:54     ` Richard Purdie
2022-12-20 18:42 bruce.ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.