* [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel
@ 2017-02-01 15:43 Bruce Ashfield
2017-02-01 15:43 ` [PATCH 1/2] poky: make 4.9 the preferred qemu version Bruce Ashfield
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Bruce Ashfield @ 2017-02-01 15:43 UTC (permalink / raw)
To: richard.purdie; +Cc: yocto
Hi all,
4.9 has been soaking for a while now, and it is ready (as far as we know) to
be the default for the qemu* machines.
I've also introduced a 4.9 bbappend for the reference BSPs, but have not
confirmed their boot myself. The reference maintainers can follow up with
ack/nak and updates.
I also have patches to remove 4.8, but I'm sitting on them until we know
that switching to 4.9 as the default has gone smoothly.
Bruce
The following changes since commit 58245344b178052e11a0e8b97100e154b1f4d83c:
linux-yocto/4.9: yaffs2 fixes (2017-02-01 09:50:20 -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):
poky: make 4.9 the preferred qemu version
yocto-bsps: add 4.9 bbappend
meta-poky/conf/distro/poky.conf | 14 ++++++------
.../recipes-kernel/linux/linux-yocto_4.9.bbappend | 26 ++++++++++++++++++++++
2 files changed, 33 insertions(+), 7 deletions(-)
create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend
--
2.5.0
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/2] poky: make 4.9 the preferred qemu version
2017-02-01 15:43 [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
@ 2017-02-01 15:43 ` Bruce Ashfield
2017-02-01 15:43 ` [PATCH 2/2] yocto-bsps: add 4.9 bbappend Bruce Ashfield
2017-02-24 19:42 ` [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
2 siblings, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2017-02-01 15:43 UTC (permalink / raw)
To: richard.purdie; +Cc: yocto
4.9 has been selected as the LTS kernel, and has been valided
for all archictures.
We can now make this the default kernel version for qemu.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta-poky/conf/distro/poky.conf | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
index 8fa391458b21..a9b34a280fc7 100644
--- a/meta-poky/conf/distro/poky.conf
+++ b/meta-poky/conf/distro/poky.conf
@@ -21,13 +21,13 @@ POKY_DEFAULT_EXTRA_RRECOMMENDS = "kernel-module-af-packet"
DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES}"
-PREFERRED_VERSION_linux-yocto ?= "4.8%"
-PREFERRED_VERSION_linux-yocto_qemux86 ?= "4.8%"
-PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "4.8%"
-PREFERRED_VERSION_linux-yocto_qemuarm ?= "4.8%"
-PREFERRED_VERSION_linux-yocto_qemumips ?= "4.8%"
-PREFERRED_VERSION_linux-yocto_qemumips64 ?= "4.8%"
-PREFERRED_VERSION_linux-yocto_qemuppc ?= "4.8%"
+PREFERRED_VERSION_linux-yocto ?= "4.9%"
+PREFERRED_VERSION_linux-yocto_qemux86 ?= "4.9%"
+PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "4.9%"
+PREFERRED_VERSION_linux-yocto_qemuarm ?= "4.9%"
+PREFERRED_VERSION_linux-yocto_qemumips ?= "4.9%"
+PREFERRED_VERSION_linux-yocto_qemumips64 ?= "4.9%"
+PREFERRED_VERSION_linux-yocto_qemuppc ?= "4.9%"
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${IMAGE_BASENAME}-${TUNE_PKGARCH}"
SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"
--
2.5.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] yocto-bsps: add 4.9 bbappend
2017-02-01 15:43 [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
2017-02-01 15:43 ` [PATCH 1/2] poky: make 4.9 the preferred qemu version Bruce Ashfield
@ 2017-02-01 15:43 ` Bruce Ashfield
2017-02-24 19:42 ` [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
2 siblings, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2017-02-01 15:43 UTC (permalink / raw)
To: richard.purdie; +Cc: yocto
Introduce a 4.9 bbappend for the h/w reference BSPs. Since 4.8 will
be removed, we need to have this file in place.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
.../recipes-kernel/linux/linux-yocto_4.9.bbappend | 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend
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
new file mode 100644
index 000000000000..6a0493070065
--- /dev/null
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_4.9.bbappend
@@ -0,0 +1,26 @@
+KBRANCH_genericx86 = "standard/base"
+KBRANCH_genericx86-64 = "standard/base"
+
+KMACHINE_genericx86 ?= "common-pc"
+KMACHINE_genericx86-64 ?= "common-pc-64"
+KBRANCH_edgerouter = "standard/edgerouter"
+KBRANCH_beaglebone = "standard/beaglebone"
+KBRANCH_mpc8315e-rdb = "standard/fsl-mpc8315e-rdb"
+
+SRCREV_machine_genericx86 ?= "021b4aef55b44597587a1ce5879be642b3dca155"
+SRCREV_machine_genericx86-64 ?= "0b52a52fb892c0dd20823268830ab22a9e3a92b8"
+SRCREV_machine_edgerouter ?= "0b52a52fb892c0dd20823268830ab22a9e3a92b8"
+SRCREV_machine_beaglebone ?= "0b52a52fb892c0dd20823268830ab22a9e3a92b8"
+SRCREV_machine_mpc8315e-rdb ?= "b4a4ce5c575d3673dcb4a6922285a78868539fb2"
+
+COMPATIBLE_MACHINE_genericx86 = "genericx86"
+COMPATIBLE_MACHINE_genericx86-64 = "genericx86-64"
+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_edgerouter = "4.9.6"
+LINUX_VERSION_beaglebone = "4.9.6"
+LINUX_VERSION_mpc8315e-rdb = "4.9.6"
--
2.5.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel
2017-02-01 15:43 [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
2017-02-01 15:43 ` [PATCH 1/2] poky: make 4.9 the preferred qemu version Bruce Ashfield
2017-02-01 15:43 ` [PATCH 2/2] yocto-bsps: add 4.9 bbappend Bruce Ashfield
@ 2017-02-24 19:42 ` Bruce Ashfield
2017-02-24 20:43 ` Burton, Ross
2 siblings, 1 reply; 5+ messages in thread
From: Bruce Ashfield @ 2017-02-24 19:42 UTC (permalink / raw)
To: Richard Purdie; +Cc: Yocto Project Discussion
[-- Attachment #1: Type: text/plain, Size: 1899 bytes --]
On Wed, Feb 1, 2017 at 10:43 AM, Bruce Ashfield <
bruce.ashfield@windriver.com> wrote:
> Hi all,
>
> 4.9 has been soaking for a while now, and it is ready (as far as we know)
> to
> be the default for the qemu* machines.
>
> I've also introduced a 4.9 bbappend for the reference BSPs, but have not
> confirmed their boot myself. The reference maintainers can follow up with
> ack/nak and updates.
>
> I also have patches to remove 4.8, but I'm sitting on them until we know
> that switching to 4.9 as the default has gone smoothly.
>
I noticed that the 4.9 bbappend merged, but not the switch of the default
version
to 4.9.
Is there a bug or other issue lurking that I should look into ?
I'm prep'ing a 4.10 tree now, so this may be a moot point and we could jump
all
the way to 4.10 instead of the intermediate 4.9.
Bruce
>
> Bruce
>
> The following changes since commit 58245344b178052e11a0e8b97100e1
> 54b1f4d83c:
>
> linux-yocto/4.9: yaffs2 fixes (2017-02-01 09:50:20 -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):
> poky: make 4.9 the preferred qemu version
> yocto-bsps: add 4.9 bbappend
>
> meta-poky/conf/distro/poky.conf | 14 ++++++------
> .../recipes-kernel/linux/linux-yocto_4.9.bbappend | 26
> ++++++++++++++++++++++
> 2 files changed, 33 insertions(+), 7 deletions(-)
> create mode 100644 meta-yocto-bsp/recipes-kernel/
> linux/linux-yocto_4.9.bbappend
>
> --
> 2.5.0
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
--
"Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end"
[-- Attachment #2: Type: text/html, Size: 3087 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-02-24 20:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-01 15:43 [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
2017-02-01 15:43 ` [PATCH 1/2] poky: make 4.9 the preferred qemu version Bruce Ashfield
2017-02-01 15:43 ` [PATCH 2/2] yocto-bsps: add 4.9 bbappend Bruce Ashfield
2017-02-24 19:42 ` [PATCH 0/2] poky/yocto-bsps: introduce 4.9 as the default kernel Bruce Ashfield
2017-02-24 20:43 ` Burton, Ross
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.