All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2015-02-06 16:31 Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 1/8] kernel-dev: install all modules by default Bruce Ashfield
                   ` (7 more replies)
  0 siblings, 8 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Richard/Saul,

Here is my pull request for a round of -stable kernel updates, tool tweaks, and
a preview of 3.19 as the kernel for the 1.8. 

I've built core-image-sato and core-image-kernel-dev for the various kernels,
but of course more coverage is always better (which the autobuilder provides),
I don't expect anything massive to blow up .. but you never know.

I'll follow up with libc, a versioned 3.19 recipe and updates to the yocto
BSPs once this series is shown to be good.

I had to hack together the pull requests parts of this, since my git 2.1.x
is blowing up during generation, so hopefully the commits and banch are
clear.

Cheers,

Bruce

--------------------------------

The following changes since commit 1f53edeaf9ea59dd55459a6d5a93829fb4983839:

  libtool: avoid running automake/autoconf --version (2015-02-05 09:46:11 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib zedd/kernel-dev

for you to fetch changes up to 985259afe58317d3ab0146979207f73d7670db29:

  kern-tools: import patch performance improvements (2015-02-05 15:51:02 -0500)

----------------------------------------------------------------
Bruce Ashfield (8):
  kernel-dev: install all modules by default
  linux-yocto/3.14: update to 3.14.29
  linux-yocto/3.10: update to v3.10.65
  linux-yocto/3.17: update to v3.17.8
  linux-yocto: basic octeon III support
  lttng: update to 2.6.0-stable
  linux-yocto-dev: update to v3.19+
  kern-tools: import patch performance improvements

 .../images/core-image-kernel-dev.bb                |   2 +-
 .../kern-tools/kern-tools-native_git.bb            |   2 +-
 meta/recipes-kernel/linux/linux-yocto-dev.bb       |   2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb   |   8 +-
 meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb   |   8 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb |   6 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb |   6 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb |   6 +-
 meta/recipes-kernel/linux/linux-yocto_3.10.bb      |  18 +--
 meta/recipes-kernel/linux/linux-yocto_3.14.bb      |  20 ++--
 meta/recipes-kernel/linux/linux-yocto_3.17.bb      |  20 ++--
 ...probes-should-calculate-alignment-and-eve.patch | 130 ---------------------
 ...e-kvm-instrumentation-compile-on-3.17-rc1.patch |  46 --------
 ...modules-replace-KERNELDIR-with-KERNEL_SRC.patch |  35 ++----
 ...tng-modules_2.5.2.bb => lttng-modules_2.6.0.bb} |   6 +-
 15 files changed, 61 insertions(+), 254 deletions(-)
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/Fix-noargs-probes-should-calculate-alignment-and-eve.patch
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/Update-kvm-instrumentation-compile-on-3.17-rc1.patch
 rename meta/recipes-kernel/lttng/{lttng-modules_2.5.2.bb => lttng-modules_2.6.0.bb} (85%)

-- 
2.1.0



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

* [PATCH 1/8] kernel-dev: install all modules by default
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 2/8] linux-yocto/3.14: update to 3.14.29 Bruce Ashfield
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

When doing kernel development testing, we want all the modules that were
built to be installed on the target.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-extended/images/core-image-kernel-dev.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/images/core-image-kernel-dev.bb b/meta/recipes-extended/images/core-image-kernel-dev.bb
index d14f658726ab..e1aa71a79fb9 100644
--- a/meta/recipes-extended/images/core-image-kernel-dev.bb
+++ b/meta/recipes-extended/images/core-image-kernel-dev.bb
@@ -6,7 +6,7 @@ require recipes-core/images/core-image-minimal.bb
 
 KERNEL_DEV_UTILS ?= "dropbear"
 KERNEL_DEV_TOOLS ?= "packagegroup-core-tools-profile packagegroup-core-buildessential kernel-devsrc"
-KERNEL_DEV_MODULE ?= ""
+KERNEL_DEV_MODULE ?= "kernel-modules"
 
 CORE_IMAGE_EXTRA_INSTALL += "${KERNEL_DEV_MODULE} \
                              ${KERNEL_DEV_UTILS} \
-- 
2.1.0



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

* [PATCH 2/8] linux-yocto/3.14: update to 3.14.29
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 1/8] kernel-dev: install all modules by default Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-06 21:05   ` Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 3/8] linux-yocto/3.10: update to v3.10.65 Bruce Ashfield
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Updating to the latest korg -stable release for 3.14.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb   |  8 ++++----
 meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb |  6 +++---
 meta/recipes-kernel/linux/linux-yocto_3.14.bb      | 20 ++++++++++----------
 3 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
index 7dbf82c3e691..fbd331f38e74 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
@@ -3,13 +3,13 @@ KBRANCH_qemuppc ?= "standard/preempt-rt/qemuppc"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-SRCREV_machine ?= "7f0712d10247ffca8e48e944f49707bcf9117ead"
-SRCREV_machine_qemuppc ?= "8bed2a975d491c963cff56496f7e35f5bcff926f"
-SRCREV_meta ?= "a227f20eff056e511d504b2e490f3774ab260d6f"
+SRCREV_machine ?= "367c3b9712a6e469aed0cb5deebd5d3bfab12b79"
+SRCREV_machine_qemuppc ?= "4e827a9b658b6381f6706490e40b6a069a0c4b64"
+SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
 
-LINUX_VERSION ?= "3.14.24"
+LINUX_VERSION ?= "3.14.29"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
index 67bf4624f833..2d1bc2117145 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
@@ -4,12 +4,12 @@ KCONFIG_MODE = "--allnoconfig"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-LINUX_VERSION ?= "3.14.24"
+LINUX_VERSION ?= "3.14.29"
 
 KMETA = "meta"
 
-SRCREV_machine ?= "02120556b0ebc20c30374ccf211e8e4ceac2bb1c"
-SRCREV_meta ?= "a227f20eff056e511d504b2e490f3774ab260d6f"
+SRCREV_machine ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
+SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.14.bb b/meta/recipes-kernel/linux/linux-yocto_3.14.bb
index 5f0a09e97331..f218a91b48f0 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.14.bb
@@ -11,19 +11,19 @@ KBRANCH_qemux86  ?= "standard/common-pc/base"
 KBRANCH_qemux86-64 ?= "standard/common-pc-64/base"
 KBRANCH_qemumips64 ?= "standard/mti-malta64"
 
-SRCREV_machine_qemuarm ?= "6166316d47b859aa38bfecc61f4808828af03937"
-SRCREV_machine_qemuarm64 ?= "902f34d36102a4b2008b776ecae686f80d307e12"
-SRCREV_machine_qemumips ?= "4ececcc09c6550a0896728163907e729d817c2fd"
-SRCREV_machine_qemuppc ?= "1cc5b09f8bb7f40b289d149d370c62dcc8109501"
-SRCREV_machine_qemux86 ?= "38cd560d5022ed2dbd1ab0dca9642e47c98a0aa1"
-SRCREV_machine_qemux86-64 ?= "02120556b0ebc20c30374ccf211e8e4ceac2bb1c"
-SRCREV_machine_qemumips64 ?= "737272b1dfd361d9ea19812a9717e2798e3c4576"
-SRCREV_machine ?= "02120556b0ebc20c30374ccf211e8e4ceac2bb1c"
-SRCREV_meta ?= "a227f20eff056e511d504b2e490f3774ab260d6f"
+SRCREV_machine_qemuarm ?= "c0ed33beda334dcd387dff89da9804c03e24d648"
+SRCREV_machine_qemuarm64 ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
+SRCREV_machine_qemumips ?= "808071c5f72dc98ed2192de28bdd4e9ba2f7e820"
+SRCREV_machine_qemuppc ?= "0f93713ce91cc93f055ae6bcf1bf728d4036d097"
+SRCREV_machine_qemux86 ?= "f6aa7aaca80e8532316bfb6e8dd2fbf9ab4f8b8e"
+SRCREV_machine_qemux86-64 ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
+SRCREV_machine_qemumips64 ?= "f44eb151dc53822f4f94f50b2ec67a0a1aab041b"
+SRCREV_machine ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
+SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
 
-LINUX_VERSION ?= "3.14.24"
+LINUX_VERSION ?= "3.14.29"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
-- 
2.1.0



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

* [PATCH 3/8] linux-yocto/3.10: update to v3.10.65
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 1/8] kernel-dev: install all modules by default Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 2/8] linux-yocto/3.14: update to 3.14.29 Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-10 20:50   ` akuster808
  2015-02-06 16:31 ` [PATCH 4/8] linux-yocto/3.17: update to v3.17.8 Bruce Ashfield
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Integrating the latest korg -stable updates for 3.10 LTSI.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb   |  8 ++++----
 meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb |  6 +++---
 meta/recipes-kernel/linux/linux-yocto_3.10.bb      | 18 +++++++++---------
 3 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
index 8acbd2e59b09..36a00cf03b1a 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
@@ -3,13 +3,13 @@ KBRANCH_qemuppc ?= "standard/preempt-rt/qemuppc"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-SRCREV_machine ?= "94a79d98e40b51466600fb3375ad2908c38dd192"
-SRCREV_machine_qemuppc ?= "c1dcbac7751652784f180fdb91f87bc37fba8c52"
-SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
+SRCREV_machine ?= "c75818e2932c3c0444ebebfcc0608fecf2440b92"
+SRCREV_machine_qemuppc ?= "fc7abf900967db5dea8a8f8648b8a0de7032f8d7"
+SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
 
-LINUX_VERSION ?= "3.10.62"
+LINUX_VERSION ?= "3.10.65"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
index 9ea81b8874f8..3248c4414b42 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
@@ -5,12 +5,12 @@ require recipes-kernel/linux/linux-yocto.inc
 LINUX_KERNEL_TYPE = "tiny"
 KCONFIG_MODE = "--allnoconfig"
 
-LINUX_VERSION ?= "3.10.62"
+LINUX_VERSION ?= "3.10.65"
 
 KMETA = "meta"
 
-SRCREV_machine ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
-SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
+SRCREV_machine ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
+SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.10.bb b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
index 978775a7d33d..d3cb81662e98 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.10.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
@@ -10,18 +10,18 @@ KBRANCH_qemux86  ?= "standard/common-pc/base"
 KBRANCH_qemux86-64  ?= "standard/common-pc-64/base"
 KBRANCH_qemumips64 ?= "standard/mti-malta64"
 
-SRCREV_machine_qemuarm ?= "f6b075991c91b7c2bb641b389757863e2fd34b8c"
-SRCREV_machine_qemumips ?= "48afdc632312b6cc26fe7bca151cfb66b2ebc308"
-SRCREV_machine_qemuppc ?= "cf35ea9ac92153858dadd2f4ab71cccd3a1fa26b"
-SRCREV_machine_qemux86 ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
-SRCREV_machine_qemux86-64 ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
-SRCREV_machine_qemumips64 ?= "ebdb374ca5130ef456d0baf75b6fe7a242932d0d"
-SRCREV_machine ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
-SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
+SRCREV_machine_qemuarm ?= "7a8c197b86281f9a445e23378fdfeeb4da0c48e9"
+SRCREV_machine_qemumips ?= "926e71942842a9d1a9f64aae0458b2d777d3bca9"
+SRCREV_machine_qemuppc ?= "65648fce58a5e095cfe2bf394bc0f6200efb281c"
+SRCREV_machine_qemux86 ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
+SRCREV_machine_qemux86-64 ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
+SRCREV_machine_qemumips64 ?= "06d173388a171e7371816d74567fdec994925aa4"
+SRCREV_machine ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
+SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
 
-LINUX_VERSION ?= "3.10.62"
+LINUX_VERSION ?= "3.10.65"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
-- 
2.1.0



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

* [PATCH 4/8] linux-yocto/3.17: update to v3.17.8
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
                   ` (2 preceding siblings ...)
  2015-02-06 16:31 ` [PATCH 3/8] linux-yocto/3.10: update to v3.10.65 Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 5/8] linux-yocto: basic octeon III support Bruce Ashfield
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Updating to the latest korg stable version.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb |  6 +++---
 meta/recipes-kernel/linux/linux-yocto_3.17.bb      | 20 ++++++++++----------
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb
index 1a4f9a81454f..c399adcd5e87 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb
@@ -4,12 +4,12 @@ KCONFIG_MODE = "--allnoconfig"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-LINUX_VERSION ?= "3.17.6"
+LINUX_VERSION ?= "3.17.8"
 
 KMETA = "meta"
 
-SRCREV_machine ?= "5ff54d8fbf74278e9e5074cbba516a14f0915ff7"
-SRCREV_meta ?= "b81030f9ec2de3dc6c048e142dcbff62e305cc40"
+SRCREV_machine ?= "0409b1fbed221e61212e17b7637fa54f908d83f6"
+SRCREV_meta ?= "f24c2bf9c298595d00a9d8600841f2b0206e1fba"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.17.bb b/meta/recipes-kernel/linux/linux-yocto_3.17.bb
index 973d8aaa845a..f57d9c200256 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.17.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.17.bb
@@ -11,19 +11,19 @@ KBRANCH_qemux86  ?= "standard/common-pc"
 KBRANCH_qemux86-64 ?= "standard/common-pc-64/base"
 KBRANCH_qemumips64 ?= "standard/mti-malta64"
 
-SRCREV_machine_qemuarm ?= "a1183153c56ace9f9140c73ce730ec181f78dc0f"
-SRCREV_machine_qemuarm64 ?= "268b7677421eef003a84f31c6bd0b8ec3acc1e36"
-SRCREV_machine_qemumips ?= "18c8db2009f25524a29a5258d041e0442c10817d"
-SRCREV_machine_qemuppc ?= "6d2bbdac0e6560542fa2252d91eee9ae0f17f9c7"
-SRCREV_machine_qemux86 ?= "5ff54d8fbf74278e9e5074cbba516a14f0915ff7"
-SRCREV_machine_qemux86-64 ?= "5ff54d8fbf74278e9e5074cbba516a14f0915ff7"
-SRCREV_machine_qemumips64 ?= "2306cb2dd019c8b731879331ba314035a7271e7b"
-SRCREV_machine ?= "5ff54d8fbf74278e9e5074cbba516a14f0915ff7"
-SRCREV_meta ?= "b81030f9ec2de3dc6c048e142dcbff62e305cc40"
+SRCREV_machine_qemuarm ?= "12991e8ac40c51ef3e337f17f12aa59c6500fc7f"
+SRCREV_machine_qemuarm64 ?= "0409b1fbed221e61212e17b7637fa54f908d83f6"
+SRCREV_machine_qemumips ?= "1f4735ed314defc95ab9929258ad12844cc2c676"
+SRCREV_machine_qemuppc ?= "3231dececf867215ecab7c7f9ec3a7a7640a3f32"
+SRCREV_machine_qemux86 ?= "0409b1fbed221e61212e17b7637fa54f908d83f6"
+SRCREV_machine_qemux86-64 ?= "0409b1fbed221e61212e17b7637fa54f908d83f6"
+SRCREV_machine_qemumips64 ?= "7005c584078109dae03567e9c597a847a2bc5136"
+SRCREV_machine ?= "0409b1fbed221e61212e17b7637fa54f908d83f6"
+SRCREV_meta ?= "f24c2bf9c298595d00a9d8600841f2b0206e1fba"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.17.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
 
-LINUX_VERSION ?= "3.17.6"
+LINUX_VERSION ?= "3.17.8"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
-- 
2.1.0



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

* [PATCH 5/8] linux-yocto: basic octeon III support
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
                   ` (3 preceding siblings ...)
  2015-02-06 16:31 ` [PATCH 4/8] linux-yocto/3.17: update to v3.17.8 Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 6/8] lttng: update to 2.6.0-stable Bruce Ashfield
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Importing the following commits to add basic octeon III support to the
3.14 linux-yocto kernel:

   1e0bbd1dd68e MIPS:OCTEON: More OCTEONIII support
   f51a5843ee2d MIPS: Octeon: CVMSEG LM loads may cause dcache parity errors
   58bcba842781 MIPS: Octeon: Implement the core-16057 workaround
   ba5a219685e8 MIPS Override assembler ISA for kernel FPU instruction.
   7759a0511965 MIPS donot build fast TLB refill handler with 32-bit kernels.
   3f51e46ff641 MIPS Add minimal support for OCTEON3 to c-r4k.c
   bbde024d903a MIPS Add function get ebase cpunum
   9f18310679cb MIPS OCTEON Enable use of FPU
   d24496ee8fc8 MIPS OCTEON Add OCTEON3 to get cpu type

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb   |  4 ++--
 meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb |  2 +-
 meta/recipes-kernel/linux/linux-yocto_3.14.bb      | 16 ++++++++--------
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
index fbd331f38e74..342debe2c930 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
@@ -3,8 +3,8 @@ KBRANCH_qemuppc ?= "standard/preempt-rt/qemuppc"
 
 require recipes-kernel/linux/linux-yocto.inc
 
-SRCREV_machine ?= "367c3b9712a6e469aed0cb5deebd5d3bfab12b79"
-SRCREV_machine_qemuppc ?= "4e827a9b658b6381f6706490e40b6a069a0c4b64"
+SRCREV_machine ?= "c9291eb73e9729480c651cca73babdb29e193ad4"
+SRCREV_machine_qemuppc ?= "35bfb41271634b66522164efeb424822993899c7"
 SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
index 2d1bc2117145..0808d1bf1a23 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
@@ -8,7 +8,7 @@ LINUX_VERSION ?= "3.14.29"
 
 KMETA = "meta"
 
-SRCREV_machine ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
+SRCREV_machine ?= "1e0bbd1dd68e255a9af7c36930debc6dd4885d0c"
 SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.14.bb b/meta/recipes-kernel/linux/linux-yocto_3.14.bb
index f218a91b48f0..19b7c126bada 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.14.bb
@@ -11,14 +11,14 @@ KBRANCH_qemux86  ?= "standard/common-pc/base"
 KBRANCH_qemux86-64 ?= "standard/common-pc-64/base"
 KBRANCH_qemumips64 ?= "standard/mti-malta64"
 
-SRCREV_machine_qemuarm ?= "c0ed33beda334dcd387dff89da9804c03e24d648"
-SRCREV_machine_qemuarm64 ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
-SRCREV_machine_qemumips ?= "808071c5f72dc98ed2192de28bdd4e9ba2f7e820"
-SRCREV_machine_qemuppc ?= "0f93713ce91cc93f055ae6bcf1bf728d4036d097"
-SRCREV_machine_qemux86 ?= "f6aa7aaca80e8532316bfb6e8dd2fbf9ab4f8b8e"
-SRCREV_machine_qemux86-64 ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
-SRCREV_machine_qemumips64 ?= "f44eb151dc53822f4f94f50b2ec67a0a1aab041b"
-SRCREV_machine ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
+SRCREV_machine_qemuarm ?= "4af8557eb8576ba957980705a3719aca0e27836e"
+SRCREV_machine_qemuarm64 ?= "1e0bbd1dd68e255a9af7c36930debc6dd4885d0c"
+SRCREV_machine_qemumips ?= "520d5d89434c61b4a95ac0c68d8e74fc8068e35b"
+SRCREV_machine_qemuppc ?= "73e4399fd8db810cb59423767f9ca82a54311c7b"
+SRCREV_machine_qemux86 ?= "19e871b55f80d4cbd406b64d3d5fabf6103e6f1c"
+SRCREV_machine_qemux86-64 ?= "1e0bbd1dd68e255a9af7c36930debc6dd4885d0c"
+SRCREV_machine_qemumips64 ?= "6a469761ad8b3a0e585e53b842ea8d55d05089e3"
+SRCREV_machine ?= "1e0bbd1dd68e255a9af7c36930debc6dd4885d0c"
 SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
-- 
2.1.0



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

* [PATCH 6/8] lttng: update to 2.6.0-stable
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
                   ` (4 preceding siblings ...)
  2015-02-06 16:31 ` [PATCH 5/8] linux-yocto: basic octeon III support Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 7/8] linux-yocto-dev: update to v3.19+ Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 8/8] kern-tools: import patch performance improvements Bruce Ashfield
  7 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

To fix build issues against the v3.19 kernel, we can safely update to
the lttng 2.6 stable branches.

This allows us to drop two backported patches that are already part of
this update.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 ...probes-should-calculate-alignment-and-eve.patch | 130 ---------------------
 ...e-kvm-instrumentation-compile-on-3.17-rc1.patch |  46 --------
 ...modules-replace-KERNELDIR-with-KERNEL_SRC.patch |  35 ++----
 ...tng-modules_2.5.2.bb => lttng-modules_2.6.0.bb} |   6 +-
 4 files changed, 12 insertions(+), 205 deletions(-)
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/Fix-noargs-probes-should-calculate-alignment-and-eve.patch
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/Update-kvm-instrumentation-compile-on-3.17-rc1.patch
 rename meta/recipes-kernel/lttng/{lttng-modules_2.5.2.bb => lttng-modules_2.6.0.bb} (85%)

diff --git a/meta/recipes-kernel/lttng/lttng-modules/Fix-noargs-probes-should-calculate-alignment-and-eve.patch b/meta/recipes-kernel/lttng/lttng-modules/Fix-noargs-probes-should-calculate-alignment-and-eve.patch
deleted file mode 100644
index 9c3dc9c1e16e..000000000000
--- a/meta/recipes-kernel/lttng/lttng-modules/Fix-noargs-probes-should-calculate-alignment-and-eve.patch
+++ /dev/null
@@ -1,130 +0,0 @@
-Upstream-Status: Backport
-Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-
-From d3de7f1468be0b18145ff85b3c1a7c7fb1d48c15 Mon Sep 17 00:00:00 2001
-From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
-Date: Fri, 25 Jul 2014 12:30:43 -0400
-Subject: [PATCH 1/3] Fix: noargs probes should calculate alignment and event
- length
-
-A noargs probe could have event fields. noargs just means that the probe
-does not receive any argument as parameter. However, it could very well
-serialize data into fields (global variables, constants, etc).
-
-It just happens that LTTng does not serialize any data in noargs events
-at the moment, but this may very well change.
-
-The if (0) with (void) variable access strategy to stop compiler from
-complaining from unused variables does not seem to work as expected with
-gcc 4.9.1. Use "unused" attribute instead.
-
-Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
----
- probes/lttng-events.h | 49 +++++++++++++++++++++++++++++++++++--------------
- 1 file changed, 35 insertions(+), 14 deletions(-)
-
-diff --git a/probes/lttng-events.h b/probes/lttng-events.h
-index 596b70608584..ba9563b15cf9 100644
---- a/probes/lttng-events.h
-+++ b/probes/lttng-events.h
-@@ -456,10 +456,19 @@ static __used struct lttng_probe_desc TP_ID(__probe_desc___, TRACE_SYSTEM) = {
- static inline size_t __event_get_size__##_name(size_t *__dynamic_len, _proto) \
- {									      \
- 	size_t __event_len = 0;						      \
--	unsigned int __dynamic_len_idx = 0;				      \
-+	unsigned int __dynamic_len_idx __attribute__((unused)) = 0;	      \
-+									      \
-+	_tstruct							      \
-+	return __event_len;						      \
-+}
-+
-+#undef DECLARE_EVENT_CLASS_NOARGS
-+#define DECLARE_EVENT_CLASS_NOARGS(_name, _tstruct, _assign, _print)	      \
-+static inline size_t __event_get_size__##_name(size_t *__dynamic_len)	      \
-+{									      \
-+	size_t __event_len = 0;						      \
-+	unsigned int __dynamic_len_idx __attribute__((unused)) = 0;	      \
- 									      \
--	if (0)								      \
--		(void) __dynamic_len_idx;	/* don't warn if unused */    \
- 	_tstruct							      \
- 	return __event_len;						      \
- }
-@@ -514,6 +523,15 @@ static inline size_t __event_get_align__##_name(_proto)			      \
- 	return __event_align;						      \
- }
- 
-+#undef DECLARE_EVENT_CLASS_NOARGS
-+#define DECLARE_EVENT_CLASS_NOARGS(_name, _tstruct, _assign, _print)	      \
-+static inline size_t __event_get_align__##_name(void)			      \
-+{									      \
-+	size_t __event_align = 1;					      \
-+	_tstruct							      \
-+	return __event_align;						      \
-+}
-+
- #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
- 
- 
-@@ -553,12 +571,16 @@ static inline size_t __event_get_align__##_name(_proto)			      \
- #undef TP_STRUCT__entry
- #define TP_STRUCT__entry(args...) args
- 
--#undef DECLARE_EVENT_CLASS
--#define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)  \
-+#undef DECLARE_EVENT_CLASS_NOARGS
-+#define DECLARE_EVENT_CLASS_NOARGS(_name, _tstruct, _assign, _print)	      \
- struct __event_typemap__##_name {					      \
- 	_tstruct							      \
- };
- 
-+#undef DECLARE_EVENT_CLASS
-+#define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)  \
-+	DECLARE_EVENT_CLASS_NOARGS(_name, _tstruct, _assign, _print)
-+
- #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
- 
- 
-@@ -760,15 +782,11 @@ static void __event_probe__##_name(void *__data, _proto)		      \
- 	struct lttng_channel *__chan = __event->chan;			      \
- 	struct lib_ring_buffer_ctx __ctx;				      \
- 	size_t __event_len, __event_align;				      \
--	size_t __dynamic_len_idx = 0;					      \
--	size_t __dynamic_len[2 * ARRAY_SIZE(__event_fields___##_name)];	      \
--	struct __event_typemap__##_name __typemap;			      \
-+	size_t __dynamic_len_idx __attribute__((unused)) = 0;		      \
-+	size_t __dynamic_len[2 * ARRAY_SIZE(__event_fields___##_name)] __attribute__((unused)); \
-+	struct __event_typemap__##_name __typemap __attribute__((unused));    \
- 	int __ret;							      \
- 									      \
--	if (0) {							      \
--		(void) __dynamic_len_idx;	/* don't warn if unused */    \
--		(void) __typemap;		/* don't warn if unused */    \
--	}								      \
- 	if (!_TP_SESSION_CHECK(session, __chan->session))		      \
- 		return;							      \
- 	if (unlikely(!ACCESS_ONCE(__chan->session->active)))		      \
-@@ -800,6 +818,9 @@ static void __event_probe__##_name(void *__data)			      \
- 	struct lttng_channel *__chan = __event->chan;			      \
- 	struct lib_ring_buffer_ctx __ctx;				      \
- 	size_t __event_len, __event_align;				      \
-+	size_t __dynamic_len_idx __attribute__((unused)) = 0;		      \
-+	size_t __dynamic_len[2 * ARRAY_SIZE(__event_fields___##_name)] __attribute__((unused)); \
-+	struct __event_typemap__##_name __typemap __attribute__((unused));    \
- 	int __ret;							      \
- 									      \
- 	if (!_TP_SESSION_CHECK(session, __chan->session))		      \
-@@ -810,8 +831,8 @@ static void __event_probe__##_name(void *__data)			      \
- 		return;							      \
- 	if (unlikely(!ACCESS_ONCE(__event->enabled)))			      \
- 		return;							      \
--	__event_len = 0;						      \
--	__event_align = 1;						      \
-+	__event_len = __event_get_size__##_name(__dynamic_len);		      \
-+	__event_align = __event_get_align__##_name();			      \
- 	lib_ring_buffer_ctx_init(&__ctx, __chan->chan, __event, __event_len,  \
- 				 __event_align, -1);			      \
- 	__ret = __chan->ops->event_reserve(&__ctx, __event->id);	      \
--- 
-1.8.1.2
-
diff --git a/meta/recipes-kernel/lttng/lttng-modules/Update-kvm-instrumentation-compile-on-3.17-rc1.patch b/meta/recipes-kernel/lttng/lttng-modules/Update-kvm-instrumentation-compile-on-3.17-rc1.patch
deleted file mode 100644
index 3541b50b7922..000000000000
--- a/meta/recipes-kernel/lttng/lttng-modules/Update-kvm-instrumentation-compile-on-3.17-rc1.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Upstream-Status: Backport
-Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-
-From 458c2022e992c057bd21d02e4c77bcc7d4d6cd6c Mon Sep 17 00:00:00 2001
-From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
-Date: Thu, 21 Aug 2014 11:15:50 -0400
-Subject: [PATCH 3/3] Update kvm instrumentation: compile on 3.17-rc1
-
-Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
----
- instrumentation/events/lttng-module/arch/x86/kvm/trace.h | 12 +++++++++++-
- 1 file changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/instrumentation/events/lttng-module/arch/x86/kvm/trace.h b/instrumentation/events/lttng-module/arch/x86/kvm/trace.h
-index 2354884074eb..3c299c58a1cf 100644
---- a/instrumentation/events/lttng-module/arch/x86/kvm/trace.h
-+++ b/instrumentation/events/lttng-module/arch/x86/kvm/trace.h
-@@ -724,7 +724,7 @@ TRACE_EVENT(kvm_emulate_insn,
- 		tp_memcpy(insn,
- 		       vcpu->arch.emulate_ctxt.decode.fetch.data,
- 		       15)
--#else
-+#elif (LINUX_VERSION_CODE < KERNEL_VERSION(3,17,0))
- 		tp_assign(rip, vcpu->arch.emulate_ctxt.fetch.start)
- 		tp_assign(csbase, kvm_x86_ops->get_segment_base(vcpu, VCPU_SREG_CS))
- 		tp_assign(len, vcpu->arch.emulate_ctxt._eip
-@@ -732,6 +732,16 @@ TRACE_EVENT(kvm_emulate_insn,
- 		tp_memcpy(insn,
- 		       vcpu->arch.emulate_ctxt.fetch.data,
- 		       15)
-+#else
-+		tp_assign(rip, vcpu->arch.emulate_ctxt._eip -
-+			(vcpu->arch.emulate_ctxt.fetch.ptr -
-+				vcpu->arch.emulate_ctxt.fetch.data))
-+		tp_assign(csbase, kvm_x86_ops->get_segment_base(vcpu, VCPU_SREG_CS))
-+		tp_assign(len, vcpu->arch.emulate_ctxt.fetch.ptr -
-+			vcpu->arch.emulate_ctxt.fetch.data)
-+		tp_memcpy(insn,
-+		       vcpu->arch.emulate_ctxt.fetch.data,
-+		       15)
- #endif
- 		tp_assign(flags, kei_decode_mode(vcpu->arch.emulate_ctxt.mode))
- 		tp_assign(failed, failed)
--- 
-1.8.1.2
-
diff --git a/meta/recipes-kernel/lttng/lttng-modules/lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch b/meta/recipes-kernel/lttng/lttng-modules/lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch
index 30f825c4141a..bbfa38a0b5f6 100644
--- a/meta/recipes-kernel/lttng/lttng-modules/lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch
+++ b/meta/recipes-kernel/lttng/lttng-modules/lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch
@@ -8,11 +8,11 @@ it as-is.
 
 Signed-off-by: Zumeng Chen <zumeng.chen@windriver.com>
 
-diff --git a/Makefile b/Makefile
-index a9d1cb1..c1b65b9 100644
---- a/Makefile
-+++ b/Makefile
-@@ -43,19 +43,19 @@ obj-m += lib/
+Index: git/Makefile
+===================================================================
+--- git.orig/Makefile
++++ git/Makefile
+@@ -62,19 +62,19 @@ obj-m += lib/
  endif # CONFIG_TRACEPOINTS
  
  else # KERNELRELEASE
@@ -37,26 +37,11 @@ index a9d1cb1..c1b65b9 100644
 -	$(MAKE) -C $(KERNELDIR) M=$(PWD) $@
 +	$(MAKE) -C $(KERNEL_SRC) M=$(PWD) $@
  endif # KERNELRELEASE
-diff --git a/README b/README
-index 8c5dd46..6bd3334 100644
---- a/README
-+++ b/README
-@@ -27,8 +27,8 @@ access to your full kernel source tree), and use:
- If you need to specify the target directory to the kernel you want to build
- against, use:
- 
--% KERNELDIR=path_to_kernel_dir make
--# KERNELDIR=path_to_kernel_dir make modules_install
-+% KERNEL_SRC=path_to_kernel_dir make
-+# KERNEL_SRC=path_to_kernel_dir make modules_install
- # depmod -a kernel_version
- 
- Use lttng-tools to control the tracer. LTTng tools should automatically load
-diff --git a/probes/Makefile b/probes/Makefile
-index 225803c..3449866 100644
---- a/probes/Makefile
-+++ b/probes/Makefile
-@@ -212,18 +212,18 @@ endif
+Index: git/probes/Makefile
+===================================================================
+--- git.orig/probes/Makefile
++++ git/probes/Makefile
+@@ -231,18 +231,18 @@ endif
  endif
  
  else
diff --git a/meta/recipes-kernel/lttng/lttng-modules_2.5.2.bb b/meta/recipes-kernel/lttng/lttng-modules_2.6.0.bb
similarity index 85%
rename from meta/recipes-kernel/lttng/lttng-modules_2.5.2.bb
rename to meta/recipes-kernel/lttng/lttng-modules_2.6.0.bb
index 6ec83d090a5d..d0039b3b1473 100644
--- a/meta/recipes-kernel/lttng/lttng-modules_2.5.2.bb
+++ b/meta/recipes-kernel/lttng/lttng-modules_2.6.0.bb
@@ -11,14 +11,12 @@ do_configure[depends] += "virtual/kernel:do_shared_workdir"
 
 inherit module
 
-SRCREV = "16d7431c3a78605ea598dbd3f081a2b1a8463f23"
+SRCREV = "9e8bcbf975844986f021e99e2a30ceedc41b46a8"
 
 COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|arm).*-linux'
 
-SRC_URI = "git://git.lttng.org/lttng-modules.git;branch=stable-2.5 \
+SRC_URI = "git://git.lttng.org/lttng-modules.git;branch=stable-2.6 \
            file://lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch \
-           file://Fix-noargs-probes-should-calculate-alignment-and-eve.patch \
-           file://Update-kvm-instrumentation-compile-on-3.17-rc1.patch \
            "
 
 export INSTALL_MOD_DIR="kernel/lttng-modules"
-- 
2.1.0



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

* [PATCH 7/8] linux-yocto-dev: update to v3.19+
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
                   ` (5 preceding siblings ...)
  2015-02-06 16:31 ` [PATCH 6/8] lttng: update to 2.6.0-stable Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  2015-02-06 16:31 ` [PATCH 8/8] kern-tools: import patch performance improvements Bruce Ashfield
  7 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-kernel/linux/linux-yocto-dev.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-dev.bb b/meta/recipes-kernel/linux/linux-yocto-dev.bb
index 00feadedd894..ba88fd7dc337 100644
--- a/meta/recipes-kernel/linux/linux-yocto-dev.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-dev.bb
@@ -35,7 +35,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-dev.git;bareclone=1;branch=${K
 SRCREV_machine ?= '${@oe.utils.conditional("PREFERRED_PROVIDER_virtual/kernel", "linux-yocto-dev", "${AUTOREV}", "29594404d7fe73cd80eaa4ee8c43dcc53970c60e", d)}'
 SRCREV_meta ?= '${@oe.utils.conditional("PREFERRED_PROVIDER_virtual/kernel", "linux-yocto-dev", "${AUTOREV}", "29594404d7fe73cd80eaa4ee8c43dcc53970c60e", d)}'
 
-LINUX_VERSION ?= "3.17+"
+LINUX_VERSION ?= "3.19+"
 LINUX_VERSION_EXTENSION ?= "-yoctodev-${LINUX_KERNEL_TYPE}"
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
-- 
2.1.0



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

* [PATCH 8/8] kern-tools: import patch performance improvements
  2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
                   ` (6 preceding siblings ...)
  2015-02-06 16:31 ` [PATCH 7/8] linux-yocto-dev: update to v3.19+ Bruce Ashfield
@ 2015-02-06 16:31 ` Bruce Ashfield
  7 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 16:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Updating the SRCREV for the following commits:

  4822d22b65c2 kgit-meta: dont run kgit-s2q for non-leaf nodes
  3e3de1b9cdec createme: remove meta branch checks

With these, we save 10 seconds on the average patch phase, and
significantly more if very long patch queues are used.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.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 ce872354f23c..acdb2c6b6015 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://git/tools/kgit;beginline=5;endline=9;md5=d8d1d729a70c
 
 DEPENDS = "git-native"
 
-SRCREV = "23345b8846fe4bd167efdf1bd8a1224b2ba9a5ff"
+SRCREV = "53bf01d565957f6dba95fbd7126f1a3b3dff64a5"
 PR = "r12"
 PV = "0.2+git${SRCPV}"
 
-- 
2.1.0



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

* Re: [PATCH 2/8] linux-yocto/3.14: update to 3.14.29
  2015-02-06 16:31 ` [PATCH 2/8] linux-yocto/3.14: update to 3.14.29 Bruce Ashfield
@ 2015-02-06 21:05   ` Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-06 21:05 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Patches and discussions about the oe-core layer

This triggered a build issue with qemumips, so I've pushed another branch
to my zedd/kernel-dev contrib branch that fixes the issue.

Cheers,

Bruce

On Fri, Feb 6, 2015 at 11:31 AM, Bruce Ashfield
<bruce.ashfield@windriver.com> wrote:
> Updating to the latest korg -stable release for 3.14.
>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
> ---
>  meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb   |  8 ++++----
>  meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb |  6 +++---
>  meta/recipes-kernel/linux/linux-yocto_3.14.bb      | 20 ++++++++++----------
>  3 files changed, 17 insertions(+), 17 deletions(-)
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
> index 7dbf82c3e691..fbd331f38e74 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.14.bb
> @@ -3,13 +3,13 @@ KBRANCH_qemuppc ?= "standard/preempt-rt/qemuppc"
>
>  require recipes-kernel/linux/linux-yocto.inc
>
> -SRCREV_machine ?= "7f0712d10247ffca8e48e944f49707bcf9117ead"
> -SRCREV_machine_qemuppc ?= "8bed2a975d491c963cff56496f7e35f5bcff926f"
> -SRCREV_meta ?= "a227f20eff056e511d504b2e490f3774ab260d6f"
> +SRCREV_machine ?= "367c3b9712a6e469aed0cb5deebd5d3bfab12b79"
> +SRCREV_machine_qemuppc ?= "4e827a9b658b6381f6706490e40b6a069a0c4b64"
> +SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
>
>  SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -LINUX_VERSION ?= "3.14.24"
> +LINUX_VERSION ?= "3.14.29"
>
>  PV = "${LINUX_VERSION}+git${SRCPV}"
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
> index 67bf4624f833..2d1bc2117145 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb
> @@ -4,12 +4,12 @@ KCONFIG_MODE = "--allnoconfig"
>
>  require recipes-kernel/linux/linux-yocto.inc
>
> -LINUX_VERSION ?= "3.14.24"
> +LINUX_VERSION ?= "3.14.29"
>
>  KMETA = "meta"
>
> -SRCREV_machine ?= "02120556b0ebc20c30374ccf211e8e4ceac2bb1c"
> -SRCREV_meta ?= "a227f20eff056e511d504b2e490f3774ab260d6f"
> +SRCREV_machine ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
> +SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
>
>  PV = "${LINUX_VERSION}+git${SRCPV}"
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto_3.14.bb b/meta/recipes-kernel/linux/linux-yocto_3.14.bb
> index 5f0a09e97331..f218a91b48f0 100644
> --- a/meta/recipes-kernel/linux/linux-yocto_3.14.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto_3.14.bb
> @@ -11,19 +11,19 @@ KBRANCH_qemux86  ?= "standard/common-pc/base"
>  KBRANCH_qemux86-64 ?= "standard/common-pc-64/base"
>  KBRANCH_qemumips64 ?= "standard/mti-malta64"
>
> -SRCREV_machine_qemuarm ?= "6166316d47b859aa38bfecc61f4808828af03937"
> -SRCREV_machine_qemuarm64 ?= "902f34d36102a4b2008b776ecae686f80d307e12"
> -SRCREV_machine_qemumips ?= "4ececcc09c6550a0896728163907e729d817c2fd"
> -SRCREV_machine_qemuppc ?= "1cc5b09f8bb7f40b289d149d370c62dcc8109501"
> -SRCREV_machine_qemux86 ?= "38cd560d5022ed2dbd1ab0dca9642e47c98a0aa1"
> -SRCREV_machine_qemux86-64 ?= "02120556b0ebc20c30374ccf211e8e4ceac2bb1c"
> -SRCREV_machine_qemumips64 ?= "737272b1dfd361d9ea19812a9717e2798e3c4576"
> -SRCREV_machine ?= "02120556b0ebc20c30374ccf211e8e4ceac2bb1c"
> -SRCREV_meta ?= "a227f20eff056e511d504b2e490f3774ab260d6f"
> +SRCREV_machine_qemuarm ?= "c0ed33beda334dcd387dff89da9804c03e24d648"
> +SRCREV_machine_qemuarm64 ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
> +SRCREV_machine_qemumips ?= "808071c5f72dc98ed2192de28bdd4e9ba2f7e820"
> +SRCREV_machine_qemuppc ?= "0f93713ce91cc93f055ae6bcf1bf728d4036d097"
> +SRCREV_machine_qemux86 ?= "f6aa7aaca80e8532316bfb6e8dd2fbf9ab4f8b8e"
> +SRCREV_machine_qemux86-64 ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
> +SRCREV_machine_qemumips64 ?= "f44eb151dc53822f4f94f50b2ec67a0a1aab041b"
> +SRCREV_machine ?= "21ba402e0a5286baf0b8960da132e2d56f020c88"
> +SRCREV_meta ?= "6eddbf47875ef48ddc5864957a7b63363100782b"
>
>  SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
>
> -LINUX_VERSION ?= "3.14.24"
> +LINUX_VERSION ?= "3.14.29"
>
>  PV = "${LINUX_VERSION}+git${SRCPV}"
>
> --
> 2.1.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

* Re: [PATCH 3/8] linux-yocto/3.10: update to v3.10.65
  2015-02-06 16:31 ` [PATCH 3/8] linux-yocto/3.10: update to v3.10.65 Bruce Ashfield
@ 2015-02-10 20:50   ` akuster808
  2015-02-10 21:15     ` Bruce Ashfield
  0 siblings, 1 reply; 23+ messages in thread
From: akuster808 @ 2015-02-10 20:50 UTC (permalink / raw)
  To: openembedded-core

Should this be back ported to Dizzy?

- Armin

On 02/06/2015 08:31 AM, Bruce Ashfield wrote:
> Integrating the latest korg -stable updates for 3.10 LTSI.
>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
> ---
>   meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb   |  8 ++++----
>   meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb |  6 +++---
>   meta/recipes-kernel/linux/linux-yocto_3.10.bb      | 18 +++++++++---------
>   3 files changed, 16 insertions(+), 16 deletions(-)
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
> index 8acbd2e59b09..36a00cf03b1a 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
> @@ -3,13 +3,13 @@ KBRANCH_qemuppc ?= "standard/preempt-rt/qemuppc"
>
>   require recipes-kernel/linux/linux-yocto.inc
>
> -SRCREV_machine ?= "94a79d98e40b51466600fb3375ad2908c38dd192"
> -SRCREV_machine_qemuppc ?= "c1dcbac7751652784f180fdb91f87bc37fba8c52"
> -SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
> +SRCREV_machine ?= "c75818e2932c3c0444ebebfcc0608fecf2440b92"
> +SRCREV_machine_qemuppc ?= "fc7abf900967db5dea8a8f8648b8a0de7032f8d7"
> +SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
>
>   SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
>
> -LINUX_VERSION ?= "3.10.62"
> +LINUX_VERSION ?= "3.10.65"
>
>   PV = "${LINUX_VERSION}+git${SRCPV}"
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
> index 9ea81b8874f8..3248c4414b42 100644
> --- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
> @@ -5,12 +5,12 @@ require recipes-kernel/linux/linux-yocto.inc
>   LINUX_KERNEL_TYPE = "tiny"
>   KCONFIG_MODE = "--allnoconfig"
>
> -LINUX_VERSION ?= "3.10.62"
> +LINUX_VERSION ?= "3.10.65"
>
>   KMETA = "meta"
>
> -SRCREV_machine ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
> -SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
> +SRCREV_machine ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
> +SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
>
>   PV = "${LINUX_VERSION}+git${SRCPV}"
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto_3.10.bb b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
> index 978775a7d33d..d3cb81662e98 100644
> --- a/meta/recipes-kernel/linux/linux-yocto_3.10.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
> @@ -10,18 +10,18 @@ KBRANCH_qemux86  ?= "standard/common-pc/base"
>   KBRANCH_qemux86-64  ?= "standard/common-pc-64/base"
>   KBRANCH_qemumips64 ?= "standard/mti-malta64"
>
> -SRCREV_machine_qemuarm ?= "f6b075991c91b7c2bb641b389757863e2fd34b8c"
> -SRCREV_machine_qemumips ?= "48afdc632312b6cc26fe7bca151cfb66b2ebc308"
> -SRCREV_machine_qemuppc ?= "cf35ea9ac92153858dadd2f4ab71cccd3a1fa26b"
> -SRCREV_machine_qemux86 ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
> -SRCREV_machine_qemux86-64 ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
> -SRCREV_machine_qemumips64 ?= "ebdb374ca5130ef456d0baf75b6fe7a242932d0d"
> -SRCREV_machine ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
> -SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
> +SRCREV_machine_qemuarm ?= "7a8c197b86281f9a445e23378fdfeeb4da0c48e9"
> +SRCREV_machine_qemumips ?= "926e71942842a9d1a9f64aae0458b2d777d3bca9"
> +SRCREV_machine_qemuppc ?= "65648fce58a5e095cfe2bf394bc0f6200efb281c"
> +SRCREV_machine_qemux86 ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
> +SRCREV_machine_qemux86-64 ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
> +SRCREV_machine_qemumips64 ?= "06d173388a171e7371816d74567fdec994925aa4"
> +SRCREV_machine ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
> +SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
>
>   SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
>
> -LINUX_VERSION ?= "3.10.62"
> +LINUX_VERSION ?= "3.10.65"
>
>   PV = "${LINUX_VERSION}+git${SRCPV}"
>
>


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

* Re: [PATCH 3/8] linux-yocto/3.10: update to v3.10.65
  2015-02-10 20:50   ` akuster808
@ 2015-02-10 21:15     ` Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2015-02-10 21:15 UTC (permalink / raw)
  To: akuster808; +Cc: Patches and discussions about the oe-core layer

It's a -stable update, with no new features, so it should be safe to backport.

Bruce

On Tue, Feb 10, 2015 at 3:50 PM, akuster808 <akuster808@gmail.com> wrote:
> Should this be back ported to Dizzy?
>
> - Armin
>
>
> On 02/06/2015 08:31 AM, Bruce Ashfield wrote:
>>
>> Integrating the latest korg -stable updates for 3.10 LTSI.
>>
>> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
>> ---
>>   meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb   |  8 ++++----
>>   meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb |  6 +++---
>>   meta/recipes-kernel/linux/linux-yocto_3.10.bb      | 18
>> +++++++++---------
>>   3 files changed, 16 insertions(+), 16 deletions(-)
>>
>> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
>> b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
>> index 8acbd2e59b09..36a00cf03b1a 100644
>> --- a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
>> +++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
>> @@ -3,13 +3,13 @@ KBRANCH_qemuppc ?= "standard/preempt-rt/qemuppc"
>>
>>   require recipes-kernel/linux/linux-yocto.inc
>>
>> -SRCREV_machine ?= "94a79d98e40b51466600fb3375ad2908c38dd192"
>> -SRCREV_machine_qemuppc ?= "c1dcbac7751652784f180fdb91f87bc37fba8c52"
>> -SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
>> +SRCREV_machine ?= "c75818e2932c3c0444ebebfcc0608fecf2440b92"
>> +SRCREV_machine_qemuppc ?= "fc7abf900967db5dea8a8f8648b8a0de7032f8d7"
>> +SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
>>
>>   SRC_URI =
>> "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
>>
>> -LINUX_VERSION ?= "3.10.62"
>> +LINUX_VERSION ?= "3.10.65"
>>
>>   PV = "${LINUX_VERSION}+git${SRCPV}"
>>
>> diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
>> b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
>> index 9ea81b8874f8..3248c4414b42 100644
>> --- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
>> +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
>> @@ -5,12 +5,12 @@ require recipes-kernel/linux/linux-yocto.inc
>>   LINUX_KERNEL_TYPE = "tiny"
>>   KCONFIG_MODE = "--allnoconfig"
>>
>> -LINUX_VERSION ?= "3.10.62"
>> +LINUX_VERSION ?= "3.10.65"
>>
>>   KMETA = "meta"
>>
>> -SRCREV_machine ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
>> -SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
>> +SRCREV_machine ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
>> +SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
>>
>>   PV = "${LINUX_VERSION}+git${SRCPV}"
>>
>> diff --git a/meta/recipes-kernel/linux/linux-yocto_3.10.bb
>> b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
>> index 978775a7d33d..d3cb81662e98 100644
>> --- a/meta/recipes-kernel/linux/linux-yocto_3.10.bb
>> +++ b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
>> @@ -10,18 +10,18 @@ KBRANCH_qemux86  ?= "standard/common-pc/base"
>>   KBRANCH_qemux86-64  ?= "standard/common-pc-64/base"
>>   KBRANCH_qemumips64 ?= "standard/mti-malta64"
>>
>> -SRCREV_machine_qemuarm ?= "f6b075991c91b7c2bb641b389757863e2fd34b8c"
>> -SRCREV_machine_qemumips ?= "48afdc632312b6cc26fe7bca151cfb66b2ebc308"
>> -SRCREV_machine_qemuppc ?= "cf35ea9ac92153858dadd2f4ab71cccd3a1fa26b"
>> -SRCREV_machine_qemux86 ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
>> -SRCREV_machine_qemux86-64 ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
>> -SRCREV_machine_qemumips64 ?= "ebdb374ca5130ef456d0baf75b6fe7a242932d0d"
>> -SRCREV_machine ?= "b2ac933df119a3444a32fcccf5e4ad453f5ac89d"
>> -SRCREV_meta ?= "f4ab00d96a3d8e443d7f7744ad996e184eac03b5"
>> +SRCREV_machine_qemuarm ?= "7a8c197b86281f9a445e23378fdfeeb4da0c48e9"
>> +SRCREV_machine_qemumips ?= "926e71942842a9d1a9f64aae0458b2d777d3bca9"
>> +SRCREV_machine_qemuppc ?= "65648fce58a5e095cfe2bf394bc0f6200efb281c"
>> +SRCREV_machine_qemux86 ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
>> +SRCREV_machine_qemux86-64 ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
>> +SRCREV_machine_qemumips64 ?= "06d173388a171e7371816d74567fdec994925aa4"
>> +SRCREV_machine ?= "a2f2be49cd60b8d022fa47daae0a8293c3066b78"
>> +SRCREV_meta ?= "d5456dd830cad14bd844753b751b83744ced3793"
>>
>>   SRC_URI =
>> "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
>>
>> -LINUX_VERSION ?= "3.10.62"
>> +LINUX_VERSION ?= "3.10.65"
>>
>>   PV = "${LINUX_VERSION}+git${SRCPV}"
>>
>>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2016-04-02  0:09 Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2016-04-02  0:09 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Richard,

Here's another set of 4.1 and 4.4 kernel updates. The majority are routine
backports, and have passed my sanity build and boot testing.

As part of this, I've also bumped linux-yocto-dev to v4.6-rc1. x86, mips
and powerpc are passing sanity. perf had an issue on powerpc, but that
is sorted out in the linux-yocto tree. qemuarm is has a boot issue, but
I'm pushing out the tree while we work on the issues, since it is the
best way to get more eyes on the problem.

There's also the revert of the x86 32bit PAT workaround, since with the
mainline set of 7 patches that were the result of the problem report ..
work as advertised and I was able to build and boot sato.

And finally, there's a minor tweak to the branch handling that fixes
something reported by Steve Sakoman when a specific branch is being
forced as the build branch. This always used to work, but in the
simplification of the routines when the SRCREV validation of the
fetcher came in .. I managed to drop it.

Cheers,

Bruce

The following changes since commit 7dcb4c41272e8f611eabea991fa30df79b9e48e3:

  bitbake: toaster: tests Migrate landing page tests to Selenium (2016-04-01 07:14:59 +0100)

are available in the git repository at:

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

Bruce Ashfield (8):
  linux-yocto/4.1: telemetry and dmaengine backports
  linux-yocto/4.4: gpio-pca953x: add PCAL9535 interrupt support
  linux-yocto/4.1: ahci: backport AHCI runtime PM
  linux-yocto-dev: bump to v4.6-rcX
  Revert "linux-yocto: Work around PAT issue on qemux86"
  linux-yocto/4.4: fix PAT for 32bit x86
  linux-yocto/4.4: UVC: Add support for R200 depth camera
  kernel-yocto: enforce SRC_URI specified branch

 meta/classes/kernel-yocto.bbclass                  |  11 +++
 meta/recipes-kernel/linux/linux-yocto-dev.bb       |   2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb    |   2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb    |   2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb  |   2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb  |   2 +-
 .../linux-yocto/0001-Fix-qemux86-pat-issue.patch   | 100 ---------------------
 meta/recipes-kernel/linux/linux-yocto_4.1.bb       |  16 ++--
 meta/recipes-kernel/linux/linux-yocto_4.4.bb       |  18 ++--
 9 files changed, 32 insertions(+), 123 deletions(-)
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto/0001-Fix-qemux86-pat-issue.patch

-- 
2.5.0



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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2016-06-28  2:40 Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2016-06-28  2:40 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Nothing terribly earth shattering in this update, just a consolidated
set of kernel and configuration changes I've been gathering.

Cheers,

Bruce

The following changes since commit 84cce1d49ddb75025ec454d758fbc8d369920122:

  e2fsprogs: remove the extra dot from the recipe filename (2016-06-21 13:00:17 +0100)

are available in the git repository at:

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

Bruce Ashfield (8):
  linux-yocto/4.1: tpm2, pinctrl, powercap and watchdog backports
  linux-yocto/4.1: SPI, MFD, alsa and perf backports
  linux-yocto/4.1: driver, mmc and power backports
  linux-yocto/4.1: pstate backports
  linux-yocto/4.4: sensor driver backports
  linux-yocto/4.1/4.4: tpm, telemetry, acpi and cpuid changes
  linux-yocto/4.x: vfat feature cleanup
  linux-yocto: bxt and input configuration changes

 meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb   |  4 ++--
 meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb   |  2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb |  4 ++--
 meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb |  4 ++--
 meta/recipes-kernel/linux/linux-yocto_4.1.bb      | 18 +++++++++---------
 meta/recipes-kernel/linux/linux-yocto_4.4.bb      | 18 +++++++++---------
 6 files changed, 25 insertions(+), 25 deletions(-)

-- 
2.5.0



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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2016-12-08 17:58 Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2016-12-08 17:58 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Here are the pending changes in my queue.

There are a few bug & CVE fixes:

  - aufs warning
  - kernel_configcheck warnings
  - linux-yocto/4.x: CVE-2016-8655
  
Stable updates:

  - v4.1.36
  - v4.4.36
  - v4.8.12

-rt refreshes:

  - 4.4-rt43

And a kern-tools fix to get rid of the last leaking files to /tmp:

 -  kern-tools: ensure that no shared directories are used

I built and booted these on as many machines as possible, but it is a wide
matrix with three kernel versions all getting bumped.

The kern-tools fix is independent of the version bumps, so it is safe to
take, even if the -stable updates happen to show issues.

Cheers,

Bruce

The following changes since commit e38775a1d82e6dc60fc96cf243ecb94be964d9b2:

  kernel-yocto: exit on non-zero return code (2016-12-07 10:46:09 +0000)

are available in the git repository at:

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

Bruce Ashfield (8):
  linux-yocto/4.8: aufs warning and ixgbe calltrace
  linux-yocto/4.4/4.8: Fix remaining kernel_configcheck warnings in
    Intel BSPs
  linux-yoct/4.1: update to v4.1.36
  linux-yocto/4.4: update to v4.4.36
  linux-yocto/4.8: update to v4.8.12
  kern-tools: ensure that no shared directories are used
  linux-yocto-rt/4.4: update to -rt43
  linux-yocto/4.x: CVE-2016-8655

 .../kern-tools/kern-tools-native_git.bb              |  2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb      |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb      |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-rt_4.8.bb      |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb    |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb    |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_4.8.bb    |  6 +++---
 meta/recipes-kernel/linux/linux-yocto_4.1.bb         | 20 ++++++++++----------
 meta/recipes-kernel/linux/linux-yocto_4.4.bb         | 20 ++++++++++----------
 meta/recipes-kernel/linux/linux-yocto_4.8.bb         | 20 ++++++++++----------
 10 files changed, 49 insertions(+), 49 deletions(-)

-- 
2.5.0



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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2019-03-25  3:11 bruce.ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: bruce.ashfield @ 2019-03-25  3:11 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Hi all,

Here is the latest consolidated pull request of the changes I've collected
during M2/M3.

I was able to build and boot all architectures with these changes, and there's
nothing out of the ordinary in this series. But of course, I'm sure someone,
somewhere will find a combination that I wasn't able to test :D

Cheers,

Bruce

The following changes since commit 753e2a0ede4449917c75353b57f13bbafe70fac8:

  build-appliance-image: Update to master head revision (2019-03-19 23:56:29 +0000)

are available in the Git repository at:

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

Bruce Ashfield (8):
  linux-yocto: sound: Re-enable ENS1370 support
  linux-yocto: pinctrl config change for cannonlake
  linux-yocto/4.19: integrate arm systemtap fix
  linux-yocto/4.19: update to v4.19.30
  linux-yocto/5.0: update to v5.0.3
  linux-yocto-rt: import 5.0 -rt patches
  linux-yocto/5.0: x86/resctrl: Rename INTEL_RDT to RESCTRL
  linux-yocto-rt/4.19: update to -rt16

 .../linux/linux-yocto-rt_4.19.bb              |  6 +-
 .../linux/linux-yocto-rt_5.0.bb               |  6 +-
 .../linux/linux-yocto-tiny_4.19.bb            |  8 +--
 .../linux/linux-yocto-tiny_5.0.bb             |  8 +--
 ...0001-arm-Makefile-Fix-systemtap-4.19.patch | 62 -------------------
 meta/recipes-kernel/linux/linux-yocto_4.19.bb | 22 +++----
 meta/recipes-kernel/linux/linux-yocto_5.0.bb  | 20 +++---
 7 files changed, 35 insertions(+), 97 deletions(-)
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto/0001-arm-Makefile-Fix-systemtap-4.19.patch

-- 
2.19.1



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

* [PATCH 0/8]: linux-yocto: consolidated pull request
@ 2021-02-03  3:23 Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2021-02-03  3:23 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Richard,

Here is the next round of -stable updates, some configuration tweaks,
-rt bug fixes and the binutils patches identified by Khem.

I didn't pick up any issues in my local build/boot testing.

Cheers,

Bruce

The following changes since commit e45227cb2c9e8506a35cb9c97a867e50c4d70962:

  shaderc: add spirv-headers as dependencie (2021-01-29 15:59:40 +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):
  linux-yocto/5.10: update to v5.10.8
  linux-yocto/5.4: update to v5.4.90
  linux-yocto-rt/5.10: fix 5.10-rt build breakage
  linux-yocto-rt/5.4: fix 5.4-stable caused build breakage
  linux-yocto/5.10: update to v5.10.10
  linux-yocto/5.10: update to v5.10.12
  linux-yocto/5.4: update to v5.4.94
  linux-yocto/5.10: binutils 2.36 fixues

 .../linux/linux-yocto-rt_5.10.bb              |  6 ++---
 .../linux/linux-yocto-rt_5.4.bb               |  6 ++---
 .../linux/linux-yocto-tiny_5.10.bb            |  8 +++----
 .../linux/linux-yocto-tiny_5.4.bb             |  8 +++----
 meta/recipes-kernel/linux/linux-yocto_5.10.bb | 22 +++++++++----------
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 +++++++++----------
 6 files changed, 36 insertions(+), 36 deletions(-)

-- 
2.19.1


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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2021-07-02 15:13 Bruce Ashfield
  2021-07-03 22:02 ` Richard Purdie
  0 siblings, 1 reply; 23+ messages in thread
From: Bruce Ashfield @ 2021-07-02 15:13 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Richard,

Here's the next consolidated pull request. It has two normal -stable updates
for 5.10 and 5.4, as well as the first steps in bringing 5.13 in as the
reference kernel (and then dropping 5.4 from master).

I've built and booted 5.13 as the default for qemu*, as well as building it
against both musl and glibc with the 5.13 libc-headers. I didn't run into
any issues, and neither did my AB runs (I'd like to think it is all the
other patches that have been sent as linux-yocto-dev moved foward that made
this relatively few patches now).

I've also ensured that AB intermittent fixes are in place for 5.13, so it
is safe from that point of vew as well. Folks without exlcit versions set,
will get 5.13, but it is already sane and fit for that purpose.

Obviously you can pick and chose what you need from this if there are issues,
and I'm around to trouble shoot anything that pops up.

Cheers,

Bruce

The following changes since commit bc164bd86aadf981bb29807ab95265f79a176f8d:

  releases: update to include 3.1.9 (2021-07-02 07:24:21 +0100)

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):
  linux-yocto/5.10: update to v5.10.47
  linux-yocto/5.4: update to v5.4.129
  linux-yocto/5.10: scsi-debug needs scsi-disk
  linux-libc-headers: update to 5.13
  kernel-devsrc: fix scripts/prepare for ARM64
  kernel-devsrc: fix scripts prepare for powerpc
  kernel-devsrc: powerpc64 add scripts prepare support
  linux-yocto: introduce 5.13 recipes

 meta/conf/distro/include/tcmode-default.inc   |  2 +-
 ...e-inclusion-of-sysinfo.h-in-kernel.h.patch | 12 ++--
 ...ers_5.10.bb => linux-libc-headers_5.13.bb} |  5 +-
 meta/recipes-kernel/linux/kernel-devsrc.bb    | 24 +++++++-
 .../linux/linux-yocto-rt_5.10.bb              |  6 +-
 .../linux/linux-yocto-rt_5.13.bb              | 45 ++++++++++++++
 .../linux/linux-yocto-rt_5.4.bb               |  6 +-
 .../linux/linux-yocto-tiny_5.10.bb            |  8 +--
 .../linux/linux-yocto-tiny_5.13.bb            | 32 ++++++++++
 .../linux/linux-yocto-tiny_5.4.bb             |  8 +--
 meta/recipes-kernel/linux/linux-yocto_5.10.bb | 24 ++++----
 meta/recipes-kernel/linux/linux-yocto_5.13.bb | 58 +++++++++++++++++++
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 +++----
 13 files changed, 204 insertions(+), 48 deletions(-)
 rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers_5.10.bb => linux-libc-headers_5.13.bb} (80%)
 create mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_5.13.bb
 create mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_5.13.bb
 create mode 100644 meta/recipes-kernel/linux/linux-yocto_5.13.bb

-- 
2.19.1


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

* Re: [PATCH 0/8] linux-yocto: consolidated pull request
  2021-07-02 15:13 [PATCH 0/8] " Bruce Ashfield
@ 2021-07-03 22:02 ` Richard Purdie
  2021-07-04  2:43   ` Bruce Ashfield
  0 siblings, 1 reply; 23+ messages in thread
From: Richard Purdie @ 2021-07-03 22:02 UTC (permalink / raw)
  To: bruce.ashfield; +Cc: openembedded-core, Alexandre Belloni

Hi Bruce,

On Fri, 2021-07-02 at 11:13 -0400, bruce.ashfield@gmail.com wrote:
> Here's the next consolidated pull request. It has two normal -stable updates
> for 5.10 and 5.4, as well as the first steps in bringing 5.13 in as the
> reference kernel (and then dropping 5.4 from master).
> 
> I've built and booted 5.13 as the default for qemu*, as well as building it
> against both musl and glibc with the 5.13 libc-headers. I didn't run into
> any issues, and neither did my AB runs (I'd like to think it is all the
> other patches that have been sent as linux-yocto-dev moved foward that made
> this relatively few patches now).
> 
> I've also ensured that AB intermittent fixes are in place for 5.13, so it
> is safe from that point of vew as well. Folks without exlcit versions set,
> will get 5.13, but it is already sane and fit for that purpose.
> 
> Obviously you can pick and chose what you need from this if there are issues,
> and I'm around to trouble shoot anything that pops up.

Thanks for this. In general it looks good, there is just one failure worrying
me a bit:

https://autobuilder.yoctoproject.org/typhoon/#/builders/119/builds/425

which in diffoscope speak is:

http://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210702-c3hu90kc/packages/diff-html/

You may wonder what this pull request has to do with a gcc-sanitisers failure?

If you don't speak dwarfish or elvish, it means that perf_branch_sample_type_shift 
was declared on line 162 in one build and 182 in another. I wondered about a 
bit flip however it is two bits and linux/perf_events.h has 
perf_branch_sample_type_shift at line number 162 in 5.10 and 182 is 5.13 and that 
file comes from linux-libc-headers. The logical conclusion is that one was built
with one header and the other, from the other header. Why/how this could happen
I simply don't know. The problem build came from sstate so there is no real 
audit trail to follow :(.

I'm not sure this blocks the pull request as the issue is probably somewhere else
and this just exposed it but any ideas on what happened are very welcome...

Cheers,

Richard




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

* Re: [PATCH 0/8] linux-yocto: consolidated pull request
  2021-07-03 22:02 ` Richard Purdie
@ 2021-07-04  2:43   ` Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2021-07-04  2:43 UTC (permalink / raw)
  To: Richard Purdie
  Cc: Patches and discussions about the oe-core layer,
	Alexandre Belloni

On Sat, Jul 3, 2021 at 6:02 PM Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> Hi Bruce,
>
> On Fri, 2021-07-02 at 11:13 -0400, bruce.ashfield@gmail.com wrote:
> > Here's the next consolidated pull request. It has two normal -stable updates
> > for 5.10 and 5.4, as well as the first steps in bringing 5.13 in as the
> > reference kernel (and then dropping 5.4 from master).
> >
> > I've built and booted 5.13 as the default for qemu*, as well as building it
> > against both musl and glibc with the 5.13 libc-headers. I didn't run into
> > any issues, and neither did my AB runs (I'd like to think it is all the
> > other patches that have been sent as linux-yocto-dev moved foward that made
> > this relatively few patches now).
> >
> > I've also ensured that AB intermittent fixes are in place for 5.13, so it
> > is safe from that point of vew as well. Folks without exlcit versions set,
> > will get 5.13, but it is already sane and fit for that purpose.
> >
> > Obviously you can pick and chose what you need from this if there are issues,
> > and I'm around to trouble shoot anything that pops up.
>
> Thanks for this. In general it looks good, there is just one failure worrying
> me a bit:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/119/builds/425
>
> which in diffoscope speak is:
>
> http://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210702-c3hu90kc/packages/diff-html/
>
> You may wonder what this pull request has to do with a gcc-sanitisers failure?
>
> If you don't speak dwarfish or elvish, it means that perf_branch_sample_type_shift
> was declared on line 162 in one build and 182 in another. I wondered about a
> bit flip however it is two bits and linux/perf_events.h has
> perf_branch_sample_type_shift at line number 162 in 5.10 and 182 is 5.13 and that
> file comes from linux-libc-headers. The logical conclusion is that one was built
> with one header and the other, from the other header. Why/how this could happen
> I simply don't know. The problem build came from sstate so there is no real
> audit trail to follow :(.

I've done multiple header fixups with perf and libc-headers disagreeing, due to
captured copies being different from the uapi.

This is likely a variant of that.

... that being said, I've never seen anything that varied between
builds. It either
broke or it didn't.

This is libc-headers 5.13 and the 5.10 perf ?

Bruce

>
> I'm not sure this blocks the pull request as the issue is probably somewhere else
> and this just exposed it but any ideas on what happened are very welcome...
>
> 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] 23+ messages in thread

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2021-07-15 19:30 Bruce Ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: Bruce Ashfield @ 2021-07-15 19:30 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Richard,

Here's the next round of -stable and configuration tweaks for the kernel
recipes in master.

This is probably the last bump (for master) of 5.4, as I'll drop it and
make 5.13 the default shortly.

This pull request also contains the v2 of the devupstream support for
linux-yocto, with the tweaks to PN versus PV that you suggested to v1.

Cheers,

Bruce


The following changes since commit 262d2c6b6c4f357a8ec083af0934dcbb3acd169c:

  python3-setuptools: upgrade 57.0.0 -> 57.1.0 (2021-07-13 14:27:53 +0100)

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):
  linux-yocto/5.13: add devupstream support
  linux-yocto-rt/5.13: integrate -rt1
  linux-yocto: add vfat KERNEL_FEATURE when MACHINE_FEATURES include
    vfat
  linux-yocto/5.10: update to v5.10.49
  linux-yocto/5.4: update to v5.4.131
  linux-yocto/5.13: update to v5.13.2
  linux-yocto/5.10: update to v5.10.50
  linux-yocto/5.4: update to v5.4.132

 .../linux/linux-yocto-rt_5.10.bb              |  6 ++--
 .../linux/linux-yocto-rt_5.13.bb              |  6 ++--
 .../linux/linux-yocto-rt_5.4.bb               |  6 ++--
 .../linux/linux-yocto-tiny_5.10.bb            |  8 ++---
 .../linux/linux-yocto-tiny_5.13.bb            |  8 ++---
 .../linux/linux-yocto-tiny_5.4.bb             |  8 ++---
 meta/recipes-kernel/linux/linux-yocto.inc     |  1 +
 meta/recipes-kernel/linux/linux-yocto_5.10.bb | 24 ++++++-------
 meta/recipes-kernel/linux/linux-yocto_5.13.bb | 34 ++++++++++++-------
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 ++++++------
 10 files changed, 67 insertions(+), 56 deletions(-)

-- 
2.19.1


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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2023-03-01 15:13 bruce.ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: bruce.ashfield @ 2023-03-01 15:13 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Richard,

Here's the latest set of -stable and -rt updates for the supported
kernels.

For those that care, linux-yocto-dev is now fully at 6.2 for your
bleeding edge kernel enjoyment.

I'll send kirkstone and dunfell kernel updates as well shortly,
following by the reference BSP bumps.

Bruce

The following changes since commit 5a5ab7cdec7b3e01ddf95f73453e9fcfdd6b986e:

  scripts/runqemu: move render nodes check to runqemu from selftest (2023-02-27 13:27:37 +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 (8):
  linux-yocto-rt/6.1: fix compilation issue with per cpu stats
  linux-yocto-dev: bump to v6.2
  linux-yocto/6.1: update to v6.1.12
  linux-yocto/5.15: update to v5.15.94
  linux-yocto/6.1: update to v6.1.14
  linux-yocto/5.15: update to v5.15.96
  linux-yocto-rt/6.1: update to -rt7
  linux-yocto-rt/5.15: update to -rt59

 meta/recipes-kernel/linux/linux-yocto-dev.bb  |  4 +--
 .../linux/linux-yocto-rt_5.15.bb              |  6 ++---
 .../linux/linux-yocto-rt_6.1.bb               |  6 ++---
 .../linux/linux-yocto-tiny_5.15.bb            |  6 ++---
 .../linux/linux-yocto-tiny_6.1.bb             |  6 ++---
 meta/recipes-kernel/linux/linux-yocto_5.15.bb | 26 +++++++++----------
 meta/recipes-kernel/linux/linux-yocto_6.1.bb  | 26 +++++++++----------
 7 files changed, 40 insertions(+), 40 deletions(-)

-- 
2.34.1



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

* [PATCH 0/8] linux-yocto: consolidated pull request
@ 2023-09-05 14:37 bruce.ashfield
  0 siblings, 0 replies; 23+ messages in thread
From: bruce.ashfield @ 2023-09-05 14:37 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Richard,

Here's the next round of -stable and configuration changes.

I also ran into a build issue with 6.4+ on one of my builders
due to a gzip mismatch with zlib versions. So I've included
a fix for that.

Cheers,

Bruce

The following changes since commit 733afeffd19a2ae3af34abe95e514cb4b99cd366:

  bitbake: server/process: Add more timing debug (2023-09-05 08:14:50 +0100)

are available in the Git repository at:

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

Bruce Ashfield (8):
  linux-yocto/6.4: fix CONFIG_F2FS_IO_TRACE configuration warning
  linux-yocto/6.1: fix CONFIG_F2FS_IO_TRACE configuration warning
  linux-yocto/6.4: update to v6.4.12
  linux-yocto/6.1: update to v6.1.50
  linux-yocto/6.4: update to v6.4.13
  linux-yocto/6.4: update to v6.4.14
  linux-yocto/6.1: update to v6.1.51
  linux-yocto: add gzip-native to DEPENDS

 .../linux/linux-yocto-rt_6.1.bb               |  6 ++--
 .../linux/linux-yocto-rt_6.4.bb               |  6 ++--
 .../linux/linux-yocto-tiny_6.1.bb             |  6 ++--
 .../linux/linux-yocto-tiny_6.4.bb             |  6 ++--
 meta/recipes-kernel/linux/linux-yocto.inc     |  2 +-
 meta/recipes-kernel/linux/linux-yocto_6.1.bb  | 28 +++++++++----------
 meta/recipes-kernel/linux/linux-yocto_6.4.bb  | 28 +++++++++----------
 7 files changed, 41 insertions(+), 41 deletions(-)

-- 
2.34.1



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

end of thread, other threads:[~2023-09-05 14:37 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-06 16:31 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
2015-02-06 16:31 ` [PATCH 1/8] kernel-dev: install all modules by default Bruce Ashfield
2015-02-06 16:31 ` [PATCH 2/8] linux-yocto/3.14: update to 3.14.29 Bruce Ashfield
2015-02-06 21:05   ` Bruce Ashfield
2015-02-06 16:31 ` [PATCH 3/8] linux-yocto/3.10: update to v3.10.65 Bruce Ashfield
2015-02-10 20:50   ` akuster808
2015-02-10 21:15     ` Bruce Ashfield
2015-02-06 16:31 ` [PATCH 4/8] linux-yocto/3.17: update to v3.17.8 Bruce Ashfield
2015-02-06 16:31 ` [PATCH 5/8] linux-yocto: basic octeon III support Bruce Ashfield
2015-02-06 16:31 ` [PATCH 6/8] lttng: update to 2.6.0-stable Bruce Ashfield
2015-02-06 16:31 ` [PATCH 7/8] linux-yocto-dev: update to v3.19+ Bruce Ashfield
2015-02-06 16:31 ` [PATCH 8/8] kern-tools: import patch performance improvements Bruce Ashfield
  -- strict thread matches above, loose matches on Subject: below --
2016-04-02  0:09 [PATCH 0/8] linux-yocto: consolidated pull request Bruce Ashfield
2016-06-28  2:40 Bruce Ashfield
2016-12-08 17:58 Bruce Ashfield
2019-03-25  3:11 bruce.ashfield
2021-02-03  3:23 [PATCH 0/8]: " Bruce Ashfield
2021-07-02 15:13 [PATCH 0/8] " Bruce Ashfield
2021-07-03 22:02 ` Richard Purdie
2021-07-04  2:43   ` Bruce Ashfield
2021-07-15 19:30 Bruce Ashfield
2023-03-01 15:13 bruce.ashfield
2023-09-05 14:37 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.