All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-yocto][PATCH 1/3] linux-yocto: update genericx86* SRCREVs for v4.12
@ 2018-02-20  0:33 Anuj Mittal
  2018-02-20  0:33 ` [meta-yocto][PATCH 2/3] linux-yocto: introduce 4.14 bbappend for genericx86* BSPs Anuj Mittal
  2018-02-20  0:33 ` [meta-yocto][PATCH 3/3] linux-yocto: introduce 4.15 " Anuj Mittal
  0 siblings, 2 replies; 3+ messages in thread
From: Anuj Mittal @ 2018-02-20  0:33 UTC (permalink / raw)
  To: poky

Bump to stable kernel release 4.12.20

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.12.bbappend | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.12.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.12.bbappend
index 2375874..0740d9d 100644
--- a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.12.bbappend
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.12.bbappend
@@ -8,8 +8,8 @@ KBRANCH_beaglebone-yocto = "standard/beaglebone"
 KMACHINE_beaglebone-yocto = "beaglebone"
 KBRANCH_mpc8315e-rdb = "standard/fsl-mpc8315e-rdb"
 
-SRCREV_machine_genericx86    ?= "257f843ea367744620f1d92910afd2f454e31483"
-SRCREV_machine_genericx86-64 ?= "257f843ea367744620f1d92910afd2f454e31483"
+SRCREV_machine_genericx86    ?= "1c4ad569af3e23a77994235435040e322908687f"
+SRCREV_machine_genericx86-64 ?= "1c4ad569af3e23a77994235435040e322908687f"
 SRCREV_machine_edgerouter ?= "257f843ea367744620f1d92910afd2f454e31483"
 SRCREV_machine_beaglebone-yocto ?= "257f843ea367744620f1d92910afd2f454e31483"
 SRCREV_machine_mpc8315e-rdb ?= "014560874f9eb2a86138c9cc35046ff1720485e1"
@@ -21,8 +21,8 @@ COMPATIBLE_MACHINE_edgerouter = "edgerouter"
 COMPATIBLE_MACHINE_beaglebone-yocto = "beaglebone-yocto"
 COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
 
-LINUX_VERSION_genericx86 = "4.12.19"
-LINUX_VERSION_genericx86-64 = "4.12.19"
+LINUX_VERSION_genericx86 = "4.12.20"
+LINUX_VERSION_genericx86-64 = "4.12.20"
 LINUX_VERSION_edgerouter = "4.12.19"
 LINUX_VERSION_beaglebone-yocto = "4.12.19"
 LINUX_VERSION_mpc8315e-rdb = "4.12.19"
-- 
2.7.4



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

* [meta-yocto][PATCH 2/3] linux-yocto: introduce 4.14 bbappend for genericx86* BSPs
  2018-02-20  0:33 [meta-yocto][PATCH 1/3] linux-yocto: update genericx86* SRCREVs for v4.12 Anuj Mittal
@ 2018-02-20  0:33 ` Anuj Mittal
  2018-02-20  0:33 ` [meta-yocto][PATCH 3/3] linux-yocto: introduce 4.15 " Anuj Mittal
  1 sibling, 0 replies; 3+ messages in thread
From: Anuj Mittal @ 2018-02-20  0:33 UTC (permalink / raw)
  To: poky

Sync with stable kernel release 4.14.19 in oe-core.

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../recipes-kernel/linux/linux-yocto_4.14.bbappend         | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.14.bbappend

diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.14.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.14.bbappend
new file mode 100644
index 0000000..e3a6963
--- /dev/null
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.14.bbappend
@@ -0,0 +1,14 @@
+KBRANCH_genericx86  = "v4.14/standard/base"
+KBRANCH_genericx86-64  = "v4.14/standard/base"
+
+KMACHINE_genericx86 ?= "common-pc"
+KMACHINE_genericx86-64 ?= "common-pc-64"
+
+SRCREV_machine_genericx86    ?= "537602db26fe2d26c1959f1ecb43966770c10ff2"
+SRCREV_machine_genericx86-64 ?= "537602db26fe2d26c1959f1ecb43966770c10ff2"
+
+COMPATIBLE_MACHINE_genericx86 = "genericx86"
+COMPATIBLE_MACHINE_genericx86-64 = "genericx86-64"
+
+LINUX_VERSION_genericx86 = "4.14.19"
+LINUX_VERSION_genericx86-64 = "4.14.19"
-- 
2.7.4



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

* [meta-yocto][PATCH 3/3] linux-yocto: introduce 4.15 bbappend for genericx86* BSPs
  2018-02-20  0:33 [meta-yocto][PATCH 1/3] linux-yocto: update genericx86* SRCREVs for v4.12 Anuj Mittal
  2018-02-20  0:33 ` [meta-yocto][PATCH 2/3] linux-yocto: introduce 4.14 bbappend for genericx86* BSPs Anuj Mittal
@ 2018-02-20  0:33 ` Anuj Mittal
  1 sibling, 0 replies; 3+ messages in thread
From: Anuj Mittal @ 2018-02-20  0:33 UTC (permalink / raw)
  To: poky

Sync with stable kernel release 4.15.3 in oe-core.

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../recipes-kernel/linux/linux-yocto_4.15.bbappend         | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.15.bbappend

diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.15.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.15.bbappend
new file mode 100644
index 0000000..a30a924
--- /dev/null
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.15.bbappend
@@ -0,0 +1,14 @@
+KBRANCH_genericx86  = "v4.15/standard/base"
+KBRANCH_genericx86-64  = "v4.15/standard/base"
+
+KMACHINE_genericx86 ?= "common-pc"
+KMACHINE_genericx86-64 ?= "common-pc-64"
+
+SRCREV_machine_genericx86    ?= "a6a3a6a73d628798fc6eb6832bf829a9ea43f6bd"
+SRCREV_machine_genericx86-64 ?= "a6a3a6a73d628798fc6eb6832bf829a9ea43f6bd"
+
+COMPATIBLE_MACHINE_genericx86 = "genericx86"
+COMPATIBLE_MACHINE_genericx86-64 = "genericx86-64"
+
+LINUX_VERSION_genericx86 = "4.15.3"
+LINUX_VERSION_genericx86-64 = "4.15.3"
-- 
2.7.4



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

end of thread, other threads:[~2018-02-20  0:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-20  0:33 [meta-yocto][PATCH 1/3] linux-yocto: update genericx86* SRCREVs for v4.12 Anuj Mittal
2018-02-20  0:33 ` [meta-yocto][PATCH 2/3] linux-yocto: introduce 4.14 bbappend for genericx86* BSPs Anuj Mittal
2018-02-20  0:33 ` [meta-yocto][PATCH 3/3] linux-yocto: introduce 4.15 " Anuj Mittal

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.