* [PATCH 0/2] yocto-bsps: update preferred version to 4.1 and introduce 3.14-rt
@ 2015-07-21 15:24 Bruce Ashfield
2015-07-21 15:24 ` [PATCH 1/2] yocto-bsps: add 3.14-rt configuration Bruce Ashfield
2015-07-21 15:24 ` [PATCH 2/2] qemu: change default version to 4.1 Bruce Ashfield
0 siblings, 2 replies; 3+ messages in thread
From: Bruce Ashfield @ 2015-07-21 15:24 UTC (permalink / raw)
To: poky
Hi all,
The 4.1 version switch on this change obviously depends on the 4.1 series
that I've sent to oe-core, but I wanted to send this out as well .. to show
that I didn't forget to update the default version to be 4.1.
Once 4.1 is in the core, we are good to go with this change.
Cheers,
Bruce
The following changes since commit a888ca8e0a3739cc603c0d286076ad926a88bacc:
linux-yocto: introduce 4.1 versioned recipes (2015-07-21 10:41:12 -0400)
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):
yocto-bsps: add 3.14-rt configuration
qemu: change default version to 4.1
.../recipes-kernel/linux/linux-yocto-rt_3.14.bbappend | 11 +++++++++++
meta-yocto/conf/distro/poky.conf | 14 +++++++-------
2 files changed, 18 insertions(+), 7 deletions(-)
create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto-rt_3.14.bbappend
--
2.1.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] yocto-bsps: add 3.14-rt configuration
2015-07-21 15:24 [PATCH 0/2] yocto-bsps: update preferred version to 4.1 and introduce 3.14-rt Bruce Ashfield
@ 2015-07-21 15:24 ` Bruce Ashfield
2015-07-21 15:24 ` [PATCH 2/2] qemu: change default version to 4.1 Bruce Ashfield
1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2015-07-21 15:24 UTC (permalink / raw)
To: poky
To enable preempt-rt for the h/w reference boards, we can create a
bbappend that sets the KMACHINE mappings and valid hashes.
Currently only genericx86* is enabled. Other boards can be added
once validated.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
.../recipes-kernel/linux/linux-yocto-rt_3.14.bbappend | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto-rt_3.14.bbappend
diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-rt_3.14.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-rt_3.14.bbappend
new file mode 100644
index 000000000000..52fd07fd5d81
--- /dev/null
+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-rt_3.14.bbappend
@@ -0,0 +1,11 @@
+KBRANCH_genericx86 = "standard/common-pc/base"
+KBRANCH_genericx86-64 = "standard/common-pc-64/base"
+
+KMACHINE_genericx86 ?= "common-pc"
+KMACHINE_genericx86-64 ?= "common-pc-64"
+
+SRCREV_machine_genericx86 ?= "bda175966009d5a94103559e6e6ae51279952f39"
+SRCREV_machine_genericx86-64 ?= "bda175966009d5a94103559e6e6ae51279952f39"
+
+COMPATIBLE_MACHINE_genericx86 = "genericx86"
+COMPATIBLE_MACHINE_genericx86-64 = "genericx86-64"
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] qemu: change default version to 4.1
2015-07-21 15:24 [PATCH 0/2] yocto-bsps: update preferred version to 4.1 and introduce 3.14-rt Bruce Ashfield
2015-07-21 15:24 ` [PATCH 1/2] yocto-bsps: add 3.14-rt configuration Bruce Ashfield
@ 2015-07-21 15:24 ` Bruce Ashfield
1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2015-07-21 15:24 UTC (permalink / raw)
To: poky
The 4.1 LTSI kernel is now availble, so we update the qemu reference
platforms to have it as the default.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta-yocto/conf/distro/poky.conf | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index e3d3c783c5d5..014a944f081b 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -18,13 +18,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 ?= "3.19%"
-PREFERRED_VERSION_linux-yocto_qemux86 ?= "3.19%"
-PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "3.19%"
-PREFERRED_VERSION_linux-yocto_qemuarm ?= "3.19%"
-PREFERRED_VERSION_linux-yocto_qemumips ?= "3.19%"
-PREFERRED_VERSION_linux-yocto_qemumips64 ?= "3.19%"
-PREFERRED_VERSION_linux-yocto_qemuppc ?= "3.19%"
+PREFERRED_VERSION_linux-yocto ?= "4.1%"
+PREFERRED_VERSION_linux-yocto_qemux86 ?= "4.1%"
+PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "4.1%"
+PREFERRED_VERSION_linux-yocto_qemuarm ?= "4.1%"
+PREFERRED_VERSION_linux-yocto_qemumips ?= "4.1%"
+PREFERRED_VERSION_linux-yocto_qemumips64 ?= "4.1%"
+PREFERRED_VERSION_linux-yocto_qemuppc ?= "4.1%"
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${IMAGE_BASENAME}-${TUNE_PKGARCH}"
SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-21 15:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-21 15:24 [PATCH 0/2] yocto-bsps: update preferred version to 4.1 and introduce 3.14-rt Bruce Ashfield
2015-07-21 15:24 ` [PATCH 1/2] yocto-bsps: add 3.14-rt configuration Bruce Ashfield
2015-07-21 15:24 ` [PATCH 2/2] qemu: change default version to 4.1 Bruce Ashfield
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.