* [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard
@ 2011-12-22 18:12 Bruce Ashfield
2011-12-22 18:12 ` [PATCH 1/2] linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x support Bruce Ashfield
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-12-22 18:12 UTC (permalink / raw)
To: richard.purdie; +Cc: poky, saul.wold
Richard/Saul,
This is a follow on to my oe-core pull request for fixes and updates
to the kernel. This change bumps the preferred kernel for the yocto
beagleboard and routerstationpro support to 3.0.x and fixes the -rt
support for the routerstationpro.
Cheers,
Bruce
The following changes since commit 906567682d06d8de1915b78ddf6128cd7bda6adc:
linux-yocto: use PATH to locate kconf_check (2011-12-22 12:15:25 -0500)
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):
linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x
support
linux-yocto-rt/meta-yocto: add routerstationpro support
meta-yocto/conf/machine/beagleboard.conf | 1 +
meta-yocto/conf/machine/routerstationpro.conf | 1 +
.../linux/linux-yocto-rt_3.0.bbappend | 8 ++++----
.../recipes-kernel/linux/linux-yocto_3.0.bbappend | 8 ++++----
4 files changed, 10 insertions(+), 8 deletions(-)
--
1.7.4.1
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/2] linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x support
2011-12-22 18:12 [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Bruce Ashfield
@ 2011-12-22 18:12 ` Bruce Ashfield
2011-12-22 18:12 ` [PATCH 2/2] linux-yocto-rt/meta-yocto: add routerstationpro support Bruce Ashfield
2012-01-03 22:12 ` [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-12-22 18:12 UTC (permalink / raw)
To: richard.purdie; +Cc: poky, saul.wold
Updating the routerstationpro and beagleboard compatibility and SRCREV
to pickup v3.0.12 support.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta-yocto/conf/machine/beagleboard.conf | 1 +
meta-yocto/conf/machine/routerstationpro.conf | 1 +
.../recipes-kernel/linux/linux-yocto_3.0.bbappend | 8 ++++----
3 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/meta-yocto/conf/machine/beagleboard.conf b/meta-yocto/conf/machine/beagleboard.conf
index 4d21388..dd549d0 100644
--- a/meta-yocto/conf/machine/beagleboard.conf
+++ b/meta-yocto/conf/machine/beagleboard.conf
@@ -32,6 +32,7 @@ EXTRA_IMAGECMD_jffs2 = "-lnp "
SERIAL_CONSOLE = "115200 ttyO2"
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
+PREFERRED_VERSION_linux-yocto ?= "3.0%"
KERNEL_IMAGETYPE = "uImage"
diff --git a/meta-yocto/conf/machine/routerstationpro.conf b/meta-yocto/conf/machine/routerstationpro.conf
index 9338ca1..83c2f8a 100644
--- a/meta-yocto/conf/machine/routerstationpro.conf
+++ b/meta-yocto/conf/machine/routerstationpro.conf
@@ -11,6 +11,7 @@ KERNEL_IMAGETYPE = "vmlinux"
KERNEL_ALT_IMAGETYPE = "vmlinux.bin"
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
+PREFERRED_VERSION_linux-yocto ?= "3.0%"
PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive"
XSERVER = "xserver-kdrive-fbdev"
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 4f68bc1..e510880 100644
--- a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -5,11 +5,11 @@ KMACHINE_beagleboard = "yocto/standard/beagleboard"
SRCREV_machine_atom-pc ?= "1e18e44adbe79b846e382370eb29bc4b8cd5a1a0"
-SRCREV_machine_routerstationpro ?= "ed0e03a8b04388a982141919da805392b7ca1c91"
+SRCREV_machine_routerstationpro ?= "8f38705810634a84326d3a3ebe9653951aa4bf61"
SRCREV_machine_mpc8315e-rdb ?= "58ffdb8000e34d2ba7c3ef278b26680b0886e8b5"
-SRCREV_machine_beagleboard ?= "2bba211297d10047637b8f49abd2c5415480ce4d"
+SRCREV_machine_beagleboard ?= "6b4bf6173b0bd2d1619a8218bac66ebc4681dd35"
COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
-# COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
-# COMPATIBLE_MACHINE_beagleboard = "beagleboard"
+COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
+COMPATIBLE_MACHINE_beagleboard = "beagleboard"
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-rt/meta-yocto: add routerstationpro support
2011-12-22 18:12 [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Bruce Ashfield
2011-12-22 18:12 ` [PATCH 1/2] linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x support Bruce Ashfield
@ 2011-12-22 18:12 ` Bruce Ashfield
2012-01-03 22:12 ` [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-12-22 18:12 UTC (permalink / raw)
To: richard.purdie; +Cc: poky, saul.wold
Fixes [YOCTO #1390]
Updated the meta-yocto support for the routerstationpro on the
preempt-rt kernel support.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
.../linux/linux-yocto-rt_3.0.bbappend | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta-yocto/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend b/meta-yocto/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
index ab0f24c..831df8d 100644
--- a/meta-yocto/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
+++ b/meta-yocto/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend
@@ -19,7 +19,7 @@ SRCREV_machine_pn-linux-yocto-rt_mpc8315e-rdb = "0b805cce57f61a244eb3b8fce460b14
#SRCREV_machine_pn-linux-yocto-rt_beagleboard =
# routerstationpro support - preempt-rt kernel build failure
-#COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
-#KMACHINE_routerstationpro = "routerstationpro"
-#KBRANCH_routerstationpro = "yocto/standard/preempt-rt/base"
-#SRCREV_machine_pn-linux-yocto-rt_routerstationpro = "7e1e5b6c8a13c615feb0d7b6d37988a094aae98f"
+COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
+KMACHINE_routerstationpro = "routerstationpro"
+KBRANCH_routerstationpro = "yocto/standard/preempt-rt/routerstationpro"
+SRCREV_machine_pn-linux-yocto-rt_routerstationpro = "43dcdffebb64d9ce2f5cdcb18bb74bd9c301133f"
--
1.7.4.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard
2011-12-22 18:12 [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Bruce Ashfield
2011-12-22 18:12 ` [PATCH 1/2] linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x support Bruce Ashfield
2011-12-22 18:12 ` [PATCH 2/2] linux-yocto-rt/meta-yocto: add routerstationpro support Bruce Ashfield
@ 2012-01-03 22:12 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-01-03 22:12 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: poky
On 12/22/2011 10:12 AM, Bruce Ashfield wrote:
> Richard/Saul,
>
> This is a follow on to my oe-core pull request for fixes and updates
> to the kernel. This change bumps the preferred kernel for the yocto
> beagleboard and routerstationpro support to 3.0.x and fixes the -rt
> support for the routerstationpro.
>
> Cheers,
>
> Bruce
>
>
> The following changes since commit 906567682d06d8de1915b78ddf6128cd7bda6adc:
>
> linux-yocto: use PATH to locate kconf_check (2011-12-22 12:15:25 -0500)
>
> 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):
> linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x
> support
> linux-yocto-rt/meta-yocto: add routerstationpro support
>
> meta-yocto/conf/machine/beagleboard.conf | 1 +
> meta-yocto/conf/machine/routerstationpro.conf | 1 +
> .../linux/linux-yocto-rt_3.0.bbappend | 8 ++++----
> .../recipes-kernel/linux/linux-yocto_3.0.bbappend | 8 ++++----
> 4 files changed, 10 insertions(+), 8 deletions(-)
>
Merged into Poky Master
Thanks
Sau!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-01-03 22:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-22 18:12 [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Bruce Ashfield
2011-12-22 18:12 ` [PATCH 1/2] linux-yocto/meta-yocto: routerstationpro/beagleboard: add 3.0.x support Bruce Ashfield
2011-12-22 18:12 ` [PATCH 2/2] linux-yocto-rt/meta-yocto: add routerstationpro support Bruce Ashfield
2012-01-03 22:12 ` [PATCH 0/2] linux-yocto/meta-yocto: update routerstationpro & beagleboard Saul Wold
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.