All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] Use */intel branches in genericX86 BSPs
@ 2016-05-25 18:32 Tom Zanussi
  2016-05-25 18:32 ` [PATCH 1/4] meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to standard/intel Tom Zanussi
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Tom Zanussi @ 2016-05-25 18:32 UTC (permalink / raw)
  To: poky, alejandro.hernandez

In order to provide more timely support for Intel platforms, this
patchset switches the genericX86 BSPs over to using a set of dedicated
*/intel branches created for linux-yocto 4.1 and 4.4 kernels.

These branches and the corresponding kernel metadata branches provide
a place to add Intel-specific features and updates which aren't yet
upstream or may never go upstream but nevertheless are useful for
various users.

In order to have all Intel-related BSPs derive from a common source,
the genericX86 BSPs (in addition to the meta-intel BSPs) are being
switched over to these branches - there should be no loss in
functionality by doing so.

The following changes since commit 28433319ad8299aa23b1fcfdddbe100b29e86517:

  bitbake: toaster: tests browser Add test for creating a project (2016-05-11 11:32:58 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib tzanussi/intel-branches
  http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/intel-branches

Tom Zanussi (4):
  meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to
    standard/intel
  meta-yocto-bsp: Switch linux-yocto 4.1 genericx86* BSPs to
    standard/intel
  linux-yocto/4.1: Make standard/intel branches available
  linux-yocto/4.4: Make standard/intel branches available

 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend | 8 ++++----
 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend | 8 ++++----
 meta/recipes-kernel/linux/linux-yocto_4.1.bb                 | 2 +-
 meta/recipes-kernel/linux/linux-yocto_4.4.bb                 | 2 +-
 4 files changed, 10 insertions(+), 10 deletions(-)

-- 
1.9.3



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

* [PATCH 1/4] meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to standard/intel
  2016-05-25 18:32 [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
@ 2016-05-25 18:32 ` Tom Zanussi
  2016-05-25 18:32 ` [PATCH 2/4] meta-yocto-bsp: Switch linux-yocto 4.1 " Tom Zanussi
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Zanussi @ 2016-05-25 18:32 UTC (permalink / raw)
  To: poky, alejandro.hernandez

There is now a dedicated standard/intel branch for Intel platforms, so
have the genericx86* BSPs use it.

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend
index e31b0c8..cb3d1aa 100644
--- a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend
@@ -1,5 +1,5 @@
-KBRANCH_genericx86  = "standard/base"
-KBRANCH_genericx86-64  = "standard/base"
+KBRANCH_genericx86  = "standard/intel"
+KBRANCH_genericx86-64  = "standard/intel"
 
 KMACHINE_genericx86 ?= "common-pc"
 KMACHINE_genericx86-64 ?= "common-pc-64"
@@ -7,8 +7,8 @@ KBRANCH_edgerouter = "standard/edgerouter"
 KBRANCH_beaglebone = "standard/beaglebone"
 KBRANCH_mpc8315e-rdb = "standard/fsl-mpc8315e-rdb"
 
-SRCREV_machine_genericx86    ?= "3d2455f9da30f923c6bd69014fad4cc4ea738be6"
-SRCREV_machine_genericx86-64 ?= "3d2455f9da30f923c6bd69014fad4cc4ea738be6"
+SRCREV_machine_genericx86    ?= "578ff2a88676d20439dbf3877768370d06a22d8f"
+SRCREV_machine_genericx86-64 ?= "578ff2a88676d20439dbf3877768370d06a22d8f"
 SRCREV_machine_edgerouter ?= "ff4c4ef15b51f45b9106d71bf1f62fe7c02e63c2"
 SRCREV_machine_beaglebone ?= "ff4c4ef15b51f45b9106d71bf1f62fe7c02e63c2"
 SRCREV_machine_mpc8315e-rdb ?= "df00877ef9387b38b9601c82db57de2a1b23ce53"
-- 
1.9.3



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

* [PATCH 2/4] meta-yocto-bsp: Switch linux-yocto 4.1 genericx86* BSPs to standard/intel
  2016-05-25 18:32 [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
  2016-05-25 18:32 ` [PATCH 1/4] meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to standard/intel Tom Zanussi
@ 2016-05-25 18:32 ` Tom Zanussi
  2016-05-25 18:32 ` [PATCH 3/4] linux-yocto/4.1: Make standard/intel branches available Tom Zanussi
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Zanussi @ 2016-05-25 18:32 UTC (permalink / raw)
  To: poky, alejandro.hernandez

There is now a dedicated standard/intel branch for Intel platforms, so
have the genericx86* BSPs use it.

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend
index b20a18b..6029693 100644
--- a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend
@@ -1,5 +1,5 @@
-KBRANCH_genericx86  = "standard/base"
-KBRANCH_genericx86-64  = "standard/base"
+KBRANCH_genericx86  = "standard/intel"
+KBRANCH_genericx86-64  = "standard/intel"
 KBRANCH_edgerouter = "standard/edgerouter"
 KBRANCH_beaglebone = "standard/beaglebone"
 KBRANCH_mpc8315e-rdb = "standard/fsl-mpc8315e-rdb"
@@ -7,8 +7,8 @@ KBRANCH_mpc8315e-rdb = "standard/fsl-mpc8315e-rdb"
 KMACHINE_genericx86 ?= "common-pc"
 KMACHINE_genericx86-64 ?= "common-pc-64"
 
-SRCREV_machine_genericx86    ?= "304caa9480f19875e717faf3cad8cb7ecd758733"
-SRCREV_machine_genericx86-64 ?= "304caa9480f19875e717faf3cad8cb7ecd758733"
+SRCREV_machine_genericx86    ?= "d03753ddb28a1141e550a67c99ac95789a424fc5"
+SRCREV_machine_genericx86-64 ?= "d03753ddb28a1141e550a67c99ac95789a424fc5"
 SRCREV_machine_edgerouter ?= "79a31b9d23db126f8a6be3eb88fd683056a213f1"
 SRCREV_machine_beaglebone ?= "efb6ffb2ca96a364f916c9890ad023fc595e0e6e"
 SRCREV_machine_mpc8315e-rdb ?= "79a31b9d23db126f8a6be3eb88fd683056a213f1"
-- 
1.9.3



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

* [PATCH 3/4] linux-yocto/4.1: Make standard/intel branches available
  2016-05-25 18:32 [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
  2016-05-25 18:32 ` [PATCH 1/4] meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to standard/intel Tom Zanussi
  2016-05-25 18:32 ` [PATCH 2/4] meta-yocto-bsp: Switch linux-yocto 4.1 " Tom Zanussi
@ 2016-05-25 18:32 ` Tom Zanussi
  2016-05-25 18:32 ` [PATCH 4/4] linux-yocto/4.4: " Tom Zanussi
  2016-05-25 18:44 ` [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Zanussi @ 2016-05-25 18:32 UTC (permalink / raw)
  To: poky, alejandro.hernandez

meta-yocto-bsp BSPs inherit SRCREV_meta - update it to include some
new branches for the BSPs there.

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
 meta/recipes-kernel/linux/linux-yocto_4.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto_4.1.bb b/meta/recipes-kernel/linux/linux-yocto_4.1.bb
index 5d6bd3d..801a2c0 100644
--- a/meta/recipes-kernel/linux/linux-yocto_4.1.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_4.1.bb
@@ -19,7 +19,7 @@ SRCREV_machine_qemux86 ?= "d03753ddb28a1141e550a67c99ac95789a424fc5"
 SRCREV_machine_qemux86-64 ?= "d03753ddb28a1141e550a67c99ac95789a424fc5"
 SRCREV_machine_qemumips64 ?= "351bc6968f63ea6f27cbd7f1678ddc53a9168fd1"
 SRCREV_machine ?= "d03753ddb28a1141e550a67c99ac95789a424fc5"
-SRCREV_meta ?= "2bdebd11f1a0bc00071ec1467289a7feb5418dde"
+SRCREV_meta ?= "0b74ce56549e915237c35965e13aa3c034236180"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-4.1.git;name=machine;branch=${KBRANCH}; \
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.1;destsuffix=${KMETA}"
-- 
1.9.3



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

* [PATCH 4/4] linux-yocto/4.4: Make standard/intel branches available
  2016-05-25 18:32 [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
                   ` (2 preceding siblings ...)
  2016-05-25 18:32 ` [PATCH 3/4] linux-yocto/4.1: Make standard/intel branches available Tom Zanussi
@ 2016-05-25 18:32 ` Tom Zanussi
  2016-05-25 18:44 ` [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Zanussi @ 2016-05-25 18:32 UTC (permalink / raw)
  To: poky, alejandro.hernandez

meta-yocto-bsp BSPs inherit SRCREV_meta - update it to include some
new branches for the BSPs there.

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
 meta/recipes-kernel/linux/linux-yocto_4.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto_4.4.bb b/meta/recipes-kernel/linux/linux-yocto_4.4.bb
index b74903e..502e491 100644
--- a/meta/recipes-kernel/linux/linux-yocto_4.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_4.4.bb
@@ -19,7 +19,7 @@ SRCREV_machine_qemux86 ?= "b18090556c1d1b449233cd555c27a04d38272d6d"
 SRCREV_machine_qemux86-64 ?= "b18090556c1d1b449233cd555c27a04d38272d6d"
 SRCREV_machine_qemumips64 ?= "3a1c6d7576908a2dd21746b1d4ab4f43b83cd824"
 SRCREV_machine ?= "b18090556c1d1b449233cd555c27a04d38272d6d"
-SRCREV_meta ?= "9ab4787fe2aea2ae0fcc31a5e067eaba19ef64c8"
+SRCREV_meta ?= "8f2a3ab2cd6f941052655e175f6e283e2880e562"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto-4.4.git;name=machine;branch=${KBRANCH}; \
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.4;destsuffix=${KMETA}"
-- 
1.9.3



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

* Re: [PATCH 0/4] Use */intel branches in genericX86 BSPs
  2016-05-25 18:32 [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
                   ` (3 preceding siblings ...)
  2016-05-25 18:32 ` [PATCH 4/4] linux-yocto/4.4: " Tom Zanussi
@ 2016-05-25 18:44 ` Tom Zanussi
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Zanussi @ 2016-05-25 18:44 UTC (permalink / raw)
  To: poky, alejandro.hernandez

Just FYI, once the changes have been made to linux-yocto, I'll resubmit
these with the correct SRCREVs - for now these are just FYI, please
don't merge them yet.

Tom

On 05/25/2016 01:32 PM, Tom Zanussi wrote:
> In order to provide more timely support for Intel platforms, this
> patchset switches the genericX86 BSPs over to using a set of dedicated
> */intel branches created for linux-yocto 4.1 and 4.4 kernels.
> 
> These branches and the corresponding kernel metadata branches provide
> a place to add Intel-specific features and updates which aren't yet
> upstream or may never go upstream but nevertheless are useful for
> various users.
> 
> In order to have all Intel-related BSPs derive from a common source,
> the genericX86 BSPs (in addition to the meta-intel BSPs) are being
> switched over to these branches - there should be no loss in
> functionality by doing so.
> 
> The following changes since commit 28433319ad8299aa23b1fcfdddbe100b29e86517:
> 
>   bitbake: toaster: tests browser Add test for creating a project (2016-05-11 11:32:58 +0100)
> 
> are available in the git repository at:
> 
>   git://git.yoctoproject.org/poky-contrib tzanussi/intel-branches
>   http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/intel-branches
> 
> Tom Zanussi (4):
>   meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to
>     standard/intel
>   meta-yocto-bsp: Switch linux-yocto 4.1 genericx86* BSPs to
>     standard/intel
>   linux-yocto/4.1: Make standard/intel branches available
>   linux-yocto/4.4: Make standard/intel branches available
> 
>  meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.1.bbappend | 8 ++++----
>  meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.4.bbappend | 8 ++++----
>  meta/recipes-kernel/linux/linux-yocto_4.1.bb                 | 2 +-
>  meta/recipes-kernel/linux/linux-yocto_4.4.bb                 | 2 +-
>  4 files changed, 10 insertions(+), 10 deletions(-)
> 



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

end of thread, other threads:[~2016-05-25 18:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-25 18:32 [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi
2016-05-25 18:32 ` [PATCH 1/4] meta-yocto-bsp: Switch linux-yocto 4.4 genericx86* BSPs to standard/intel Tom Zanussi
2016-05-25 18:32 ` [PATCH 2/4] meta-yocto-bsp: Switch linux-yocto 4.1 " Tom Zanussi
2016-05-25 18:32 ` [PATCH 3/4] linux-yocto/4.1: Make standard/intel branches available Tom Zanussi
2016-05-25 18:32 ` [PATCH 4/4] linux-yocto/4.4: " Tom Zanussi
2016-05-25 18:44 ` [PATCH 0/4] Use */intel branches in genericX86 BSPs Tom Zanussi

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.