* [PATCH 0/4] genericx86 and genericx86-64 kernel update
@ 2017-03-01 23:51 Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 1/4] linux-yocto: Adds new bbappend to support 4.10 on genericx86 and genericx86-64 platforms Alejandro Hernandez
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Alejandro Hernandez @ 2017-03-01 23:51 UTC (permalink / raw)
To: poky
This updates the preferred version for both genericx86 and genericx86-64 MACHINES
to use kernel 4.10, and also updates the SRCREVs for kernel 4.9 to upgrade to
linux 4.9.13
The following changes since commit c854c3feeb48132cb92e4a686adb8d127b4a117e:
yocto-bsp: remove 4.4 bbappend (2017-02-27 17:24:16 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib hsalejandro/genx86_master_kernel
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=hsalejandro/genx86_master_kernel
Alejandro Hernandez (4):
linux-yocto: Adds new bbappend to support 4.10 on genericx86 and
genericx86-64 platforms
genericx86: Updates PREFERRED_VERSION to use kernel 4.10
genericx86-64: Updates PREFERRED_VERSION to use kernel 4.10
linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.9
meta-yocto-bsp/conf/machine/genericx86-64.conf | 2 +-
meta-yocto-bsp/conf/machine/genericx86.conf | 2 +-
.../recipes-kernel/linux/linux-yocto_4.10.bbappend | 14 ++++++++++++++
.../recipes-kernel/linux/linux-yocto_4.9.bbappend | 8 ++++----
4 files changed, 20 insertions(+), 6 deletions(-)
create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.10.bbappend
--
2.10.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/4] linux-yocto: Adds new bbappend to support 4.10 on genericx86 and genericx86-64 platforms
2017-03-01 23:51 [PATCH 0/4] genericx86 and genericx86-64 kernel update Alejandro Hernandez
@ 2017-03-01 23:51 ` Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 2/4] genericx86: Updates PREFERRED_VERSION to use kernel 4.10 Alejandro Hernandez
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Alejandro Hernandez @ 2017-03-01 23:51 UTC (permalink / raw)
To: poky
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
---
.../recipes-kernel/linux/linux-yocto_4.10.bbappend | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.10.bbappend
diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.10.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.10.bbappend
new file mode 100644
index 0000000..976cee3
--- /dev/null
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.10.bbappend
@@ -0,0 +1,14 @@
+KBRANCH_genericx86 = "standard/base"
+KBRANCH_genericx86-64 = "standard/base"
+
+KMACHINE_genericx86 ?= "common-pc"
+KMACHINE_genericx86-64 ?= "common-pc-64"
+
+SRCREV_machine_genericx86 ?= "b259a5d744e8955a03405c6b59c5a61724755ea8"
+SRCREV_machine_genericx86-64 ?= "b259a5d744e8955a03405c6b59c5a61724755ea8"
+
+COMPATIBLE_MACHINE_genericx86 = "genericx86"
+COMPATIBLE_MACHINE_genericx86-64 = "genericx86-64"
+
+LINUX_VERSION_genericx86 = "4.10"
+LINUX_VERSION_genericx86-64 = "4.10"
--
2.10.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/4] genericx86: Updates PREFERRED_VERSION to use kernel 4.10
2017-03-01 23:51 [PATCH 0/4] genericx86 and genericx86-64 kernel update Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 1/4] linux-yocto: Adds new bbappend to support 4.10 on genericx86 and genericx86-64 platforms Alejandro Hernandez
@ 2017-03-01 23:51 ` Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 3/4] genericx86-64: " Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 4/4] linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.9 Alejandro Hernandez
3 siblings, 0 replies; 5+ messages in thread
From: Alejandro Hernandez @ 2017-03-01 23:51 UTC (permalink / raw)
To: poky
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
---
meta-yocto-bsp/conf/machine/genericx86.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-yocto-bsp/conf/machine/genericx86.conf b/meta-yocto-bsp/conf/machine/genericx86.conf
index 04a7e0b..34a52c3 100644
--- a/meta-yocto-bsp/conf/machine/genericx86.conf
+++ b/meta-yocto-bsp/conf/machine/genericx86.conf
@@ -9,4 +9,4 @@ require conf/machine/include/genericx86-common.inc
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "gma500-gfx-check"
-PREFERRED_VERSION_linux-yocto_genericx86 ?= "4.8%"
+PREFERRED_VERSION_linux-yocto_genericx86 ?= "4.10%"
--
2.10.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/4] genericx86-64: Updates PREFERRED_VERSION to use kernel 4.10
2017-03-01 23:51 [PATCH 0/4] genericx86 and genericx86-64 kernel update Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 1/4] linux-yocto: Adds new bbappend to support 4.10 on genericx86 and genericx86-64 platforms Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 2/4] genericx86: Updates PREFERRED_VERSION to use kernel 4.10 Alejandro Hernandez
@ 2017-03-01 23:51 ` Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 4/4] linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.9 Alejandro Hernandez
3 siblings, 0 replies; 5+ messages in thread
From: Alejandro Hernandez @ 2017-03-01 23:51 UTC (permalink / raw)
To: poky
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
---
meta-yocto-bsp/conf/machine/genericx86-64.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-yocto-bsp/conf/machine/genericx86-64.conf b/meta-yocto-bsp/conf/machine/genericx86-64.conf
index d843fd2..514265e 100644
--- a/meta-yocto-bsp/conf/machine/genericx86-64.conf
+++ b/meta-yocto-bsp/conf/machine/genericx86-64.conf
@@ -7,6 +7,6 @@ DEFAULTTUNE ?= "core2-64"
require conf/machine/include/tune-core2.inc
require conf/machine/include/genericx86-common.inc
-PREFERRED_VERSION_linux-yocto_genericx86-64 ?= "4.8%"
+PREFERRED_VERSION_linux-yocto_genericx86-64 ?= "4.10%"
SERIAL_CONSOLES_CHECK = "ttyS0"
--
2.10.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 4/4] linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.9
2017-03-01 23:51 [PATCH 0/4] genericx86 and genericx86-64 kernel update Alejandro Hernandez
` (2 preceding siblings ...)
2017-03-01 23:51 ` [PATCH 3/4] genericx86-64: " Alejandro Hernandez
@ 2017-03-01 23:51 ` Alejandro Hernandez
3 siblings, 0 replies; 5+ messages in thread
From: Alejandro Hernandez @ 2017-03-01 23:51 UTC (permalink / raw)
To: poky
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
---
meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend
index bd8f173..b730934 100644
--- a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend
@@ -7,8 +7,8 @@ KBRANCH_edgerouter = "standard/edgerouter"
KBRANCH_beaglebone = "standard/beaglebone"
KBRANCH_mpc8315e-rdb = "standard/fsl-mpc8315e-rdb"
-SRCREV_machine_genericx86 ?= "4700f2f8b9dbaad5ae441b682d04b09e811135fc"
-SRCREV_machine_genericx86-64 ?= "4700f2f8b9dbaad5ae441b682d04b09e811135fc"
+SRCREV_machine_genericx86 ?= "95c0a80ee83f1cf8e59d733f36e8a9dfd50a0098"
+SRCREV_machine_genericx86-64 ?= "95c0a80ee83f1cf8e59d733f36e8a9dfd50a0098"
SRCREV_machine_edgerouter ?= "c85c54f5bf53b98afe8105e91bffcdb6c60afe8f"
SRCREV_machine_beaglebone ?= "c85c54f5bf53b98afe8105e91bffcdb6c60afe8f"
SRCREV_machine_mpc8315e-rdb ?= "6b67f448d63917f5ea306eb293cd9844077e4a61"
@@ -19,8 +19,8 @@ COMPATIBLE_MACHINE_edgerouter = "edgerouter"
COMPATIBLE_MACHINE_beaglebone = "beaglebone"
COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
-LINUX_VERSION_genericx86 = "4.9.6"
-LINUX_VERSION_genericx86-64 = "4.9.6"
+LINUX_VERSION_genericx86 = "4.9.13"
+LINUX_VERSION_genericx86-64 = "4.9.13"
LINUX_VERSION_edgerouter = "4.9.8"
LINUX_VERSION_beaglebone = "4.9.8"
LINUX_VERSION_mpc8315e-rdb = "4.9.8"
--
2.10.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-03-01 23:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-01 23:51 [PATCH 0/4] genericx86 and genericx86-64 kernel update Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 1/4] linux-yocto: Adds new bbappend to support 4.10 on genericx86 and genericx86-64 platforms Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 2/4] genericx86: Updates PREFERRED_VERSION to use kernel 4.10 Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 3/4] genericx86-64: " Alejandro Hernandez
2017-03-01 23:51 ` [PATCH 4/4] linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.9 Alejandro Hernandez
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.