Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] linux-yocto: update live boot configuration
@ 2011-10-04 21:08 Bruce Ashfield
  2011-10-04 21:08 ` [PATCH 1/1] " Bruce Ashfield
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-10-04 21:08 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

Richard/Saul,

Apologies to anyone that prefers these to be pushed out on top of oe-core,
but my machine with those repos went down today and I wanted to get these
out quickly, so this is based on top of my yocto/poky tree. I've also had
to do this on top of my master branch (hence why you see the distro
version patch), if we do need this on another branch let me know and I'll
spend the time to re-create my environment on another machine to get
things staged differently.

This is a series of changes from Tom to synchronize live boot settings
across more machines, which are nicely isolated to a few boards.

Cheers,

Bruce

cc: Tom Zanussi <tom.zanussi@intel.com>

The following changes since commit c88b9915267f9a89983bb58faf3c30fe1dcdab43:

  poky.conf: Increment DISTRO_VERSION (2011-10-04 18:33:54 +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 (1):
  linux-yocto: update live boot configuration

 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(-)

-- 
1.7.4.1




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

* [PATCH 1/1] linux-yocto: update live boot configuration
  2011-10-04 21:08 [PATCH 0/1] linux-yocto: update live boot configuration Bruce Ashfield
@ 2011-10-04 21:08 ` Bruce Ashfield
  2011-10-04 21:19 ` [PATCH 0/1] " Tom Zanussi
  2011-10-04 21:40 ` Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-10-04 21:08 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

Updating the meta SRCREV to import a series of changes to synchronize
live booting between multiple targets:

  d05450e meta/fri2: enable booting from iso
  3da7d2a meta/fishriver: enable booting from iso
  52e1c49 meta/emenlow: enable booting from iso
  87918ae meta/crownbay: enable booting from iso

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
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 0c59a5b..9746f1a 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 ?= "0936e13cc65d816f1759e2322c5e3fc82a5037f3"
 SRCREV_machine_qemuppc ?= "0936e13cc65d816f1759e2322c5e3fc82a5037f3"
-SRCREV_meta ?= "67a46a608f47c19f16995be7de7b272025864b1b"
+SRCREV_meta ?= "d05450e4aef02c1b7137398ab3a9f8f96da74f52"
 
 PR = "r1"
 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 9ece25c..c36e8b5 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 ?= "eccd57eaa4c2b580b9adbbc39e19ecbff56779ae"
 SRCREV_machine_qemux86 ?= "72671808fdbe69a9fe03fd8f094e7c59da04a28c"
 SRCREV_machine_qemux86-64 ?= "2b2d0954a6fd12b4bb7f02f019bc62633c8060a1"
 SRCREV_machine ?= "6b2c7d65b844e686eae7d5cccb9b638887afe28e"
-SRCREV_meta ?= "67a46a608f47c19f16995be7de7b272025864b1b"
+SRCREV_meta ?= "d05450e4aef02c1b7137398ab3a9f8f96da74f52"
 
 PR = "r2"
 PV = "${LINUX_VERSION}+git${SRCPV}"
-- 
1.7.4.1




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

* Re: [PATCH 0/1] linux-yocto: update live boot configuration
  2011-10-04 21:08 [PATCH 0/1] linux-yocto: update live boot configuration Bruce Ashfield
  2011-10-04 21:08 ` [PATCH 1/1] " Bruce Ashfield
@ 2011-10-04 21:19 ` Tom Zanussi
  2011-10-04 21:40 ` Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Zanussi @ 2011-10-04 21:19 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: openembedded-core@lists.openembedded.org, Wold, Saul

Thanks, Bruce.

And the SRCREVs have now also been updated for meta-intel/master and
meta-intel/edison.

Tom

On Tue, 2011-10-04 at 14:08 -0700, Bruce Ashfield wrote:
> Richard/Saul,
> 
> Apologies to anyone that prefers these to be pushed out on top of oe-core,
> but my machine with those repos went down today and I wanted to get these
> out quickly, so this is based on top of my yocto/poky tree. I've also had
> to do this on top of my master branch (hence why you see the distro
> version patch), if we do need this on another branch let me know and I'll
> spend the time to re-create my environment on another machine to get
> things staged differently.
> 
> This is a series of changes from Tom to synchronize live boot settings
> across more machines, which are nicely isolated to a few boards.
> 
> Cheers,
> 
> Bruce
> 
> cc: Tom Zanussi <tom.zanussi@intel.com>
> 
> The following changes since commit c88b9915267f9a89983bb58faf3c30fe1dcdab43:
> 
>   poky.conf: Increment DISTRO_VERSION (2011-10-04 18:33:54 +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 (1):
>   linux-yocto: update live boot configuration
> 
>  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(-)
> 





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

* Re: [PATCH 0/1] linux-yocto: update live boot configuration
  2011-10-04 21:08 [PATCH 0/1] linux-yocto: update live boot configuration Bruce Ashfield
  2011-10-04 21:08 ` [PATCH 1/1] " Bruce Ashfield
  2011-10-04 21:19 ` [PATCH 0/1] " Tom Zanussi
@ 2011-10-04 21:40 ` Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-10-04 21:40 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: openembedded-core, saul.wold

On Tue, 2011-10-04 at 17:08 -0400, Bruce Ashfield wrote:
> Richard/Saul,
> 
> Apologies to anyone that prefers these to be pushed out on top of oe-core,
> but my machine with those repos went down today and I wanted to get these
> out quickly, so this is based on top of my yocto/poky tree. I've also had
> to do this on top of my master branch (hence why you see the distro
> version patch), if we do need this on another branch let me know and I'll
> spend the time to re-create my environment on another machine to get
> things staged differently.
> 
> This is a series of changes from Tom to synchronize live boot settings
> across more machines, which are nicely isolated to a few boards.
> 
> Cheers,
> 
> Bruce
> 
> cc: Tom Zanussi <tom.zanussi@intel.com>
> 
> The following changes since commit c88b9915267f9a89983bb58faf3c30fe1dcdab43:
> 
>   poky.conf: Increment DISTRO_VERSION (2011-10-04 18:33:54 +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 (1):
>   linux-yocto: update live boot configuration

Merged to master, thanks.

Richard




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

end of thread, other threads:[~2011-10-04 21:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-04 21:08 [PATCH 0/1] linux-yocto: update live boot configuration Bruce Ashfield
2011-10-04 21:08 ` [PATCH 1/1] " Bruce Ashfield
2011-10-04 21:19 ` [PATCH 0/1] " Tom Zanussi
2011-10-04 21:40 ` Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox