All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-09-03  3:03 Bruce Ashfield
  2011-09-03  3:03 ` [PATCH 1/3] linux-yocto: generalize kernel config search pattern Bruce Ashfield
                   ` (3 more replies)
  0 siblings, 4 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-09-03  3:03 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Richard/Saul,

This took a bit longer than I wanted (this was intended for Thursday), but 
since this was potentially the last minor rev bump for yocto 1.1, I wanted 
to build and boot all of the qemu targets, and the -rt targets as well.

While doing this, I noticed that there were still some lurking configuration
cleanups, which are covered under YOCTO #940, so I took the time to ensure
that the machines configure without warnings against 3.0.4. The end configs
are the same (since the options I'm fixing were not translating into the
final .config), but it completes the update to 3.0.x.

The machine SRCREV updates represent the update to 3.0.4, while the meta
branch update contains the following:

Bruce Ashfield (3):
      meta/qemuppc: board description fixes
      meta: remove configuration warnings
      meta: update kver to v3.0.4

Saxena, Rahul (2):
      meta: remove duplicate statement
      meta: remove unused eg20t configuration fragments

The kern-tools fixes contain cleanups and a few generalizations that result 
in easier/more flexible tree generation that I documented for 1.1 and have
been tested for a week now. They won't impact the patching phase validation, so
are safe and good for the release.

I also updated the -rt recipes with the results of the fixes and boot testing.

cc: Tom Zanussi <tom.zanussi@intel.com>
cc: Darren Hart <dvhart@linux.intel.com>

The following changes since commit de5d52711bd810a63a0ad5260b799d6672952c32:

  sanity.bbclass: fix splitting on newlines of SANITY_TESTED_DISTROS (2011-09-02 18:36:20 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib zedd/kernel-oe
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-oe

Bruce Ashfield (3):
  linux-yocto: generalize kernel config search pattern
  linux-yocto: update to v3.0.4
  linux-yocto: clean configuration for v3.0.4

 meta/classes/kernel-yocto.bbclass                  |    2 +-
 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb    |    8 ++++----
 meta/recipes-kernel/linux/linux-yocto_3.0.bb       |   18 +++++++++---------
 4 files changed, 15 insertions(+), 15 deletions(-)

-- 
1.7.4.1




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

* [PATCH 1/3] linux-yocto: generalize kernel config search pattern
  2011-09-03  3:03 [PATCH 0/3] linux-yocto: consolidated pull request Bruce Ashfield
@ 2011-09-03  3:03 ` Bruce Ashfield
  2011-09-03  3:03 ` [PATCH 2/3] linux-yocto: update to v3.0.4 Bruce Ashfield
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-09-03  3:03 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

After constructing a kernel configuration file it then needs
to be located in the tree so it can be audited against the
final .config. The previous string that was used for the search
pattern contains the kernel version. If the recipe space kernel
version and internal tree version are out of sync, this will
cause the constructed config to not be found. By removing the
version from the search string, we can still find out config and
gracefully adapt to minor version skew.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/classes/kernel-yocto.bbclass                  |    2 +-
 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index daaee50..0f92267 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -105,7 +105,7 @@ python do_kernel_configcheck() {
     bb.plain("NOTE: validating kernel configuration")
 
     pathprefix = "export PATH=%s; " % bb.data.getVar('PATH', d, True)
-    cmd = bb.data.expand("cd ${B}/..; kconf_check -${LINUX_KERNEL_TYPE}-config-${LINUX_VERSION} ${B} ${S} ${B} ${KBRANCH}",d )
+    cmd = bb.data.expand("cd ${B}/..; kconf_check -${LINUX_KERNEL_TYPE}-config- ${B} ${S} ${B} ${KBRANCH}",d )
     ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd))
 
     bb.plain( "%s" % result )
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 1649bbc..edaaea6 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=e2bf4415f3d8
 
 DEPENDS = "git-native guilt-native"
 
-SRCREV = "eab0c4eeb9fdb3d83e7aca4b70334cc7b02540b6"
+SRCREV = "60723c84395a9ac1753589824e30be39a781bb82"
 PR = r10
 PV = "0.1+git${SRCPV}"
 
-- 
1.7.4.1




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

* [PATCH 2/3] linux-yocto: update to v3.0.4
  2011-09-03  3:03 [PATCH 0/3] linux-yocto: consolidated pull request Bruce Ashfield
  2011-09-03  3:03 ` [PATCH 1/3] linux-yocto: generalize kernel config search pattern Bruce Ashfield
@ 2011-09-03  3:03 ` Bruce Ashfield
  2011-09-03  3:03 ` [PATCH 3/3] linux-yocto: clean configuration for v3.0.4 Bruce Ashfield
  2011-09-05 19:26 ` [PATCH 0/3] linux-yocto: consolidated pull request Richard Purdie
  3 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-09-03  3:03 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

The v3.0.4 stable kernel is available and it can now be merged
into linux-yocto. Build and boot tested on all qemu* machines.

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

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
index 2bee543..e8e251d 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
@@ -11,11 +11,11 @@ KMACHINE_qemumips = "mti-malta32-be"
 KBRANCH = "yocto/standard/preempt-rt/base"
 KBRANCH_qemuppc = "yocto/standard/preempt-rt/qemu-ppc32"
 
-LINUX_VERSION ?= "3.0.3"
+LINUX_VERSION ?= "3.0.4"
 LINUX_KERNEL_TYPE = "preempt-rt"
 
-SRCREV_machine ?= "c86423d29c94525d18ef1c9b6c025f733c1e8252"
-SRCREV_machine_qemuppc ?= "ccb47c9e8d85dc00ccd28bc6819d7769e2c11cb3"
+SRCREV_machine ?= "0b805cce57f61a244eb3b8fce460b14f1be442b3"
+SRCREV_machine_qemuppc ?= "48207085609f2b73a54e3c1ef4139894eef627af"
 SRCREV_meta ?= "5b535279e61197cb194bb2dfceb8b7a04128387c"
 
 PR = "r0"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.0.bb b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
index e39be0d..221f81b 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
@@ -10,14 +10,14 @@ KMACHINE_qemuarm  = "yocto/standard/arm-versatile-926ejs"
 
 KBRANCH = ${KMACHINE}
 
-LINUX_VERSION ?= "3.0.3"
-
-SRCREV_machine_qemuarm ?= "eecaa32095ab63e0a73f161cf48fd02251eb6c88"
-SRCREV_machine_qemumips ?= "eee3cb2066bb6aae5b3869083cb477b03eb87c79"
-SRCREV_machine_qemuppc ?= "c0da1d35dee9fb63ba6bfc7907a77b0feb89766e"
-SRCREV_machine_qemux86 ?= "8b51ddba0f85a6bb8e105b37a9ac03fb58b9de20"
-SRCREV_machine_qemux86-64 ?= "965dd365cf3652347960f7145ac188c86c323070"
-SRCREV_machine ?= "49d93fb0c9e1645ba0bb8951be23e56ea227a5bd"
+LINUX_VERSION ?= "3.0.4"
+
+SRCREV_machine_qemuarm ?= "b18f5c601ccc90b4c94d1d29282cf7c53fcb6e22"
+SRCREV_machine_qemumips ?= "0696ab4056ddc1b4504e8636e47a918bdff5b257"
+SRCREV_machine_qemuppc ?= "af58047d79790a06e5ac5ba09837c6e65220d7aa"
+SRCREV_machine_qemux86 ?= "515e039eeb316494955e46d38c164e56999511ae"
+SRCREV_machine_qemux86-64 ?= "d19118d19d5f95e83d6fbe1268fe6b84f67de6d3"
+SRCREV_machine ?= "6fcf6f1bca9323fa2e9a5ea15fa84153cccbc28b"
 SRCREV_meta ?= "5b535279e61197cb194bb2dfceb8b7a04128387c"
 
 PR = "r1"
-- 
1.7.4.1




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

* [PATCH 3/3] linux-yocto: clean configuration for v3.0.4
  2011-09-03  3:03 [PATCH 0/3] linux-yocto: consolidated pull request Bruce Ashfield
  2011-09-03  3:03 ` [PATCH 1/3] linux-yocto: generalize kernel config search pattern Bruce Ashfield
  2011-09-03  3:03 ` [PATCH 2/3] linux-yocto: update to v3.0.4 Bruce Ashfield
@ 2011-09-03  3:03 ` Bruce Ashfield
  2011-09-05 19:26 ` [PATCH 0/3] linux-yocto: consolidated pull request Richard Purdie
  3 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-09-03  3:03 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Fixes [YOCTO #940]

Since v3.0.4 is likely the last stable update in the the release
timeframe a configuration audit was performed. This updates the
SRCREV to remove obselete, and improperly defined configuration
items. With this, all qemu* BSPs configure with no warnings.

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

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
index e8e251d..d100cea 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
@@ -16,7 +16,7 @@ LINUX_KERNEL_TYPE = "preempt-rt"
 
 SRCREV_machine ?= "0b805cce57f61a244eb3b8fce460b14f1be442b3"
 SRCREV_machine_qemuppc ?= "48207085609f2b73a54e3c1ef4139894eef627af"
-SRCREV_meta ?= "5b535279e61197cb194bb2dfceb8b7a04128387c"
+SRCREV_meta ?= "258af0b952b723806baa429b65e3d8cb0d742190"
 
 PR = "r0"
 PV = "${LINUX_VERSION}+git${SRCPV}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.0.bb b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
index 221f81b..e0e8a1b 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
@@ -18,7 +18,7 @@ SRCREV_machine_qemuppc ?= "af58047d79790a06e5ac5ba09837c6e65220d7aa"
 SRCREV_machine_qemux86 ?= "515e039eeb316494955e46d38c164e56999511ae"
 SRCREV_machine_qemux86-64 ?= "d19118d19d5f95e83d6fbe1268fe6b84f67de6d3"
 SRCREV_machine ?= "6fcf6f1bca9323fa2e9a5ea15fa84153cccbc28b"
-SRCREV_meta ?= "5b535279e61197cb194bb2dfceb8b7a04128387c"
+SRCREV_meta ?= "258af0b952b723806baa429b65e3d8cb0d742190"
 
 PR = "r1"
 PV = "${LINUX_VERSION}+git${SRCPV}"
-- 
1.7.4.1




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2011-09-03  3:03 [PATCH 0/3] linux-yocto: consolidated pull request Bruce Ashfield
                   ` (2 preceding siblings ...)
  2011-09-03  3:03 ` [PATCH 3/3] linux-yocto: clean configuration for v3.0.4 Bruce Ashfield
@ 2011-09-05 19:26 ` Richard Purdie
  3 siblings, 0 replies; 36+ messages in thread
From: Richard Purdie @ 2011-09-05 19:26 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: dvhart, openembedded-core, saul.wold

On Fri, 2011-09-02 at 23:03 -0400, Bruce Ashfield wrote:
> Richard/Saul,
> 
> This took a bit longer than I wanted (this was intended for Thursday), but 
> since this was potentially the last minor rev bump for yocto 1.1, I wanted 
> to build and boot all of the qemu targets, and the -rt targets as well.
> 
> While doing this, I noticed that there were still some lurking configuration
> cleanups, which are covered under YOCTO #940, so I took the time to ensure
> that the machines configure without warnings against 3.0.4. The end configs
> are the same (since the options I'm fixing were not translating into the
> final .config), but it completes the update to 3.0.x.
> 
> The machine SRCREV updates represent the update to 3.0.4, while the meta
> branch update contains the following:
> 
> Bruce Ashfield (3):
>       meta/qemuppc: board description fixes
>       meta: remove configuration warnings
>       meta: update kver to v3.0.4
> 
> Saxena, Rahul (2):
>       meta: remove duplicate statement
>       meta: remove unused eg20t configuration fragments
> 
> The kern-tools fixes contain cleanups and a few generalizations that result 
> in easier/more flexible tree generation that I documented for 1.1 and have
> been tested for a week now. They won't impact the patching phase validation, so
> are safe and good for the release.
> 
> I also updated the -rt recipes with the results of the fixes and boot testing.
> 
> cc: Tom Zanussi <tom.zanussi@intel.com>
> cc: Darren Hart <dvhart@linux.intel.com>
> 
> The following changes since commit de5d52711bd810a63a0ad5260b799d6672952c32:
> 
>   sanity.bbclass: fix splitting on newlines of SANITY_TESTED_DISTROS (2011-09-02 18:36:20 +0100)
> 
> are available in the git repository at:
>   git://git.pokylinux.org/poky-contrib zedd/kernel-oe
>   http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-oe
> 
> Bruce Ashfield (3):
>   linux-yocto: generalize kernel config search pattern
>   linux-yocto: update to v3.0.4
>   linux-yocto: clean configuration for v3.0.4

Merged to master, thanks.

Richard




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

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

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

Hi all,

Here's the latest set of bugfix/CVEs that I've collected for the
linux-yocto reference kernels.

I did a quick build on the AB and everything came back green.

Cheers,

Bruce

The following changes since commit 9c20e8de6f262a4bda7879eb5c43ec5cb9ded016:

  bitbake: bitbake-user-manual: immediate-variable-expansion: Correct description (2020-03-19 11:28:31 +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 (3):
  linux-yocto-dev: update to v5.6+
  linux-yocto/5.4: update to v5.4.27
  linux-yocto-rt/5.4: update to -rt16

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

-- 
2.19.1


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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2019-02-09 18:37 bruce.ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: bruce.ashfield @ 2019-02-09 18:37 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Hi all,

Sending out my queued patches for linux-yocto. These are mostly for ARC
support, but there are also -stable updates pushed for 4.4/4.9 if anyone
is using those kernels. SRCREV patches for maintained branches will follow
for those changes.

Cheers,

Bruce

The following changes since commit c4f1276721a6e2ea5c4b5e536711072e037a2d7b:

  arch-armv7*.inc: Add Cortex vfpv4-d16 support (2019-02-08 23:15:32 +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

Alexey Brodkin (1):
  linux-yocto: Add dependency on libgcc for ARC

Bruce Ashfield (2):
  linux-yocto: tweak console boot check
  linux-yocto: add baseline ARC support

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

-- 
2.19.1



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2019-02-06 19:50 bruce.ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: bruce.ashfield @ 2019-02-06 19:50 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

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

Hi all,

In preparation for getting a 5.x kernel into the tree, I'm clearing out
my existing -stable bumps for the active kernels.

Nothing radical here, and they've built and booted on all the relevant
architectures.

Cheers,

Bruce

The following changes since commit 251ded90d4ad75da5e110e916068050f15ace07c:

  archiver/package_rpm: Fix the worst src.rpm generation race (2019-02-06 08:29:07 +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 (3):
  linux-yocto/4.18: update to v4.18.26
  linux-yocto/4.18: update to v4.18.27
  linux-yocto/4.19: update to v4.19.19

 .../linux/linux-yocto-rt_4.18.bb              |  6 +++---
 .../linux/linux-yocto-rt_4.19.bb              |  6 +++---
 .../linux/linux-yocto-tiny_4.18.bb            |  8 ++++----
 .../linux/linux-yocto-tiny_4.19.bb            |  8 ++++----
 meta/recipes-kernel/linux/linux-yocto_4.18.bb | 20 +++++++++----------
 meta/recipes-kernel/linux/linux-yocto_4.19.bb | 20 +++++++++----------
 6 files changed, 34 insertions(+), 34 deletions(-)

-- 
2.19.1



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2019-01-21 17:26 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2019-01-21 17:26 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Here is the latest set of changes to linux-yocto. There are some other changes
pending, but I wanted to get this smaller set out now, so RP can run some tests
against the qemuarm refresh.

Cheers,

Bruce

The following changes since commit 676705765ad58db79c23fddd6a53f5907a5812bd:

  ref-manual: Update to SDK_VERSION variable. (2019-01-21 16:11:43 +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 (3):
  linux-yocto/4.18: update to v4.18.25
  linux-yocto/4.19: fix qemuarm KBRANCH specification
  linux-yocto/4.19: integrate qemuarm refresh changes

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

-- 
2.5.0



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2019-01-12 18:12 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2019-01-12 18:12 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Here's the next batch of kernel updates. Nothing particular of note, but we
do gain new BSP descriptions for qemuarma15 and qemuriscv64. Although the
full machine definitions are not in oe-core yet, this sets the table for them
to be made widely available.

Other than that, I bumped the -dev kernel to 5.x, and have pulled in the
latest round of -stable updates to 4.19 (also note that I updated 4.14
with -stable updates as well, but haven't done the older branch SRCREVs
yet).

Cheers,

Bruce

The following changes since commit 46f6f6a5f9de5e7f8f32f6ae768af61ec20ade4a:

  bitbake: bitbake: runqueue: Use multiconfig name to fetch unihash (2019-01-11 10:39:30 +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 (3):
  linux-yocto/4.19: introduce qemuriscv64 and qemuarma15 BSP definitions
  linux-yocto/4.19: update to v4.19.14
  linux-yocto-dev: bump to v5.0-rc

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

-- 
2.5.0



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

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

Hi all,

Given how close we are to the release, I'm staying away from -stable updates
to the linux-yocto kernels. But I do have one small patch integration and two
minor bug fixes that are worth getting in for the release.

I don't expect any issues with these .. famous last words :D

Cheers,

Bruce

The following changes since commit 29f65bda6d2c9fea4adb125c4857ee64f9312b9f:

  nativesdk-glibc: Split glibc and libcrypt to use libxcrypt instead (2018-04-07 22:34:45 +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 (3):
  linux-yocto/4.14: add elfutils, util-linux and openssl dependencies
  linux-yocto-tiny/4.14: fix recipe name
  linux-yocto/4.14/4.15: deterministic srcversion

 meta/recipes-kernel/linux/linux-yocto-rt_4.14.bb   |  7 ++-
 meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb   |  4 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_4.14.bb |  7 ++-
 meta/recipes-kernel/linux/linux-yocto-tiny_4.15.b  | 25 -----------
 meta/recipes-kernel/linux/linux-yocto-tiny_4.15.bb | 50 ++++++----------------
 meta/recipes-kernel/linux/linux-yocto_4.14.bb      | 21 +++++----
 meta/recipes-kernel/linux/linux-yocto_4.15.bb      | 18 ++++----
 7 files changed, 47 insertions(+), 85 deletions(-)
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_4.15.b

-- 
2.5.0



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

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

Hi all,

Here is the latest update of content for the 4.8 kernel, it contains:

 - 4.8 -rc7
 - yaffs2 fixes from Kevin Hao
 - aufs is available
 - configuration warning fixes
 - preempt-rt

I've also included a fixup of the 4.1.32 and configuration warning fixes
for that tree.

Full disclosure: there are changes floating around for 4.1, 4.4, 4.8 for
both the core tree, the hardware reference boards and for the kernel
meta data.

I smoke tested what I could, and boot tested 4.8 and 4.1 to make sure they
were sane. But there are a lot of moving parts here, so the autobuilder will
be the final say if I managed to keep everything straight (while getting it
all done in less than a day).

Cheers,

Bruce

The following changes since commit 49a7839e602eac2c43415d9c8f17ad8315fd1da5:

  build-appliance-image: Create image in correct location (2016-09-19 08:58:10 +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 (3):
  linux-yocto/4.1: 4.1.32 content and configuration warning fixes
  linux-yocto/4.8: integrate 4.8-rc7
  linux-yocto/4.8: introduce preempt-rt

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

-- 
2.5.0



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

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

Hi all,

Just some routine updates to the 4.1 and 4.4 kernel trees. We have a -stable
update and some backports.

Cheers,

Bruce

The following changes since commit 6c5d7f1fb276cbe0a461ece6c8f0ca17a478fa8c:

  lib/oe/package_manager: adapt for Python 3 (2016-06-05 23:39:47 +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 (3):
  linux-yocto/4.4: bump to v4.4.12
  yocto-bsps: add i2c definitions to beaglebone
  linux-yocto/4.4: mmc backports

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

-- 
2.5.0



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2016-05-24 15:53 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2016-05-24 15:53 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Here are some pending -stable updates to 4.1 and 4.4, along with a beaglebone
configuration tweak.

While I haven't done a gcc6 build myself, the 4.1 -stable updates contain
a backported compiler.h fix from 4.4+ that resolves some of the issues
with gcc6 (and in particular the poky-lsb ones that are being seen).

Bruce

The following changes since commit c7e614c438706fb3ed7520b4990ebb3973366942:

  useradd: Fix infinite build loop (2016-05-23 10:33:45 +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 (3):
  linux-yocto/4.1: v4.1.24 and gcc6 powerpc fixes
  linux-yocto/4.4: beaglebone: build in the usb controller drivers
  linux-yocto/4.4: integrate v4.4.11

 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-tiny_4.1.bb |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb |  6 +++---
 meta/recipes-kernel/linux/linux-yocto_4.1.bb      | 20 ++++++++++----------
 meta/recipes-kernel/linux/linux-yocto_4.4.bb      | 20 ++++++++++----------
 6 files changed, 32 insertions(+), 32 deletions(-)

-- 
2.5.0



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2013-11-26 17:33 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2013-11-26 17:33 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Richard/Saul,

Small updates to import the latest -stable updates for the 3.10 and 3.4
kernels, as well as some fixes for preempt-rt on qemumarm and minor 
configuration tweaks.

Built and booted locally.

Bruce

The following changes since commit 1e084f9d755e3458d2f9863382fa3bb7877a146d:

  qemu: add PACKAGECONFIG for vnc, libcurl, nss, uuid, curses, gtk+, libcap-ng (2013-11-26 12:10:35 +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 (3):
  linux/yocto-3.10: merge v3.10.19
  linux-yocto/3.4: update to v3.4.69
  linux-yocto/3.10: -rt, ebtables and e1000 fixes

 meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb   |  8 ++++----
 meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb    |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb  |  4 ++--
 meta/recipes-kernel/linux/linux-yocto_3.10.bb      | 18 +++++++++---------
 meta/recipes-kernel/linux/linux-yocto_3.4.bb       | 14 +++++++-------
 6 files changed, 28 insertions(+), 28 deletions(-)

-- 
1.8.1.2



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2013-09-18 18:24 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2013-09-18 18:24 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Richard/Saul,

Here are three fixes for the upcoming RCs and release. Once is a new branch, but
has zero impact on existing boards, so I've gone ahead and added it for this
upcoming release. The other two are bug fixes.

[PATCH 1/3] linux-yocto/3.8: add haswell-wc board config and branch

   Bumping the meta branch SRCREV to import the following board support:

     meta: add haswell-wc bsp for Intel Haswell Platform (Walnut Canyon CRB) scc and config files

[PATCH 2/3] linux-yocto/3.10: mips configuration changes

   Updating the 3.10 SRCREV to import the following MIPS configuration changes

      4f689aa meta: remove ftrace/ftrace-disable feature
      3058d81 mips: have the mips BSPs disable function tracing instead of ftrace
      935f43f meta: add ftrace/ftrace-function-tracer-disable feature
      0d72a03 mti-malta64: Default to support o32 and n32 userspace binaries

   The first three changes improve the ftrace disabling fragments, to allow tracepoints
   and ftrace to be enabled, while only disabling dynamic ftrace. This allows tools
   that required tracepoints (like lttng) to be built against MIPS.

   The mti-malta64 change adds n32 and o32 support to the default configuration to
   support a broader range of userspace binaries.

   [YOCTO #5215]

   Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
   Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>

[PATCH 3/3] linux-yocto/3.10: fix long perf compile times

   perf's builtin-sched.c triggers extremly long build times on some
   architectures due to gcc 4.7+ var-tracking functionality.

   To fix this, we can cherry pick the 3.12 commit:

     f36f83f94 [perf sched: Move struct perf_sched definition out of cmd_sched()]

   With this change build times are reduced from 15 to 20 minutes for qemuarm to:

     real    2m19.940s
     user    1m35.438s
     sys     0m11.165s

   For kernel's that are not carrying this patch, the following can be added
   to the perf recipe to also fix the issue:

       +++ b/meta/recipes-kernel/perf/perf.bb
       @@ -68,6 +68,7 @@ EXTRA_OEMAKE = \
		       CC="${CC}" \
		       AR="${AR}" \
		       perfexecdir=${libexecdir} \
       +               EXTRA_CFLAGS="-fno-var-tracking" \
		       NO_GTK2=1 ${TUI_DEFINES} NO_DWARF=1 ${SCRIPTING_DEFINES} \

Cheers,

Bruce


The following changes since commit 99b41732458871080cfa7a9bad3f8dfe03e026be:

  perf: Add LDFLAGS to allow build of old kernels without patching (2013-09-18 17:54:42 +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 (3):
  linux-yocto/3.8: add haswell-wc board config and branch
  linux-yocto/3.10: mips configuration changes
  linux-yocto/3.10: fix long perf compile times

 meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb   |    6 +++---
 meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb    |    2 +-
 meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb |    4 ++--
 meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb  |    2 +-
 meta/recipes-kernel/linux/linux-yocto_3.10.bb      |   16 ++++++++--------
 meta/recipes-kernel/linux/linux-yocto_3.8.bb       |    2 +-
 6 files changed, 16 insertions(+), 16 deletions(-)

-- 
1.7.10.4



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

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

Richard/Saul,

Just clearing my queue of some recent changes.

 - version bumps for v3.4.19, v3.4.20
 - a change to make the fetch aware of the fact that the meta
   branch name can change
 - emenlow BSP changes for a psb -> emgd switch

Sanity checks all pass on my local builds and boots.

Cheers,

Bruce

The following changes since commit da6c266b1184eed8b1bc851f24a9ee17ab56d562:

  xserver-xorg: restore packaging for the DRI/DRI2/DBE extensions (2012-12-03 16:38:35 +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 (3):
  linux-yocto/3.4: merge v3.4.19, v3.4.20
  linux-yocto/3.4: emenlow: switch from psb to emgd graphics
  linux-yocto/3.4: inform the fetcher if the meta branch changes

 meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb   |    8 ++++----
 meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb |    6 +++---
 meta/recipes-kernel/linux/linux-yocto_3.4.bb      |   18 +++++++++---------
 3 files changed, 16 insertions(+), 16 deletions(-)

-- 
1.7.10.4




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2012-08-28 14:22 ` Saul Wold
@ 2012-08-29  7:58   ` Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2012-08-29  7:58 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

On Tue, Aug 28, 2012 at 10:22 AM, Saul Wold <saul.wold@intel.com> wrote:
> On 08/26/2012 09:49 PM, Bruce Ashfield wrote:
>>
>> Richard/Saul,
>>
>> Here's some changes that I've staged over the past week or so,
>> everything checks out here, and there are some good changes in
>> this set of -stable updates, and and the linker fix from Khem.
>>
>> I've also got a small tools fix here as well, that was needed
>> for some of the yocto-bsp builds. I think we've worked through
>> most of them now, and everything is looking good.
>>
>> Cheers,
>>
>> Bruce
>>
>> cc: Khem Raj <raj.khem@gmail.com>
>> cc: Tom Zanussi <tom.zanussi@intel.com>
>>
>> The following changes since commit
>> b4c5725af4cd85d5644f0373e2674e903c4eab2b:
>>
>>    yocto-bsp: add missing xserver-xf86-config .bbappend for qemu
>> (2012-08-25 14:47:07 +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 (3):
>>    kern-tools: fix forced branching
>>    linux-yocto/3.4: v3.4.9, unionfs, perf and configuration changes
>>    linux-yocto/3.2/3.4: arm: Fix linking errors with binutils 2.23
>>
> Bruce,
>
> I saw some problems with serveral hardware BSP platforms in do_patch on the
> Autobuilder.  I think your traveling this week, so I am going to hold off on
> this set.

I am, and good plan. But I do have a fix for this one (Tom and I saw
it earlier),
I'll queue it and send it ASAP.

Cheers,

Bruce

>
>> ERROR: Function failed: do_patch (see
>> /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1/temp/log.do_patch.8680
>> for further information)
>> NOTE: recipe python-2.7.3-r0.2: task do_populate_lic: Succeeded
>> ERROR: Logfile of failure stored in:
>> /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1/temp/log.do_patch.8680
>> Log data follows:
>> | DEBUG: Executing shell function do_patch
>> | Branch meta-temp set up to track remote branch meta from origin.
>> | Deleted branch meta-temp (was 620917d).
>> | [INFO] validating against known patches  (beagleboard-standard-meta)
>> |   [##                                                ] (|)(5 %)
>>   [###                                               ] (/)(7 %)
>>   [#####                                             ] (-)(10 %)
>>   [######                                            ] (\)(13 %)
>>   [#######                                           ] (|)(15 %)
>>   [#########                                         ] (/)(18 %)
>>   [##########                                        ] (-)(21 %)
>>   [###########                                       ] (\)(23 %)
>>   [#############                                     ] (|)(26 %)
>>   [##############                                    ] (/)(28 %)
>>   [###############                                   ] (-)(31 %)
>>   [#################                                 ] (\)(34 %)
>>   [##################                                ] (|)(36 %)
>>   [###################                               ] (/)(39 %)
>>   [#####################                             ] (-)(42 %)
>>   [######################                            ] (\)(44 %)
>>   [#######################                           ] (|)(47 %)
>>   [#########################                         ] (/)(50 %)
>>   [##########################                        ] (-)(52 %)
>>   [###########################                       ] (\)(55 %)
>>   [############################                      ] (|)(57 %)
>>   [##############################                    ] (/)(60 %)
>>   [###############################                   ] (-)(63 %)
>>   [################################                  ] (\)(65 %)
>>   [##################################                ] (|)(68 %)
>>   [###################################               ] (/)(71 %)
>>   [####################################              ] (-)(73 %)
>>   [######################################            ] (\)(76 %)
>>   [##################################################]  (completed in 4
>> seconds)
>> | ERROR: branch yocto/standard/beagleboard was requested, but was not
>> properly
>> |        configured to be built. The current branch is
>> yocto/standard/beagleboard/base
>> | ERROR: Function failed: do_patch (see
>> /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1/temp/log.do_patch.8680
>> for further information)
>> NOTE: recipe
>> linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1:
>> task do_patch: Failed
>> ERROR: Task 444
>> (/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/meta/recipes-kernel/linux/linux-yocto_3.0.bb,
>> do_patch) failed with exit code '1'
>
>
>
>
>
>>   .../kern-tools/kern-tools-native_git.bb            |    2 +-
>>   meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb    |    4 ++--
>>   meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb    |    8 ++++----
>>   meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb  |    2 +-
>>   meta/recipes-kernel/linux/linux-yocto_3.2.bb       |   12 ++++++------
>>   meta/recipes-kernel/linux/linux-yocto_3.4.bb       |   16
>> ++++++++--------
>>   6 files changed, 22 insertions(+), 22 deletions(-)
>>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/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] 36+ messages in thread

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2012-08-27  4:49 Bruce Ashfield
@ 2012-08-28 14:22 ` Saul Wold
  2012-08-29  7:58   ` Bruce Ashfield
  0 siblings, 1 reply; 36+ messages in thread
From: Saul Wold @ 2012-08-28 14:22 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: openembedded-core

On 08/26/2012 09:49 PM, Bruce Ashfield wrote:
> Richard/Saul,
>
> Here's some changes that I've staged over the past week or so,
> everything checks out here, and there are some good changes in
> this set of -stable updates, and and the linker fix from Khem.
>
> I've also got a small tools fix here as well, that was needed
> for some of the yocto-bsp builds. I think we've worked through
> most of them now, and everything is looking good.
>
> Cheers,
>
> Bruce
>
> cc: Khem Raj <raj.khem@gmail.com>
> cc: Tom Zanussi <tom.zanussi@intel.com>
>
> The following changes since commit b4c5725af4cd85d5644f0373e2674e903c4eab2b:
>
>    yocto-bsp: add missing xserver-xf86-config .bbappend for qemu (2012-08-25 14:47:07 +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 (3):
>    kern-tools: fix forced branching
>    linux-yocto/3.4: v3.4.9, unionfs, perf and configuration changes
>    linux-yocto/3.2/3.4: arm: Fix linking errors with binutils 2.23
>
Bruce,

I saw some problems with serveral hardware BSP platforms in do_patch on 
the Autobuilder.  I think your traveling this week, so I am going to 
hold off on this set.

> ERROR: Function failed: do_patch (see /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1/temp/log.do_patch.8680 for further information)
> NOTE: recipe python-2.7.3-r0.2: task do_populate_lic: Succeeded
> ERROR: Logfile of failure stored in: /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1/temp/log.do_patch.8680
> Log data follows:
> | DEBUG: Executing shell function do_patch
> | Branch meta-temp set up to track remote branch meta from origin.
> | Deleted branch meta-temp (was 620917d).
> | [INFO] validating against known patches  (beagleboard-standard-meta)
> |   [##                                                ] (|)(5 %)
>   [###                                               ] (/)(7 %)
>   [#####                                             ] (-)(10 %)
>   [######                                            ] (\)(13 %)
>   [#######                                           ] (|)(15 %)
>   [#########                                         ] (/)(18 %)
>   [##########                                        ] (-)(21 %)
>   [###########                                       ] (\)(23 %)
>   [#############                                     ] (|)(26 %)
>   [##############                                    ] (/)(28 %)
>   [###############                                   ] (-)(31 %)
>   [#################                                 ] (\)(34 %)
>   [##################                                ] (|)(36 %)
>   [###################                               ] (/)(39 %)
>   [#####################                             ] (-)(42 %)
>   [######################                            ] (\)(44 %)
>   [#######################                           ] (|)(47 %)
>   [#########################                         ] (/)(50 %)
>   [##########################                        ] (-)(52 %)
>   [###########################                       ] (\)(55 %)
>   [############################                      ] (|)(57 %)
>   [##############################                    ] (/)(60 %)
>   [###############################                   ] (-)(63 %)
>   [################################                  ] (\)(65 %)
>   [##################################                ] (|)(68 %)
>   [###################################               ] (/)(71 %)
>   [####################################              ] (-)(73 %)
>   [######################################            ] (\)(76 %)
>   [##################################################]  (completed in 4 seconds)
> | ERROR: branch yocto/standard/beagleboard was requested, but was not properly
> |        configured to be built. The current branch is yocto/standard/beagleboard/base
> | ERROR: Function failed: do_patch (see /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1/temp/log.do_patch.8680 for further information)
> NOTE: recipe linux-yocto-3.0.32+git1+bf5ee4945ee6d748e6abe16356f2357f76b5e2f0_1+3ab688a78cac7b2e32afc83376a53370f2bd13b7-r4.1: task do_patch: Failed
> ERROR: Task 444 (/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/meta/recipes-kernel/linux/linux-yocto_3.0.bb, do_patch) failed with exit code '1'




>   .../kern-tools/kern-tools-native_git.bb            |    2 +-
>   meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb    |    4 ++--
>   meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb    |    8 ++++----
>   meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb  |    2 +-
>   meta/recipes-kernel/linux/linux-yocto_3.2.bb       |   12 ++++++------
>   meta/recipes-kernel/linux/linux-yocto_3.4.bb       |   16 ++++++++--------
>   6 files changed, 22 insertions(+), 22 deletions(-)
>




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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2012-08-27  4:49 Bruce Ashfield
  2012-08-28 14:22 ` Saul Wold
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2012-08-27  4:49 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

Richard/Saul,

Here's some changes that I've staged over the past week or so, 
everything checks out here, and there are some good changes in
this set of -stable updates, and and the linker fix from Khem.

I've also got a small tools fix here as well, that was needed
for some of the yocto-bsp builds. I think we've worked through
most of them now, and everything is looking good.

Cheers,

Bruce

cc: Khem Raj <raj.khem@gmail.com>
cc: Tom Zanussi <tom.zanussi@intel.com>

The following changes since commit b4c5725af4cd85d5644f0373e2674e903c4eab2b:

  yocto-bsp: add missing xserver-xf86-config .bbappend for qemu (2012-08-25 14:47:07 +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 (3):
  kern-tools: fix forced branching
  linux-yocto/3.4: v3.4.9, unionfs, perf and configuration changes
  linux-yocto/3.2/3.4: arm: Fix linking errors with binutils 2.23

 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb    |    4 ++--
 meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb    |    8 ++++----
 meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb  |    2 +-
 meta/recipes-kernel/linux/linux-yocto_3.2.bb       |   12 ++++++------
 meta/recipes-kernel/linux/linux-yocto_3.4.bb       |   16 ++++++++--------
 6 files changed, 22 insertions(+), 22 deletions(-)

-- 
1.7.5.4




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2012-03-05  4:01 Bruce Ashfield
@ 2012-03-13 15:54 ` Saul Wold
  0 siblings, 0 replies; 36+ messages in thread
From: Saul Wold @ 2012-03-13 15:54 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: dvhart

On 03/04/2012 08:01 PM, Bruce Ashfield wrote:
> Richard/Saul,
>
> Here's the latest consolidated kernel pull request. The patches are as follows:
>
> 3/3 is the kernel updates:
>
>    - v3.0.23 stable update
>    - v3.2.9 stable update
>    - 3.0/3.2: fri2 updates (pch + configuration changes) from Darren Hart
>    - 3.0: pvr merge from Kishore Bodke
>    - linux-yocto/rt: update to 3.0.23-rt38
>    - linux-yocto/rt: update to 3.2.9-rt15
>
> These have been built for all qemu targets, and built for the appropriate
> hardware platforms.
>
> 2/3 is the switch to use the 'bareclone' option that I had previously sent
> to be added to bitbake. Using this, the management of the linux-yocto branches
> in the build directory is much easier, and it removes the remaining restrictions
> around bare vs non-bare clones.
>
> 1/3 is linux-yocto: respect FILESPATH directories. This came from debugging the
> patching issues found with the linux-korg recipe. The solution (outside of
> re-writing the entire routine to python .. which I will do shortly) was to add
> a new routine that returns both the absolute patch source and the url's subdirectory.
> Using this all patches in WORKDIR, regardless of where they are on FILESPATH can
> be found. I tested linux-korg, and patching of all the kernels with this in place.
>
> All three changes are isolated, so you can pick them up in any order that makes
> sense.
>
> Cheers,
>
> Bruce
>
> cc: Darren Hart<dvhart@linux.intel.com>
> cc: Kishore Bodke<kishore.k.bodke@intel.com>
>
> The following changes since commit a439d32dd843d10a9f65cc858b02422fac7deb50:
>
>    soc-family.inc: to be included in machine.conf to add SOC_FAMILY to MACHINEOVERRIDE (2012-03-04 05:41:11 -0800)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib zedd/kernel-oe
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-oe
>
> Bruce Ashfield (3):
>    linux-yocto: respect FILESPATH directories
>    linux-yocto: use bareclone option
>    linux-yocto: v3.2.9, v3.0.23 + fixes and updates
>
>   meta/classes/kernel-yocto.bbclass                 |   30 ++++++++++++++++++---
>   meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb   |   12 ++++----
>   meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb   |   13 ++++-----
>   meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb |   10 +++---
>   meta/recipes-kernel/linux/linux-yocto_2.6.37.bb   |    4 +-
>   meta/recipes-kernel/linux/linux-yocto_3.0.bb      |   20 +++++++-------
>   meta/recipes-kernel/linux/linux-yocto_3.2.bb      |   21 +++++++-------
>   7 files changed, 65 insertions(+), 45 deletions(-)
>


Merged into OE-Core

Thanks
	Sau!



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2012-03-05  4:01 Bruce Ashfield
  2012-03-13 15:54 ` Saul Wold
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2012-03-05  4:01 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Richard/Saul,

Here's the latest consolidated kernel pull request. The patches are as follows:

3/3 is the kernel updates:

  - v3.0.23 stable update
  - v3.2.9 stable update
  - 3.0/3.2: fri2 updates (pch + configuration changes) from Darren Hart
  - 3.0: pvr merge from Kishore Bodke
  - linux-yocto/rt: update to 3.0.23-rt38
  - linux-yocto/rt: update to 3.2.9-rt15

These have been built for all qemu targets, and built for the appropriate
hardware platforms.

2/3 is the switch to use the 'bareclone' option that I had previously sent
to be added to bitbake. Using this, the management of the linux-yocto branches
in the build directory is much easier, and it removes the remaining restrictions
around bare vs non-bare clones.

1/3 is linux-yocto: respect FILESPATH directories. This came from debugging the
patching issues found with the linux-korg recipe. The solution (outside of
re-writing the entire routine to python .. which I will do shortly) was to add
a new routine that returns both the absolute patch source and the url's subdirectory.
Using this all patches in WORKDIR, regardless of where they are on FILESPATH can
be found. I tested linux-korg, and patching of all the kernels with this in place.

All three changes are isolated, so you can pick them up in any order that makes
sense.

Cheers,

Bruce

cc: Darren Hart <dvhart@linux.intel.com>
cc: Kishore Bodke <kishore.k.bodke@intel.com>

The following changes since commit a439d32dd843d10a9f65cc858b02422fac7deb50:

  soc-family.inc: to be included in machine.conf to add SOC_FAMILY to MACHINEOVERRIDE (2012-03-04 05:41:11 -0800)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib zedd/kernel-oe
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-oe

Bruce Ashfield (3):
  linux-yocto: respect FILESPATH directories
  linux-yocto: use bareclone option
  linux-yocto: v3.2.9, v3.0.23 + fixes and updates

 meta/classes/kernel-yocto.bbclass                 |   30 ++++++++++++++++++---
 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb   |   12 ++++----
 meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb   |   13 ++++-----
 meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb |   10 +++---
 meta/recipes-kernel/linux/linux-yocto_2.6.37.bb   |    4 +-
 meta/recipes-kernel/linux/linux-yocto_3.0.bb      |   20 +++++++-------
 meta/recipes-kernel/linux/linux-yocto_3.2.bb      |   21 +++++++-------
 7 files changed, 65 insertions(+), 45 deletions(-)

-- 
1.7.4.1




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2012-02-27 19:34 Bruce Ashfield
@ 2012-02-28 18:41 ` Saul Wold
  0 siblings, 0 replies; 36+ messages in thread
From: Saul Wold @ 2012-02-28 18:41 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: dvhart

On 02/27/2012 11:34 AM, Bruce Ashfield wrote:
> Richard/Saul,
>
> Here's a consolidated pull reqeset for the some kernel items.
>
>    - a bump of 3.0 to 3.0.22
>    - a bump of 3.2 to 3.2.7
>    - A fix for yocto 2032
>
> You can cherry pick the bug fix by itself. As for the version
> updates, I've built and booted them on my development machine
> and on a clean machine, so they are safe for everything that
> I've been able to test.
>
> cc: Darren Hart<dvhart@linux.intel.com>
>
> Cheers,
>
> Bruce
>
> The following changes since commit f420fb3de1f588a51dd6009452c7836903fa9158:
>    Richard Purdie (1):
>          glib-2.0: Disable fam, we don't depend on it
>
> 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 (3):
>    linux-yocto: update 3.0 kernel to v3.0.22
>    linux-yocto: update 3.2 kernel to v3.2.7
>    linux-yocto: allow non-branched repositories to check out
>
>   meta/classes/kernel-yocto.bbclass                 |    2 +-
>   meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb   |    8 ++++----
>   meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb   |    9 +++++----
>   meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb |    6 +++---
>   meta/recipes-kernel/linux/linux-yocto_3.0.bb      |   18 +++++++++---------
>   meta/recipes-kernel/linux/linux-yocto_3.2.bb      |   19 ++++++++++---------
>   6 files changed, 32 insertions(+), 30 deletions(-)
>
>
Merged into OE-core

Thanks
	Sau!

> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>




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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2012-02-27 19:34 Bruce Ashfield
  2012-02-28 18:41 ` Saul Wold
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2012-02-27 19:34 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Richard/Saul,

Here's a consolidated pull reqeset for the some kernel items.

  - a bump of 3.0 to 3.0.22
  - a bump of 3.2 to 3.2.7
  - A fix for yocto 2032

You can cherry pick the bug fix by itself. As for the version
updates, I've built and booted them on my development machine
and on a clean machine, so they are safe for everything that
I've been able to test.

cc: Darren Hart <dvhart@linux.intel.com>

Cheers,

Bruce

The following changes since commit f420fb3de1f588a51dd6009452c7836903fa9158:
  Richard Purdie (1):
        glib-2.0: Disable fam, we don't depend on it

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 (3):
  linux-yocto: update 3.0 kernel to v3.0.22
  linux-yocto: update 3.2 kernel to v3.2.7
  linux-yocto: allow non-branched repositories to check out

 meta/classes/kernel-yocto.bbclass                 |    2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb   |    8 ++++----
 meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb   |    9 +++++----
 meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb |    6 +++---
 meta/recipes-kernel/linux/linux-yocto_3.0.bb      |   18 +++++++++---------
 meta/recipes-kernel/linux/linux-yocto_3.2.bb      |   19 ++++++++++---------
 6 files changed, 32 insertions(+), 30 deletions(-)




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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2012-01-04 20:12 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2012-01-04 20:12 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

Richard/Saul,

Here's a 3pack of kernel changes. The breakdown is as follows:

1) kern-tools: import flexible branching support

This fixes an issue that Saul found with the Intel boards that
use the yocto/emgd, yocto/eg20t graphics branches. We need to
be able to have features that allow a branch to be tested via
multiple creations. So these changes allow that again.

2) linux-yocto: bump kernel version to v3.0.14

Normal maintainance here. Bumping the version to pickup 3.0.14 fixes.
  
3) linux-yocto: use src_patches for out of tree kernel feature support

This is to fix some issue we found in 1.1 and was on the M2
feature schedule. This sets the stage for Tom's BSP scripts and
out of tree development. 

At the least, you want #1 right away to fix potential breakage.

Cheers,

Bruce


The following changes since commit 021848be9eeb71de8acfba6c66c11645b01523b8:

  valgrind: Fix for automake update (2012-01-04 16:04:08 +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 (3):
  kern-tools: import flexible branching support
  linux-yocto: bump kernel version to v3.0.14
  linux-yocto: use src_patches for out of tree kernel feature support

 meta/classes/kernel-yocto.bbclass                  |   67 +++++++++++++++++++-
 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb    |    8 +-
 meta/recipes-kernel/linux/linux-yocto_3.0.bb       |   19 +++---
 4 files changed, 80 insertions(+), 16 deletions(-)

-- 
1.7.4.1




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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-12-08 17:11 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-12-08 17:11 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Richard/Saul,

Flushing my queue of pending updates. This refreshes the 3.0
base to v3.0.12 and updates our -rt branches to the corresponding
update.

This also pulls in the EFI changes from Darren.

This one should be random carrage return free, built and booted
locally. Smoke tests all pass.

Cheers,

Bruce

cc: Darren Hart <dvhart@linux.intel.com>

The following changes since commit 30301333f8277228ad4d9213cb801a8ac75f6373:

  package.bbclass: Adding license collection (2011-12-08 15:24:32 +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 (3):
  linux-yocto: v3.0.12 + EFI fixes
  linux-yocto: update META SRCREV for EFI changes
  linux-yocto: update rt branches to 3.0.12 + rt30

 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb |    8 ++++----
 meta/recipes-kernel/linux/linux-yocto_3.0.bb    |   18 +++++++++---------
 2 files changed, 13 insertions(+), 13 deletions(-)

-- 
1.7.4.1




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2011-09-14 18:11 Bruce Ashfield
@ 2011-09-15 17:37 ` Saul Wold
  0 siblings, 0 replies; 36+ messages in thread
From: Saul Wold @ 2011-09-15 17:37 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: dvhart, openembedded-core

On Wed, 2011-09-14 at 14:11 -0400, Bruce Ashfield wrote:
> Richard/Saul,
> 
> Here's a series of changes I've had locally since last week. The
> two kernel only ones are simple enough.
> 
>   - a configuration split to clean our x86 BSPs
>   - a build fix for rt
> 
> The net result of the cleanup is zero, since the configs are the
> same, so there's no reason not to do it.
> 
> I've also had the refactored linux-yocto tasks around for a bit,
> they were brought up while reviewing some 1.1 documentation, and
> indeed, simplifying the amount of variables required in a linux-yocto
> based recipe was a 1.1 goal. The result here is also zero, since we
> are just not resetting things needlessly. I've been building with
> this for a while, but if you'd rather sit on this until the imminent
> spin is done, I won't object.
> 
> The following changes since commit ce66e2c6bd117d1a40b547b10b376524f9276d16:
> 
>   core-image-minimal: Add missing POKY_EXTRA_IMAGE variable (2011-09-14 01:29:30 +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 (3):
>   linux-yocto: move common tasks to a common location
>   linux-yocto: split e100 and e1000 support
>   linux-yocto-rt: correct 3.0.3->3.0.4 mismerge for, stop_machine.c
> 
>  meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb |    8 +-------
>  meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb    |   14 ++++----------
>  meta/recipes-kernel/linux/linux-yocto.inc          |    5 +++++
>  meta/recipes-kernel/linux/linux-yocto_2.6.37.bb    |   13 +------------
>  meta/recipes-kernel/linux/linux-yocto_3.0.bb       |   10 ++--------
>  5 files changed, 13 insertions(+), 37 deletions(-)
> 

Merged into OE-Core

Thanks
	Sau!





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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-09-14 18:11 Bruce Ashfield
  2011-09-15 17:37 ` Saul Wold
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2011-09-14 18:11 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Richard/Saul,

Here's a series of changes I've had locally since last week. The
two kernel only ones are simple enough.

  - a configuration split to clean our x86 BSPs
  - a build fix for rt

The net result of the cleanup is zero, since the configs are the
same, so there's no reason not to do it.

I've also had the refactored linux-yocto tasks around for a bit,
they were brought up while reviewing some 1.1 documentation, and
indeed, simplifying the amount of variables required in a linux-yocto
based recipe was a 1.1 goal. The result here is also zero, since we
are just not resetting things needlessly. I've been building with
this for a while, but if you'd rather sit on this until the imminent
spin is done, I won't object.

The following changes since commit ce66e2c6bd117d1a40b547b10b376524f9276d16:

  core-image-minimal: Add missing POKY_EXTRA_IMAGE variable (2011-09-14 01:29:30 +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 (3):
  linux-yocto: move common tasks to a common location
  linux-yocto: split e100 and e1000 support
  linux-yocto-rt: correct 3.0.3->3.0.4 mismerge for, stop_machine.c

 meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb |    8 +-------
 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb    |   14 ++++----------
 meta/recipes-kernel/linux/linux-yocto.inc          |    5 +++++
 meta/recipes-kernel/linux/linux-yocto_2.6.37.bb    |   13 +------------
 meta/recipes-kernel/linux/linux-yocto_3.0.bb       |   10 ++--------
 5 files changed, 13 insertions(+), 37 deletions(-)

-- 
1.7.4.1




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2011-08-15 20:24 Bruce Ashfield
@ 2011-08-22 22:37 ` Saul Wold
  0 siblings, 0 replies; 36+ messages in thread
From: Saul Wold @ 2011-08-22 22:37 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 08/15/2011 01:24 PM, Bruce Ashfield wrote:
> Richard/Saul,
>
> We've had some good mileage on the 3.0.x kernel. I've been building
> and booting these boards for weeks now and the meta-intel based BSPs
> have all been switching over and all of Darren's -rt work was done
> on top of 3.0.
>
> So the big part of this pull request is the removal of the explicit
> version preference to 2.6.37. We still have the old versions(s) as
> fallbacks, but it does seem to be time to acknowledge that 3.0.x
> should be the default kernel.
>
> As for the timing of the merge, I'll leave this up to you.
>
> The following changes since commit a21ff559e7c93e9da61104f4a33e42e6004189fd:
>
>    Fixup remaining bb.msg.domain users (2011-08-15 17:31:52 +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 (3):
>    linux-yocto: bump version string to 3.0.1
>    qemu: change default kernel to 3.0.x
>    linux-yocto: meta SRCREV bump
>
>   meta/conf/machine/include/qemu.inc           |    1 -
>   meta/recipes-kernel/linux/linux-yocto_3.0.bb |    6 +++---
>   2 files changed, 3 insertions(+), 4 deletions(-)
>

Merged into OE-Core

Thanks
	Sau!



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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2011-08-19  5:20 Bruce Ashfield
@ 2011-08-20  5:08 ` Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-08-20  5:08 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, saul.wold, openembedded-core

On Fri, Aug 19, 2011 at 1:20 AM, Bruce Ashfield
<bruce.ashfield@windriver.com> wrote:
> Richard/Saul,
>
> Here's a consolidated set of changes that I've been testing with
> for the past few days. The patches are pretty much self explanitory.
>
> 1/3:  linux-yocto: restoring LINUX_VERSION ?= "3.0"
>
> After discussions on the mailing list, we are going to go back to the
> 1.0 model and not cycle the version string of the recipe. We'll revisit
> this post 1.1.

I've repushed this series with 1/3 dropped.

>
> 2/3  linux-yocto: move more default values into linux-yocto.inc
>
> While working on documentation for extending linux-yocto, I moved some
> variables into the .inc file to simply recipes based on linux-yocto.
> I haven't updated some other recipes yet (like the -rt one), but will
> do that once I can test them.
>
> 3/3 linux-yocto: update SRCREVs for 3.0.3
>
> Updating the SRCREVs to pickup 3.0.3, this also picks up the meta branch
> updates for emgd and hpet.

And this changed to make the kernel version 3.0.3.

I'm sparing everyone another patch posting, but let me know if you'd like me
to resend.

Bruce

>
> cc: Tom Zanussi <tom.zanussi@intel.com>
> cc: Darren Hart <dvhart@linux.intel.com>
>
> The following changes since commit 978cdd5cb5b445f1cf406296444cb57cd8aa526a:
>
>  kernel: restore crtsavres.o to enable building external modules on powerpc (2011-08-17 15:56:07 +0100)
>
> are available in the git repository at:
>  git://git.pokylinux.org/poky-contrib zedd/kernel-oe
>  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-oe
>
> Bruce Ashfield (3):
>  linux-yocto: restoring LINUX_VERSION ?= "3.0"
>  linux-yocto: move more default values into linux-yocto.inc
>  linux-yocto: update SRCREVs for 3.0.3
>
>  meta/recipes-kernel/linux/linux-yocto.inc    |    7 +++++++
>  meta/recipes-kernel/linux/linux-yocto_3.0.bb |   21 ++++++++-------------
>  2 files changed, 15 insertions(+), 13 deletions(-)
>
> --
> 1.7.4.1
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/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] 36+ messages in thread

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-08-19  5:20 Bruce Ashfield
  2011-08-20  5:08 ` Bruce Ashfield
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2011-08-19  5:20 UTC (permalink / raw)
  To: richard.purdie; +Cc: dvhart, openembedded-core, saul.wold

Richard/Saul,

Here's a consolidated set of changes that I've been testing with
for the past few days. The patches are pretty much self explanitory.

1/3:  linux-yocto: restoring LINUX_VERSION ?= "3.0"

After discussions on the mailing list, we are going to go back to the
1.0 model and not cycle the version string of the recipe. We'll revisit
this post 1.1.

2/3  linux-yocto: move more default values into linux-yocto.inc

While working on documentation for extending linux-yocto, I moved some
variables into the .inc file to simply recipes based on linux-yocto.
I haven't updated some other recipes yet (like the -rt one), but will
do that once I can test them.

3/3 linux-yocto: update SRCREVs for 3.0.3

Updating the SRCREVs to pickup 3.0.3, this also picks up the meta branch
updates for emgd and hpet.

cc: Tom Zanussi <tom.zanussi@intel.com>
cc: Darren Hart <dvhart@linux.intel.com>

The following changes since commit 978cdd5cb5b445f1cf406296444cb57cd8aa526a:

  kernel: restore crtsavres.o to enable building external modules on powerpc (2011-08-17 15:56:07 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib zedd/kernel-oe
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-oe

Bruce Ashfield (3):
  linux-yocto: restoring LINUX_VERSION ?= "3.0"
  linux-yocto: move more default values into linux-yocto.inc
  linux-yocto: update SRCREVs for 3.0.3

 meta/recipes-kernel/linux/linux-yocto.inc    |    7 +++++++
 meta/recipes-kernel/linux/linux-yocto_3.0.bb |   21 ++++++++-------------
 2 files changed, 15 insertions(+), 13 deletions(-)

-- 
1.7.4.1




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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-08-15 20:24 Bruce Ashfield
  2011-08-22 22:37 ` Saul Wold
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2011-08-15 20:24 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

Richard/Saul,

We've had some good mileage on the 3.0.x kernel. I've been building
and booting these boards for weeks now and the meta-intel based BSPs
have all been switching over and all of Darren's -rt work was done
on top of 3.0.

So the big part of this pull request is the removal of the explicit
version preference to 2.6.37. We still have the old versions(s) as
fallbacks, but it does seem to be time to acknowledge that 3.0.x 
should be the default kernel.

As for the timing of the merge, I'll leave this up to you.

The following changes since commit a21ff559e7c93e9da61104f4a33e42e6004189fd:

  Fixup remaining bb.msg.domain users (2011-08-15 17:31:52 +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 (3):
  linux-yocto: bump version string to 3.0.1
  qemu: change default kernel to 3.0.x
  linux-yocto: meta SRCREV bump

 meta/conf/machine/include/qemu.inc           |    1 -
 meta/recipes-kernel/linux/linux-yocto_3.0.bb |    6 +++---
 2 files changed, 3 insertions(+), 4 deletions(-)

-- 
1.7.4.1




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

* Re: [PATCH 0/3] linux-yocto: consolidated pull request
  2011-05-09 18:34 Bruce Ashfield
@ 2011-05-10 17:53 ` Saul Wold
  0 siblings, 0 replies; 36+ messages in thread
From: Saul Wold @ 2011-05-10 17:53 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer
  Cc: yocto, dvhart, poky, saul.wold

On 05/09/2011 11:34 AM, Bruce Ashfield wrote:
> Saul/Richard,
>
> The first two patches are a split and resend of the machine
> movement patch:
>
> [
>     linux-yocto: move non-core machines to meta-yocto
>
>     The machine configuration of the non-core (non-qemu) machines
>     has moved to meta-yocto. Moving the branch mappings, compatibility
>     and SRCREVs of these machines to meta-yocto should also be
>     done.
>
>    Anyone using meta-yocto to build these machines will see no impact
>    from this change.
> ]
>
> Patch #3 is a sanity check that shows a problem that Tom managed
> to hit, and cause us some significant debug time. If for some
> reason (we still don't have a root cause) the kernel repo is cloned
> without tags and/or meta data, we can now detect it and throw an
> informative error message rather than generating meta data and
> building "something".
>
> cc: Darren Hart<dvhart@linux.intel.com>
> cc: Tom Zanussi<tom.zanussi@intel.com>
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: zedd/kernel
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
>
> Thanks,
>      Bruce Ashfield<bruce.ashfield@windriver.com>
> ---
>
>
> Bruce Ashfield (3):
>    linux-yocto: remove non-core (qemu) machine compatibility
>    linux-yocto: move non-core machines to meta-yocto
>    linux-yocto: error if meta data not present
>
>   meta-yocto/conf/layer.conf                         |    3 ++-
>   .../linux/linux-yocto-stable_git.bbappend          |   12 ++++++++++++
>   .../recipes-kernel/linux/linux-yocto_git.bbappend  |   12 ++++++++++++
>   meta/classes/kernel-yocto.bbclass                  |    5 ++++-
>   .../kern-tools/kern-tools-native_git.bb            |    2 +-
>   .../recipes-kernel/linux/linux-yocto-stable_git.bb |   10 +---------
>   meta/recipes-kernel/linux/linux-yocto_git.bb       |   15 ++++-----------
>   7 files changed, 36 insertions(+), 23 deletions(-)
>   create mode 100644 meta-yocto/recipes-kernel/linux/linux-yocto-stable_git.bbappend
>   create mode 100644 meta-yocto/recipes-kernel/linux/linux-yocto_git.bbappend
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Merged into oe-core and poky master

Thanks
	Sau!



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-05-09 18:34 Bruce Ashfield
  2011-05-10 17:53 ` Saul Wold
  0 siblings, 1 reply; 36+ messages in thread
From: Bruce Ashfield @ 2011-05-09 18:34 UTC (permalink / raw)
  To: richard.purdie; +Cc: yocto, dvhart, openembedded-core, poky, saul.wold

Saul/Richard,

The first two patches are a split and resend of the machine
movement patch:

[
   linux-yocto: move non-core machines to meta-yocto

   The machine configuration of the non-core (non-qemu) machines
   has moved to meta-yocto. Moving the branch mappings, compatibility
   and SRCREVs of these machines to meta-yocto should also be
   done.

  Anyone using meta-yocto to build these machines will see no impact
  from this change.
]

Patch #3 is a sanity check that shows a problem that Tom managed
to hit, and cause us some significant debug time. If for some 
reason (we still don't have a root cause) the kernel repo is cloned
without tags and/or meta data, we can now detect it and throw an
informative error message rather than generating meta data and
building "something".

cc: Darren Hart <dvhart@linux.intel.com> 
cc: Tom Zanussi <tom.zanussi@intel.com>

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

Thanks,
    Bruce Ashfield <bruce.ashfield@windriver.com>
---


Bruce Ashfield (3):
  linux-yocto: remove non-core (qemu) machine compatibility
  linux-yocto: move non-core machines to meta-yocto
  linux-yocto: error if meta data not present

 meta-yocto/conf/layer.conf                         |    3 ++-
 .../linux/linux-yocto-stable_git.bbappend          |   12 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_git.bbappend  |   12 ++++++++++++
 meta/classes/kernel-yocto.bbclass                  |    5 ++++-
 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 .../recipes-kernel/linux/linux-yocto-stable_git.bb |   10 +---------
 meta/recipes-kernel/linux/linux-yocto_git.bb       |   15 ++++-----------
 7 files changed, 36 insertions(+), 23 deletions(-)
 create mode 100644 meta-yocto/recipes-kernel/linux/linux-yocto-stable_git.bbappend
 create mode 100644 meta-yocto/recipes-kernel/linux/linux-yocto_git.bbappend



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-05-05  4:53 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-05-05  4:53 UTC (permalink / raw)
  To: richard.purdie; +Cc: yocto, openembedded-core, poky, saul.wold

Richard/Saul,

I've been running with these changes since before ELC, so they've had
some good soak time. The first two changes lay the ground for for some
1.1 functionality and are used by recipes in the meta-kernel-dev layer.
The changes are transparent to existing recipes.

In particular they are related to auto creating meta data for kernel
repository builds. They are enough for basic korg/defconfig builds and
limited other repository building. More changes will complete this work
shortly.

The last patch just updates the SRCREVs to pickup Khem's backported
perf tool / gcc 4.6.0 patch.

There are about 8 more pending patches that deal with some recipe
renames, cleanup and more 1.1 functionality but I wanted to get
this first set of 3 out before rebasing the rest.

Sorry about the big cross post, but these changes span quite a few
different interest groups.

cc: Khem Raj <raj.khem@gmail.com>

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

Thanks,
    Bruce Ashfield <bruce.ashfield@windriver.com>
---


Bruce Ashfield (3):
  linux-yocto: apply meta data to external repos
  linux-yocto: safely process unbranched repositories
  linux-yocto: update SRCREVs

 meta/classes/kernel-yocto.bbclass                  |   34 +++++++++++++++-----
 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 meta/recipes-kernel/linux/linux-yocto_git.bb       |   24 +++++++-------
 3 files changed, 39 insertions(+), 21 deletions(-)



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

* [PATCH 0/3] linux-yocto: consolidated pull request
@ 2011-01-17 21:57 Bruce Ashfield
  0 siblings, 0 replies; 36+ messages in thread
From: Bruce Ashfield @ 2011-01-17 21:57 UTC (permalink / raw)
  To: rpurdie; +Cc: yocto, poky, saul.wold

Richard/Saul,

This pull request contains three changes on top of the previously
sent changes that are still pending:

 linux-yocto: enable arch ARM config settings for KARCH based boards
 linux-yocto-stable: add atom-pc preempt_rt support
 linux-yocto: add systemtap config to -stable and -dev kernels

But I wanted to send these anyway, since them sitting on my disk
here isn't helping anyone.

The first commit: 

linux-yocto: update validate_branches to detected invalid commit IDs

Addresses a problem that Richard ran into when invalid commit IDs
are used for SRCREVs. I tested this while fixing the ARM boot 
issues.

The second commit:

linux-yocto: streamline new BSP creation

Is self explanitory, as is the commit message. With this change you
can throw a previously unknown machine at the yocto kernel and have
a resonable first effort at booting the board and creating an
environment for development.

And finally:

linux-yocto: beagleboard enablement

Enables the beagleboard for 2.6.37. The patch itself has the details.

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

Thanks,
    Bruce Ashfield <bruce.ashfield@windriver.com>
---


Bruce Ashfield (3):
  linux-yocto: beagleboard enablement
  linux-yocto: streamline new BSP creation
  linux-yocto: update validate_branches to detected invalid commit IDs

 meta/classes/kernel-yocto.bbclass  |   37 ++++++++++++++++++++---------------
 meta/conf/machine/beagleboard.conf |    6 ++--
 2 files changed, 24 insertions(+), 19 deletions(-)



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

end of thread, other threads:[~2020-03-22  1:18 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-03  3:03 [PATCH 0/3] linux-yocto: consolidated pull request Bruce Ashfield
2011-09-03  3:03 ` [PATCH 1/3] linux-yocto: generalize kernel config search pattern Bruce Ashfield
2011-09-03  3:03 ` [PATCH 2/3] linux-yocto: update to v3.0.4 Bruce Ashfield
2011-09-03  3:03 ` [PATCH 3/3] linux-yocto: clean configuration for v3.0.4 Bruce Ashfield
2011-09-05 19:26 ` [PATCH 0/3] linux-yocto: consolidated pull request Richard Purdie
  -- strict thread matches above, loose matches on Subject: below --
2020-03-22  1:18 Bruce Ashfield
2019-02-09 18:37 bruce.ashfield
2019-02-06 19:50 bruce.ashfield
2019-01-21 17:26 Bruce Ashfield
2019-01-12 18:12 Bruce Ashfield
2018-04-09 15:16 Bruce Ashfield
2016-09-20 15:16 Bruce Ashfield
2016-06-06  8:15 Bruce Ashfield
2016-05-24 15:53 Bruce Ashfield
2013-11-26 17:33 Bruce Ashfield
2013-09-18 18:24 Bruce Ashfield
2012-12-03 20:49 Bruce Ashfield
2012-08-27  4:49 Bruce Ashfield
2012-08-28 14:22 ` Saul Wold
2012-08-29  7:58   ` Bruce Ashfield
2012-03-05  4:01 Bruce Ashfield
2012-03-13 15:54 ` Saul Wold
2012-02-27 19:34 Bruce Ashfield
2012-02-28 18:41 ` Saul Wold
2012-01-04 20:12 Bruce Ashfield
2011-12-08 17:11 Bruce Ashfield
2011-09-14 18:11 Bruce Ashfield
2011-09-15 17:37 ` Saul Wold
2011-08-19  5:20 Bruce Ashfield
2011-08-20  5:08 ` Bruce Ashfield
2011-08-15 20:24 Bruce Ashfield
2011-08-22 22:37 ` Saul Wold
2011-05-09 18:34 Bruce Ashfield
2011-05-10 17:53 ` Saul Wold
2011-05-05  4:53 Bruce Ashfield
2011-01-17 21:57 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.