* [PATCH 0/3] kernel-yocto: consolidated pull request
@ 2013-02-05 15:56 Bruce Ashfield
2013-02-05 15:56 ` [PATCH 1/3] linux-yocto/dev: linux-yocto development tree tracking recipe Bruce Ashfield
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Bruce Ashfield @ 2013-02-05 15:56 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
Richard/Saul,
Here's the latest batch of kernel changes. In this series, we are moving the
linux-yocto-dev recipe out of poky-extras into a more visible location (using
the scheme agreed upon to avoid AUTOREV network access). I also have a
cleanup patch to existing KERNEL_FEATURES references, and finally a bump of
the 3.4 and 3.4-rt versions.
Details follow:
[PATCH 1/3] linux-yocto/dev: linux-yocto development tree tracking recipe
The linux-yocto-dev recipe uses the upstream tracking linux-yocto-dev repository.
Since this tree is frequently updated, and periodically rebuilt, AUTOREV is used
to track its contents.
This recipe is just like other linux-yocto variants, with the only difference
being that to avoid network access during initial parsing, static SRCREVs are
provided and overridden if the preferred kernel provider is linux-yocto-dev.
[PATCH 2/3] linux-yocto/3.4: update to v3.4.28, 3.4.28-rt40
Updating the linux-yocto_3.4 SRCREVs to pick up the 3.4.28 -stable update
as well as the 3.4.28-rt40 refresh.
[PATCH 3/3] linux-yocto: KERNEL_FEATURES should reference full scc files
Some existing KERNEL_FEATURE references use a shorcut notation, but mapping
these shortcuts to actual .scc files in the tree are not obvious. So we clarify
where they are found by referencing the full .scc filename in the KERNEL_FEATURE
addtions.
Cheers,
Bruce
The following changes since commit 7e9cb437b1b720e656f4a33f73c07c5dc7356a2c:
dropbear: fix RPROVIDES (2013-02-04 23:31:02 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib zedd/kernel
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
Bruce Ashfield (3):
linux-yocto/dev: linux-yocto development tree tracking recipe
linux-yocto/3.4: update to v3.4.28, 3.4.28-rt40
linux-yocto: KERNEL_FEATURES should reference full scc files
meta/recipes-kernel/linux/linux-yocto-dev.bb | 48 +++++++++++++++++++++
meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb | 8 ++--
meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb | 18 ++++----
meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb | 6 +--
meta/recipes-kernel/linux/linux-yocto_3.2.bb | 8 ++--
meta/recipes-kernel/linux/linux-yocto_3.4.bb | 28 ++++++------
6 files changed, 81 insertions(+), 35 deletions(-)
create mode 100644 meta/recipes-kernel/linux/linux-yocto-dev.bb
--
1.7.10.4
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/3] linux-yocto/dev: linux-yocto development tree tracking recipe
2013-02-05 15:56 [PATCH 0/3] kernel-yocto: consolidated pull request Bruce Ashfield
@ 2013-02-05 15:56 ` Bruce Ashfield
2013-02-05 15:56 ` [PATCH 2/3] linux-yocto/3.4: update to v3.4.28, 3.4.28-rt40 Bruce Ashfield
2013-02-05 15:56 ` [PATCH 3/3] linux-yocto: KERNEL_FEATURES should reference full scc files Bruce Ashfield
2 siblings, 0 replies; 7+ messages in thread
From: Bruce Ashfield @ 2013-02-05 15:56 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
The linux-yocto-dev recipe uses the upstream tracking linux-yocto-dev repository.
Since this tree is frequently updated, and periodically rebuilt, AUTOREV is used
to track its contents.
This recipe is just like other linux-yocto variants, with the only difference
being that to avoid network access during initial parsing, static SRCREVs are
provided and overridden if the preferred kernel provider is linux-yocto-dev.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta/recipes-kernel/linux/linux-yocto-dev.bb | 48 ++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
create mode 100644 meta/recipes-kernel/linux/linux-yocto-dev.bb
diff --git a/meta/recipes-kernel/linux/linux-yocto-dev.bb b/meta/recipes-kernel/linux/linux-yocto-dev.bb
new file mode 100644
index 0000000..fdea085
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-yocto-dev.bb
@@ -0,0 +1,48 @@
+# This recipe tracks the linux-yocto-dev repository as its upstream source.
+# Since this tree is frequently updated, and periodically rebuilt, AUTOREV is
+# used to track its contents.
+#
+# This recipe is just like other linux-yocto variants, with the only difference
+# being that to avoid network access during initial parsing, static SRCREVs are
+# provided and overridden if the preferred kernel provider is linux-yocto-dev.
+#
+# To enable this recipe, set PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-dev"
+
+inherit kernel
+require recipes-kernel/linux/linux-yocto.inc
+
+KBRANCH = "standard/base"
+KBRANCH_DEFAULT = "${KBRANCH}"
+KMETA = "meta"
+
+SRC_URI = "git://git.pokylinux.org/linux-yocto-dev.git;protocol=git;nocheckout=1;branch=${KBRANCH},${KMETA};name=machine,meta"
+
+# Set default SRCREVs. Both the machine and meta SRCREVs are statically set
+# to the korg v3.7 tag, and hence prevent network access during parsing. If
+# linux-yocto-dev is the preferred provider, they will be overridden to
+# AUTOREV in following anonymous python routine and resolved when the
+# variables are finalized.
+SRCREV_machine="29594404d7fe73cd80eaa4ee8c43dcc53970c60e"
+SRCREV_meta="29594404d7fe73cd80eaa4ee8c43dcc53970c60e"
+
+python () {
+ if d.getVar("PREFERRED_PROVIDER_virtual/kernel", True) != "linux-yocto-dev":
+ raise bb.parse.SkipPackage("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-dev to enable it")
+ else:
+ d.setVar("SRCREV_machine", "${AUTOREV}")
+ d.setVar("SRCREV_meta", "${AUTOREV}")
+}
+
+LINUX_VERSION ?= "3.8+"
+LINUX_VERSION_EXTENSION ?= "-yoctodev-${LINUX_KERNEL_TYPE}"
+PR = "r0"
+PV = "${LINUX_VERSION}+git${SRCPV}"
+
+COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)"
+
+# Functionality flags
+KERNEL_FEATURES_append = " features/netfilter/netfilter.scc"
+KERNEL_FEATURES_append_qemux86=" cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm.scc"
+KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/3] linux-yocto/3.4: update to v3.4.28, 3.4.28-rt40
2013-02-05 15:56 [PATCH 0/3] kernel-yocto: consolidated pull request Bruce Ashfield
2013-02-05 15:56 ` [PATCH 1/3] linux-yocto/dev: linux-yocto development tree tracking recipe Bruce Ashfield
@ 2013-02-05 15:56 ` Bruce Ashfield
2013-02-05 15:56 ` [PATCH 3/3] linux-yocto: KERNEL_FEATURES should reference full scc files Bruce Ashfield
2 siblings, 0 replies; 7+ messages in thread
From: Bruce Ashfield @ 2013-02-05 15:56 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
Updating the linux-yocto_3.4 SRCREVs to pick up the 3.4.28 -stable update
as well as the 3.4.28-rt40 refresh.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb | 8 ++++----
meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb | 6 +++---
meta/recipes-kernel/linux/linux-yocto_3.4.bb | 16 ++++++++--------
3 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
index dcc416b..ca9aa42 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
@@ -3,14 +3,14 @@ require recipes-kernel/linux/linux-yocto.inc
KBRANCH = "standard/preempt-rt/base"
KBRANCH_qemuppc = "standard/preempt-rt/qemuppc"
-LINUX_VERSION ?= "3.4.26"
+LINUX_VERSION ?= "3.4.28"
LINUX_KERNEL_TYPE = "preempt-rt"
KMETA = "meta"
-SRCREV_machine ?= "408343900a234254d7be8f0bb52d6f87c8fbbc76"
-SRCREV_machine_qemuppc ?= "bd7b26015e1dcbed4e8e0e9b6ac2ef4c744e0257"
-SRCREV_meta ?= "c0b3904d60830e24b3930b0fa606a48b2758d979"
+SRCREV_machine ?= "3d56b103cd7072d520c395194e620aba2f6e52e3"
+SRCREV_machine_qemuppc ?= "09178bc8825d6fb66ddcb1785f20a022c4ba2efd"
+SRCREV_meta ?= "f697e099bc76d5df3a307a5bc0cc25021dd6dfe0"
PR = "${INC_PR}.0"
PV = "${LINUX_VERSION}+git${SRCPV}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb
index 1e82d16..265d082 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb
@@ -8,12 +8,12 @@ KBRANCH = "${KBRANCH_DEFAULT}"
LINUX_KERNEL_TYPE = "tiny"
KCONFIG_MODE = "--allnoconfig"
-LINUX_VERSION ?= "3.4.26"
+LINUX_VERSION ?= "3.4.28"
KMETA = "meta"
-SRCREV_machine ?= "59c2a9eb334c2def405c9d93ed6d8d4e822d1945"
-SRCREV_meta ?= "c0b3904d60830e24b3930b0fa606a48b2758d979"
+SRCREV_machine ?= "13809f2cfd9be0ce86bd486e1643f9b90bed6f4f"
+SRCREV_meta ?= "f697e099bc76d5df3a307a5bc0cc25021dd6dfe0"
PR = "${INC_PR}.0"
PV = "${LINUX_VERSION}+git${SRCPV}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
index 7be330a..4ab8c73 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
@@ -3,17 +3,17 @@ require recipes-kernel/linux/linux-yocto.inc
KBRANCH_DEFAULT = "standard/base"
KBRANCH = "${KBRANCH_DEFAULT}"
-SRCREV_machine_qemuarm ?= "b5a80c6a46604d7636c18a3e1ad362d1e6ed234e"
-SRCREV_machine_qemumips ?= "66bc662b2cd469a9807fbe838069d3f85cb01bd9"
-SRCREV_machine_qemuppc ?= "d771422df10af41ee61598f4aa06e3c3a018c323"
-SRCREV_machine_qemux86 ?= "59c2a9eb334c2def405c9d93ed6d8d4e822d1945"
-SRCREV_machine_qemux86-64 ?= "59c2a9eb334c2def405c9d93ed6d8d4e822d1945"
-SRCREV_machine ?= "59c2a9eb334c2def405c9d93ed6d8d4e822d1945"
-SRCREV_meta ?= "c0b3904d60830e24b3930b0fa606a48b2758d979"
+SRCREV_machine_qemuarm ?= "a720acacc415b3323a3ee9076bf9a621a964af2f"
+SRCREV_machine_qemumips ?= "7d9f14326db1e602b4408f295bef7d12fd07dd55"
+SRCREV_machine_qemuppc ?= "62d3cb6a8e048c4833a5501bea2f35998de0b89d"
+SRCREV_machine_qemux86 ?= "13809f2cfd9be0ce86bd486e1643f9b90bed6f4f"
+SRCREV_machine_qemux86-64 ?= "13809f2cfd9be0ce86bd486e1643f9b90bed6f4f"
+SRCREV_machine ?= "13809f2cfd9be0ce86bd486e1643f9b90bed6f4f"
+SRCREV_meta ?= "f697e099bc76d5df3a307a5bc0cc25021dd6dfe0"
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
-LINUX_VERSION ?= "3.4.26"
+LINUX_VERSION ?= "3.4.28"
PR = "${INC_PR}.3"
PV = "${LINUX_VERSION}+git${SRCPV}"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 3/3] linux-yocto: KERNEL_FEATURES should reference full scc files
2013-02-05 15:56 [PATCH 0/3] kernel-yocto: consolidated pull request Bruce Ashfield
2013-02-05 15:56 ` [PATCH 1/3] linux-yocto/dev: linux-yocto development tree tracking recipe Bruce Ashfield
2013-02-05 15:56 ` [PATCH 2/3] linux-yocto/3.4: update to v3.4.28, 3.4.28-rt40 Bruce Ashfield
@ 2013-02-05 15:56 ` Bruce Ashfield
2 siblings, 0 replies; 7+ messages in thread
From: Bruce Ashfield @ 2013-02-05 15:56 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
Some existing KERNEL_FEATURE references use a shorcut notation, but mapping
these shortcuts to actual .scc files in the tree are not obvious. So we clarify
where they are found by referencing the full .scc filename in the KERNEL_FEATURE
addtions.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb | 8 ++++----
meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb | 10 +++++-----
meta/recipes-kernel/linux/linux-yocto_3.2.bb | 8 ++++----
meta/recipes-kernel/linux/linux-yocto_3.4.bb | 12 +++++-------
4 files changed, 18 insertions(+), 20 deletions(-)
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb
index 0c82e16..1f1b8de 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb
@@ -23,7 +23,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.2.git;protocol=git;bareclone
COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)"
# Functionality flags
-KERNEL_FEATURES_append = "features/netfilter"
-KERNEL_FEATURES_append = " features/taskstats"
-KERNEL_FEATURES_append_qemux86 = " cfg/sound"
-KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
+KERNEL_FEATURES_append = "features/netfilter/netfilter.scc"
+KERNEL_FEATURES_append = " features/taskstats/taskstats.scc"
+KERNEL_FEATURES_append_qemux86 = " cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86-64 = " cfg/sound.scc"
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
index ca9aa42..c58efe7 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
@@ -23,8 +23,8 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;bareclone
COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)"
# Functionality flags
-KERNEL_FEATURES_append = " features/netfilter"
-KERNEL_FEATURES_append = " features/taskstats"
-KERNEL_FEATURES_append_qemux86 = " cfg/sound"
-KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
-KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32", "" ,d)}"
+KERNEL_FEATURES_append = " features/netfilter/netfilter.scc"
+KERNEL_FEATURES_append = " features/taskstats/taskstats.scc"
+KERNEL_FEATURES_append_qemux86 = " cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86-64 = " cfg/sound.scc"
+KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.2.bb b/meta/recipes-kernel/linux/linux-yocto_3.2.bb
index 77508fc..d080a69 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.2.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.2.bb
@@ -27,7 +27,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.2;protocol=git;bareclone=1;b
COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
# Functionality flags
-KERNEL_FEATURES_append=" features/netfilter"
-KERNEL_FEATURES_append=" features/taskstats"
-KERNEL_FEATURES_append_qemux86=" cfg/sound"
-KERNEL_FEATURES_append_qemux86-64=" cfg/sound"
+KERNEL_FEATURES_append=" features/netfilter/netfilter.scc"
+KERNEL_FEATURES_append=" features/taskstats/taskstats.scc"
+KERNEL_FEATURES_append_qemux86=" cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
index 4ab8c73..ab975f2 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
@@ -23,10 +23,8 @@ KMETA = "meta"
COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
# Functionality flags
-KERNEL_REVISION_CHECKING=""
-KERNEL_FEATURES_append = " features/netfilter"
-KERNEL_FEATURES_append_qemux86=" cfg/sound"
-KERNEL_FEATURES_append_qemux86-64=" cfg/sound"
-KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm"
-#KERNEL_FEATURES_append_qemux86-64=" cfg/paravirt_kvm"
-KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32", "" ,d)}"
+KERNEL_FEATURES_append = " features/netfilter/netfilter.scc"
+KERNEL_FEATURES_append_qemux86=" cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
+KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm.scc"
+KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 0/3] kernel-yocto: consolidated pull request
@ 2019-07-05 16:14 bruce.ashfield
0 siblings, 0 replies; 7+ messages in thread
From: bruce.ashfield @ 2019-07-05 16:14 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
From: Bruce Ashfield <bruce.ashfield@gmail.com>
Hi all,
Here's the next round of updates I've been testing. The 4.19 update is pretty
standard, and is both a -stable and -rt refresh. Boot testing shows no issues
on either kernel type.
We also have a configuration tweak to allow the beaglebone reference to be
booted in qemu directly.
Finally, there's a packaging change .. which I normally don't have in these
requests, but it is an underpinning change for some future kernel features
and updates that I'd like to get out separately. The problem was found while
moving postinsts into both kernel.bbclass and kernel-devsrc.bbclass, and
without it, you can't assemble a rootfs for packages that are using PKG_
constructs. The details are in the commit log of the patch.
The change has been working here (and at Xilinx) for a couple of months now,
so it shouldn't have any drastic side effects. There *may* be other places
that this is required, but I kept to the code paths I could test.
Cheers,
Bruce
The following changes since commit 4fd9ee4670293632cc0ca1e64b8833eb6014435d:
bitbake: bitbake: Add --skip-setscene option (2019-07-03 17:00:57 +0100)
are available in the Git repository at:
git://git.pokylinux.org/poky-contrib zedd/kernel
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
Bruce Ashfield (3):
linux-yocto: bsp/beaglebone: support qemu -machine virt
linux-yocto/4.19: update to 4.19.57 and -rt22
package: check PKG_ variables before executing ontarget postinst
meta/classes/package.bbclass | 6 +++++-
.../linux/linux-yocto-rt_4.19.bb | 6 +++---
.../linux/linux-yocto-rt_5.0.bb | 2 +-
.../linux/linux-yocto-tiny_4.19.bb | 8 ++++----
.../linux/linux-yocto-tiny_5.0.bb | 2 +-
meta/recipes-kernel/linux/linux-yocto_4.19.bb | 20 +++++++++----------
meta/recipes-kernel/linux/linux-yocto_5.0.bb | 2 +-
7 files changed, 25 insertions(+), 21 deletions(-)
--
2.19.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/3] kernel-yocto: consolidated pull request
@ 2020-08-21 19:02 Bruce Ashfield
0 siblings, 0 replies; 7+ messages in thread
From: Bruce Ashfield @ 2020-08-21 19:02 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
From: Bruce Ashfield <bruce.ashfield@gmail.com>
Richard,
Now that we have the libc-headers and 5.8 kernel recipes in oe-core without
too much chaos, we can try these patches to bump the -stable and set 5.8
as the default for qemu.
These have passed AB and local testing for me, but lets see what shakes out
with these changes.
I'll have a similar series for poky arriving shortly.
Bruce
The following changes since commit c67f57c09ec77568e87d3a6db0c67cc78530e99c:
bitbake: build: make shell traps less chatty when 'bitbake -v' is used (2020-08-21 14:29:25 +0100)
are available in the Git repository at:
git://git.yoctoproject.org/poky-contrib zedd/kernel
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
Bruce Ashfield (3):
qemu: bump default reference kernel to v5.8
linux-yocto/5.4: update to v5.4.59
linux-yocto/5.8: update to v5.8.2
meta/conf/machine/include/x86-base.inc | 2 +-
meta/conf/machine/qemuarmv5.conf | 2 +-
.../linux/linux-yocto-rt_5.4.bb | 6 ++---
.../linux/linux-yocto-rt_5.8.bb | 6 ++---
.../linux/linux-yocto-tiny_5.4.bb | 8 +++----
.../linux/linux-yocto-tiny_5.8.bb | 8 +++----
meta/recipes-kernel/linux/linux-yocto_5.4.bb | 22 +++++++++----------
meta/recipes-kernel/linux/linux-yocto_5.8.bb | 22 +++++++++----------
8 files changed, 38 insertions(+), 38 deletions(-)
--
2.19.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/3] kernel-yocto: consolidated pull request
@ 2022-10-19 3:39 bruce.ashfield
0 siblings, 0 replies; 7+ messages in thread
From: bruce.ashfield @ 2022-10-19 3:39 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
From: Bruce Ashfield <bruce.ashfield@gmail.com>
Hi all,
I'm not resending patches that I've previous sent (lttng, linux-yocto-dev), but
wanted to get these out onto the list, as people are running into the kern-tools
issue, so having the commit available keeps the moving.
I've also included the -stable updates, and will follow up with more -stable
bumps later this week.
Bruce
The following changes since commit 3e5faccfaf50fee0ba8f6eef6c9bf458137d06d2:
ref-manual/faq.rst: update references to products built with OE / Yocto Project (2022-10-07 10:54:26 +0100)
are available in the Git repository at:
https://git.yoctoproject.org/poky-contrib zedd/kernel
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
Bruce Ashfield (3):
kern-tools: fix relative path processing
linux-yocto/5.19: update to v5.19.14
linux-yocto/5.15: update to v5.15.72
.../kern-tools/kern-tools-native_git.bb | 2 +-
.../linux/linux-yocto-rt_5.15.bb | 6 ++---
.../linux/linux-yocto-rt_5.19.bb | 6 ++---
.../linux/linux-yocto-tiny_5.15.bb | 6 ++---
.../linux/linux-yocto-tiny_5.19.bb | 6 ++---
meta/recipes-kernel/linux/linux-yocto_5.15.bb | 26 +++++++++----------
meta/recipes-kernel/linux/linux-yocto_5.19.bb | 26 +++++++++----------
7 files changed, 39 insertions(+), 39 deletions(-)
--
2.19.1
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-10-19 3:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-05 15:56 [PATCH 0/3] kernel-yocto: consolidated pull request Bruce Ashfield
2013-02-05 15:56 ` [PATCH 1/3] linux-yocto/dev: linux-yocto development tree tracking recipe Bruce Ashfield
2013-02-05 15:56 ` [PATCH 2/3] linux-yocto/3.4: update to v3.4.28, 3.4.28-rt40 Bruce Ashfield
2013-02-05 15:56 ` [PATCH 3/3] linux-yocto: KERNEL_FEATURES should reference full scc files Bruce Ashfield
-- strict thread matches above, loose matches on Subject: below --
2019-07-05 16:14 [PATCH 0/3] kernel-yocto: consolidated pull request bruce.ashfield
2020-08-21 19:02 Bruce Ashfield
2022-10-19 3:39 bruce.ashfield
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox