All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] meta-yocto/linux-yocto updates
@ 2011-08-19  5:26 Bruce Ashfield
  2011-08-19  5:26 ` [PATCH 1/2] meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0 Bruce Ashfield
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-08-19  5:26 UTC (permalink / raw)
  To: richard.purdie; +Cc: poky, saul.wold

Richard/Saul,

These updates switch the mpc8315e-rdb and atom-pc to use the 3.0.3 
kernel as their default preference, and as such also update the
SRCREVs to 3.0.3 for these boards.

These are based on top of a similar set of changes destined for
linux-yocto in oe-core.

The following changes since commit 180e52d7b1b6754d91a98b09cb3d9ebe702feaec:

  linux-yocto: update SRCREVs for 3.0.3 (2011-08-19 01:02:06 -0400)

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

Bruce Ashfield (2):
  meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0
  linux-yocto/meta-yocto: update SRCREVs for 3.0.3

 meta-yocto/conf/machine/atom-pc.conf               |    1 +
 meta-yocto/conf/machine/mpc8315e-rdb.conf          |    2 ++
 .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |   14 +++++++-------
 3 files changed, 10 insertions(+), 7 deletions(-)

-- 
1.7.4.1



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

* [PATCH 1/2] meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0
  2011-08-19  5:26 [PATCH 0/2] meta-yocto/linux-yocto updates Bruce Ashfield
@ 2011-08-19  5:26 ` Bruce Ashfield
  2011-08-19  5:26 ` [PATCH 2/2] linux-yocto/meta-yocto: update SRCREVs for 3.0.3 Bruce Ashfield
  2011-08-20  5:10 ` [PATCH 0/2] meta-yocto/linux-yocto updates Bruce Ashfield
  2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-08-19  5:26 UTC (permalink / raw)
  To: richard.purdie; +Cc: poky, saul.wold

Updating two more yocto hardware reference platforms to use the
3.0 kernel by default.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta-yocto/conf/machine/atom-pc.conf               |    1 +
 meta-yocto/conf/machine/mpc8315e-rdb.conf          |    2 ++
 .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |    4 ++--
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta-yocto/conf/machine/atom-pc.conf b/meta-yocto/conf/machine/atom-pc.conf
index a0a8104..81542dd 100644
--- a/meta-yocto/conf/machine/atom-pc.conf
+++ b/meta-yocto/conf/machine/atom-pc.conf
@@ -11,6 +11,7 @@ MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 x86 wifi \
 KERNEL_IMAGETYPE = "bzImage"
 
 PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
+PREFERRED_VERSION_linux-yocto ?= "3.0+git%"
 #PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto"
 PREFERRED_PROVIDER_virtual/libx11 ?= "libx11-trim"
 PREFERRED_PROVIDER_virtual/libgl  ?= "mesa-dri"
diff --git a/meta-yocto/conf/machine/mpc8315e-rdb.conf b/meta-yocto/conf/machine/mpc8315e-rdb.conf
index 172deec..21fbb71 100644
--- a/meta-yocto/conf/machine/mpc8315e-rdb.conf
+++ b/meta-yocto/conf/machine/mpc8315e-rdb.conf
@@ -11,6 +11,8 @@ SERIAL_CONSOLE = "115200 ttyS0"
 
 MACHINE_FEATURES = "kernel26 keyboard pci ext2 ext3 serial"
 
+PREFERRED_VERSION_linux-yocto ?= "3.0+git%"
+
 PREFERRED_PROVIDER_virtual/kernel = "linux-yocto"
 #PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto"
 PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive"
diff --git a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
index ef580a5..e224d80 100644
--- a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -9,7 +9,7 @@ SRCREV_machine_routerstationpro = "fd6d538850a28413e3c4867b905c56039773df3a"
 SRCREV_machine_mpc8315e-rdb = "5d3c0b06071abd663c7790df141060ae462660a9"
 SRCREV_machine_beagleboard = "32631d785b0b907e5c14435ef7531ed041ab8c64"
 
-# COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
+COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
 # COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
 # COMPATIBLE_MACHINE_beagleboard = "beagleboard"
-# COMPATIBLE_MACHINE_atom-pc = "atom-pc"
+COMPATIBLE_MACHINE_atom-pc = "atom-pc"
-- 
1.7.4.1



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

* [PATCH 2/2] linux-yocto/meta-yocto: update SRCREVs for 3.0.3
  2011-08-19  5:26 [PATCH 0/2] meta-yocto/linux-yocto updates Bruce Ashfield
  2011-08-19  5:26 ` [PATCH 1/2] meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0 Bruce Ashfield
@ 2011-08-19  5:26 ` Bruce Ashfield
  2011-08-20  5:10 ` [PATCH 0/2] meta-yocto/linux-yocto updates Bruce Ashfield
  2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-08-19  5:26 UTC (permalink / raw)
  To: richard.purdie; +Cc: poky, saul.wold

Updating the SRCREVs to pickup the kernel.org -stable update for
3.0.3

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
index e224d80..a0ae1ab 100644
--- a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -3,11 +3,11 @@ KMACHINE_routerstationpro = "yocto/standard/routerstationpro"
 KMACHINE_mpc8315e-rdb = "yocto/standard/fsl-mpc8315e-rdb"
 KMACHINE_beagleboard = "yocto/standard/beagleboard"
 
-SRCREV_machine_emenlow = "374340f311d7b035451f45e29bab5e1b8c058ce8"
-SRCREV_machine_atom-pc = "fdd23ed909594ba6c32c894ee6536cf823b0377f"
-SRCREV_machine_routerstationpro = "fd6d538850a28413e3c4867b905c56039773df3a"
-SRCREV_machine_mpc8315e-rdb = "5d3c0b06071abd663c7790df141060ae462660a9"
-SRCREV_machine_beagleboard = "32631d785b0b907e5c14435ef7531ed041ab8c64"
+SRCREV_machine_emenlow = "102a649046f1badacbefe27df487eda0f04d1dd1"
+SRCREV_machine_atom-pc = "c54453332efbd86c2ea3caa64e908b39cfac1e76"
+SRCREV_machine_routerstationpro = "1e268b8f2074f528f33d8f8426cbee41c33f5650"
+SRCREV_machine_mpc8315e-rdb = "022493ebcaac08af5751fb36668a6a08cf2fc820"
+SRCREV_machine_beagleboard = "ff28d92f1af586924e85ce3e625dfef06ed9c022"
 
 COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
 # COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
-- 
1.7.4.1



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

* Re: [PATCH 0/2] meta-yocto/linux-yocto updates
  2011-08-19  5:26 [PATCH 0/2] meta-yocto/linux-yocto updates Bruce Ashfield
  2011-08-19  5:26 ` [PATCH 1/2] meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0 Bruce Ashfield
  2011-08-19  5:26 ` [PATCH 2/2] linux-yocto/meta-yocto: update SRCREVs for 3.0.3 Bruce Ashfield
@ 2011-08-20  5:10 ` Bruce Ashfield
  2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-08-20  5:10 UTC (permalink / raw)
  To: richard.purdie; +Cc: poky, saul.wold

On Fri, Aug 19, 2011 at 1:26 AM, Bruce Ashfield
<bruce.ashfield@windriver.com> wrote:
> Richard/Saul,
>
> These updates switch the mpc8315e-rdb and atom-pc to use the 3.0.3
> kernel as their default preference, and as such also update the
> SRCREVs to 3.0.3 for these boards.
>
> These are based on top of a similar set of changes destined for
> linux-yocto in oe-core.
>
> The following changes since commit 180e52d7b1b6754d91a98b09cb3d9ebe702feaec:
>
>  linux-yocto: update SRCREVs for 3.0.3 (2011-08-19 01:02:06 -0400)
>
> are available in the git repository at:
>  git://git.pokylinux.org/poky-contrib zedd/kernel-yocto
>  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-yocto
>
> Bruce Ashfield (2):
>  meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0

This series was re-pushed on top of my oe-core updated series, with the
only change being that the preferred version string is now "3.0%"

Bruce

>  linux-yocto/meta-yocto: update SRCREVs for 3.0.3
>
>  meta-yocto/conf/machine/atom-pc.conf               |    1 +
>  meta-yocto/conf/machine/mpc8315e-rdb.conf          |    2 ++
>  .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |   14 +++++++-------
>  3 files changed, 10 insertions(+), 7 deletions(-)
>
> --
> 1.7.4.1
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>



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


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

end of thread, other threads:[~2011-08-20  5:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-19  5:26 [PATCH 0/2] meta-yocto/linux-yocto updates Bruce Ashfield
2011-08-19  5:26 ` [PATCH 1/2] meta-yocto: atom-pc/mpc8315e-rdb change preferred version to 3.0 Bruce Ashfield
2011-08-19  5:26 ` [PATCH 2/2] linux-yocto/meta-yocto: update SRCREVs for 3.0.3 Bruce Ashfield
2011-08-20  5:10 ` [PATCH 0/2] meta-yocto/linux-yocto updates 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.