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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ messages in thread

end of thread, other threads:[~2015-02-10 21:15 UTC | newest]

Thread overview: 12+ 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

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.