* [PATCH 1/2] cryptodev: Update to latest git for 6.5 kernel fixes
@ 2023-10-06 11:36 Richard Purdie
2023-10-06 11:36 ` [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2023-10-06 11:36 UTC (permalink / raw)
To: openembedded-core
Update to pull in recent git changes which allow cryptodev to work
with 6.5 kernels.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-kernel/cryptodev/cryptodev.inc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-kernel/cryptodev/cryptodev.inc b/meta/recipes-kernel/cryptodev/cryptodev.inc
index 61c688f1d0e..64a9c2926b8 100644
--- a/meta/recipes-kernel/cryptodev/cryptodev.inc
+++ b/meta/recipes-kernel/cryptodev/cryptodev.inc
@@ -10,7 +10,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "git://github.com/cryptodev-linux/cryptodev-linux;branch=master;protocol=https \
"
-SRCREV = "795f5fda1485d447cdbad342e8304be317d4f7e8"
+SRCREV = "bb8bc7cf60d2c0b097c8b3b0e807f805b577a53f"
+PV = "1.13+git${SRCPV}"
S = "${WORKDIR}/git"
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides
2023-10-06 11:36 [PATCH 1/2] cryptodev: Update to latest git for 6.5 kernel fixes Richard Purdie
@ 2023-10-06 11:36 ` Richard Purdie
2023-10-11 1:11 ` [OE-core] " Alejandro Enedino Hernandez Samaniego
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2023-10-06 11:36 UTC (permalink / raw)
To: openembedded-core
Drop the version overrides for the kernel for the x86 and arm machines
so we can go back to following the distro versions. The reasons for
these versions is mostly historical at this point as the issues were
resolved.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/conf/machine/include/x86/x86-base.inc | 1 -
meta/conf/machine/qemuarm.conf | 4 ----
meta/conf/machine/qemuarmv5.conf | 1 -
3 files changed, 6 deletions(-)
diff --git a/meta/conf/machine/include/x86/x86-base.inc b/meta/conf/machine/include/x86/x86-base.inc
index 050c20af70c..fc6c39148db 100644
--- a/meta/conf/machine/include/x86/x86-base.inc
+++ b/meta/conf/machine/include/x86/x86-base.inc
@@ -18,7 +18,6 @@ SERIAL_CONSOLES ?= "115200;ttyS0"
# kernel-related variables
#
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
-PREFERRED_VERSION_linux-yocto ??= "6.4%"
#
# XSERVER subcomponents, used to build the XSERVER variable
diff --git a/meta/conf/machine/qemuarm.conf b/meta/conf/machine/qemuarm.conf
index 04216cdc2e0..881733eb2da 100644
--- a/meta/conf/machine/qemuarm.conf
+++ b/meta/conf/machine/qemuarm.conf
@@ -28,8 +28,4 @@ QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio
QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon"
QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"
-# 6.4 causes Xorg to fail to read the virtio framebuffer so stick with 6.1 until
-# that is resolved.
-PREFERRED_VERSION_linux-yocto ??= "6.1%"
-
KMACHINE:qemuarm = "qemuarma15"
diff --git a/meta/conf/machine/qemuarmv5.conf b/meta/conf/machine/qemuarmv5.conf
index deb4869c0aa..f0a86f1e4c7 100644
--- a/meta/conf/machine/qemuarmv5.conf
+++ b/meta/conf/machine/qemuarmv5.conf
@@ -16,5 +16,4 @@ QB_GRAPHICS = "-device virtio-gpu-pci"
QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd"
QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}"
-PREFERRED_VERSION_linux-yocto ??= "6.4%"
KMACHINE:qemuarmv5 = "arm-versatile-926ejs"
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [OE-core] [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides
2023-10-06 11:36 ` [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides Richard Purdie
@ 2023-10-11 1:11 ` Alejandro Enedino Hernandez Samaniego
2023-10-11 21:39 ` Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Alejandro Enedino Hernandez Samaniego @ 2023-10-11 1:11 UTC (permalink / raw)
To: Richard Purdie, openembedded-core
[-- Attachment #1: Type: text/plain, Size: 3087 bytes --]
On 10/6/23 05:36, Richard Purdie wrote:
> Drop the version overrides for the kernel for the x86 and arm machines
> so we can go back to following the distro versions. The reasons for
> these versions is mostly historical at this point as the issues were
> resolved.
>
> Signed-off-by: Richard Purdie<richard.purdie@linuxfoundation.org>
> ---
> meta/conf/machine/include/x86/x86-base.inc | 1 -
> meta/conf/machine/qemuarm.conf | 4 ----
> meta/conf/machine/qemuarmv5.conf | 1 -
> 3 files changed, 6 deletions(-)
>
> diff --git a/meta/conf/machine/include/x86/x86-base.inc b/meta/conf/machine/include/x86/x86-base.inc
> index 050c20af70c..fc6c39148db 100644
> --- a/meta/conf/machine/include/x86/x86-base.inc
> +++ b/meta/conf/machine/include/x86/x86-base.inc
> @@ -18,7 +18,6 @@ SERIAL_CONSOLES ?= "115200;ttyS0"
> # kernel-related variables
> #
> PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
> -PREFERRED_VERSION_linux-yocto ??= "6.4%"
>
> #
> # XSERVER subcomponents, used to build the XSERVER variable
> diff --git a/meta/conf/machine/qemuarm.conf b/meta/conf/machine/qemuarm.conf
> index 04216cdc2e0..881733eb2da 100644
> --- a/meta/conf/machine/qemuarm.conf
> +++ b/meta/conf/machine/qemuarm.conf
> @@ -28,8 +28,4 @@ QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio
> QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon"
> QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"
>
> -# 6.4 causes Xorg to fail to read the virtio framebuffer so stick with 6.1 until
> -# that is resolved.
> -PREFERRED_VERSION_linux-yocto ??= "6.1%"
> -
> KMACHINE:qemuarm = "qemuarma15"
> diff --git a/meta/conf/machine/qemuarmv5.conf b/meta/conf/machine/qemuarmv5.conf
> index deb4869c0aa..f0a86f1e4c7 100644
> --- a/meta/conf/machine/qemuarmv5.conf
> +++ b/meta/conf/machine/qemuarmv5.conf
> @@ -16,5 +16,4 @@ QB_GRAPHICS = "-device virtio-gpu-pci"
> QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd"
> QB_DTB ="${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto',
> '4.7', '', 'zImage-versatile-pb.dtb', d)}"
>
Removing this bit results in the above line causing an ExpansionError, since
PREFERRED_VERSION_linux-yocto isnt defined anywhere anymore (if not using poky.conf)
What would be the right approach to solve this issue?, Should QB_DTB be depending on such variable?
Cheers,
Alejandro
> -PREFERRED_VERSION_linux-yocto ??= "6.4%"
> KMACHINE:qemuarmv5 = "arm-versatile-926ejs"
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#188762):https://lists.openembedded.org/g/openembedded-core/message/188762
> Mute This Topic:https://lists.openembedded.org/mt/101795562/4354175
> Group Owner:openembedded-core+owner@lists.openembedded.org
> Unsubscribe:https://lists.openembedded.org/g/openembedded-core/unsub [alhe@linux.microsoft.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
[-- Attachment #2: Type: text/html, Size: 4476 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides
2023-10-11 1:11 ` [OE-core] " Alejandro Enedino Hernandez Samaniego
@ 2023-10-11 21:39 ` Richard Purdie
2023-10-11 21:54 ` Bruce Ashfield
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2023-10-11 21:39 UTC (permalink / raw)
To: Alejandro Enedino Hernandez Samaniego, openembedded-core
On Tue, 2023-10-10 at 19:11 -0600, Alejandro Enedino Hernandez
Samaniego wrote:
>
>
>
>
> On 10/6/23 05:36, Richard Purdie wrote:
>
>
> >
> > Drop the version overrides for the kernel for the x86 and arm
> > machines
> > so we can go back to following the distro versions. The reasons for
> > these versions is mostly historical at this point as the issues
> > were
> > resolved.
> >
> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > ---
> > meta/conf/machine/include/x86/x86-base.inc | 1 -
> > meta/conf/machine/qemuarm.conf | 4 ----
> > meta/conf/machine/qemuarmv5.conf | 1 -
> > 3 files changed, 6 deletions(-)
> >
> > diff --git a/meta/conf/machine/include/x86/x86-base.inc
> > b/meta/conf/machine/include/x86/x86-base.inc
> > index 050c20af70c..fc6c39148db 100644
> > --- a/meta/conf/machine/include/x86/x86-base.inc
> > +++ b/meta/conf/machine/include/x86/x86-base.inc
> > @@ -18,7 +18,6 @@ SERIAL_CONSOLES ?= "115200;ttyS0"
> > # kernel-related variables
> > #
> > PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
> > -PREFERRED_VERSION_linux-yocto ??= "6.4%"
> >
> > #
> > # XSERVER subcomponents, used to build the XSERVER variable
> > diff --git a/meta/conf/machine/qemuarm.conf
> > b/meta/conf/machine/qemuarm.conf
> > index 04216cdc2e0..881733eb2da 100644
> > --- a/meta/conf/machine/qemuarm.conf
> > +++ b/meta/conf/machine/qemuarm.conf
> > @@ -28,8 +28,4 @@ QB_ROOTFS_OPT = "-drive
> > id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio
> > QB_SERIAL_OPT = "-device virtio-serial-device -chardev
> > null,id=virtcon -device virtconsole,chardev=virtcon"
> > QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev
> > socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device
> > virtconsole,chardev=virtcon"
> >
> > -# 6.4 causes Xorg to fail to read the virtio framebuffer so stick
> > with 6.1 until
> > -# that is resolved.
> > -PREFERRED_VERSION_linux-yocto ??= "6.1%"
> > -
> > KMACHINE:qemuarm = "qemuarma15"
> > diff --git a/meta/conf/machine/qemuarmv5.conf
> > b/meta/conf/machine/qemuarmv5.conf
> > index deb4869c0aa..f0a86f1e4c7 100644
> > --- a/meta/conf/machine/qemuarmv5.conf
> > +++ b/meta/conf/machine/qemuarmv5.conf
> > @@ -16,5 +16,4 @@ QB_GRAPHICS = "-device virtio-gpu-pci"
> > QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-
> > kbd"
> > QB_DTB =
> > "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto',
> > '4.7', '', 'zImage-versatile-pb.dtb', d)}"
> >
> >
>
> Removing this bit results in the above line causing an
> ExpansionError, since
> PREFERRED_VERSION_linux-yocto isnt defined anywhere anymore (if not
> using poky.conf)
>
> What would be the right approach to solve this issue?, Should QB_DTB
> be depending on such variable?
4.7 is old enough we can probably just drop the conditional now?
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides
2023-10-11 21:39 ` Richard Purdie
@ 2023-10-11 21:54 ` Bruce Ashfield
2023-10-13 16:21 ` Alejandro Enedino Hernandez Samaniego
0 siblings, 1 reply; 6+ messages in thread
From: Bruce Ashfield @ 2023-10-11 21:54 UTC (permalink / raw)
To: Richard Purdie; +Cc: Alejandro Enedino Hernandez Samaniego, openembedded-core
[-- Attachment #1: Type: text/plain, Size: 4029 bytes --]
On Wed, Oct 11, 2023 at 5:39 PM Richard Purdie <
richard.purdie@linuxfoundation.org> wrote:
> On Tue, 2023-10-10 at 19:11 -0600, Alejandro Enedino Hernandez
> Samaniego wrote:
> >
> >
> >
> >
> > On 10/6/23 05:36, Richard Purdie wrote:
> >
> >
> > >
> > > Drop the version overrides for the kernel for the x86 and arm
> > > machines
> > > so we can go back to following the distro versions. The reasons for
> > > these versions is mostly historical at this point as the issues
> > > were
> > > resolved.
> > >
> > > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > ---
> > > meta/conf/machine/include/x86/x86-base.inc | 1 -
> > > meta/conf/machine/qemuarm.conf | 4 ----
> > > meta/conf/machine/qemuarmv5.conf | 1 -
> > > 3 files changed, 6 deletions(-)
> > >
> > > diff --git a/meta/conf/machine/include/x86/x86-base.inc
> > > b/meta/conf/machine/include/x86/x86-base.inc
> > > index 050c20af70c..fc6c39148db 100644
> > > --- a/meta/conf/machine/include/x86/x86-base.inc
> > > +++ b/meta/conf/machine/include/x86/x86-base.inc
> > > @@ -18,7 +18,6 @@ SERIAL_CONSOLES ?= "115200;ttyS0"
> > > # kernel-related variables
> > > #
> > > PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
> > > -PREFERRED_VERSION_linux-yocto ??= "6.4%"
> > >
> > > #
> > > # XSERVER subcomponents, used to build the XSERVER variable
> > > diff --git a/meta/conf/machine/qemuarm.conf
> > > b/meta/conf/machine/qemuarm.conf
> > > index 04216cdc2e0..881733eb2da 100644
> > > --- a/meta/conf/machine/qemuarm.conf
> > > +++ b/meta/conf/machine/qemuarm.conf
> > > @@ -28,8 +28,4 @@ QB_ROOTFS_OPT = "-drive
> > > id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio
> > > QB_SERIAL_OPT = "-device virtio-serial-device -chardev
> > > null,id=virtcon -device virtconsole,chardev=virtcon"
> > > QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev
> > > socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device
> > > virtconsole,chardev=virtcon"
> > >
> > > -# 6.4 causes Xorg to fail to read the virtio framebuffer so stick
> > > with 6.1 until
> > > -# that is resolved.
> > > -PREFERRED_VERSION_linux-yocto ??= "6.1%"
> > > -
> > > KMACHINE:qemuarm = "qemuarma15"
> > > diff --git a/meta/conf/machine/qemuarmv5.conf
> > > b/meta/conf/machine/qemuarmv5.conf
> > > index deb4869c0aa..f0a86f1e4c7 100644
> > > --- a/meta/conf/machine/qemuarmv5.conf
> > > +++ b/meta/conf/machine/qemuarmv5.conf
> > > @@ -16,5 +16,4 @@ QB_GRAPHICS = "-device virtio-gpu-pci"
> > > QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-
> > > kbd"
> > > QB_DTB =
> > > "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto',
> > > '4.7', '', 'zImage-versatile-pb.dtb', d)}"
> > >
> > >
> >
> > Removing this bit results in the above line causing an
> > ExpansionError, since
> > PREFERRED_VERSION_linux-yocto isnt defined anywhere anymore (if not
> > using poky.conf)
> >
> > What would be the right approach to solve this issue?, Should QB_DTB
> > be depending on such variable?
>
> 4.7 is old enough we can probably just drop the conditional now?
>
Yep, that should be safe. It hasn't changed name or format in quite some
time.
(Although there has been some re-organization in 6.5/6.6 around device
trees, but that shouldn't come into play here).
Bruce
>
> Cheers,
>
> Richard
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#188972):
> https://lists.openembedded.org/g/openembedded-core/message/188972
> Mute This Topic: https://lists.openembedded.org/mt/101795562/1050810
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [
> bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>
--
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II
[-- Attachment #2: Type: text/html, Size: 6325 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides
2023-10-11 21:54 ` Bruce Ashfield
@ 2023-10-13 16:21 ` Alejandro Enedino Hernandez Samaniego
0 siblings, 0 replies; 6+ messages in thread
From: Alejandro Enedino Hernandez Samaniego @ 2023-10-13 16:21 UTC (permalink / raw)
To: Bruce Ashfield, Richard Purdie; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 4541 bytes --]
On 10/11/23 15:54, Bruce Ashfield wrote:
>
>
> On Wed, Oct 11, 2023 at 5:39 PM Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
>
> On Tue, 2023-10-10 at 19:11 -0600, Alejandro Enedino Hernandez
> Samaniego wrote:
> >
> >
> >
> >
> > On 10/6/23 05:36, Richard Purdie wrote:
> >
> >
> > >
> > > Drop the version overrides for the kernel for the x86 and arm
> > > machines
> > > so we can go back to following the distro versions. The
> reasons for
> > > these versions is mostly historical at this point as the issues
> > > were
> > > resolved.
> > >
> > > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > ---
> > > meta/conf/machine/include/x86/x86-base.inc | 1 -
> > > meta/conf/machine/qemuarm.conf | 4 ----
> > > meta/conf/machine/qemuarmv5.conf | 1 -
> > > 3 files changed, 6 deletions(-)
> > >
> > > diff --git a/meta/conf/machine/include/x86/x86-base.inc
> > > b/meta/conf/machine/include/x86/x86-base.inc
> > > index 050c20af70c..fc6c39148db 100644
> > > --- a/meta/conf/machine/include/x86/x86-base.inc
> > > +++ b/meta/conf/machine/include/x86/x86-base.inc
> > > @@ -18,7 +18,6 @@ SERIAL_CONSOLES ?= "115200;ttyS0"
> > > # kernel-related variables
> > > #
> > > PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
> > > -PREFERRED_VERSION_linux-yocto ??= "6.4%"
> > >
> > > #
> > > # XSERVER subcomponents, used to build the XSERVER variable
> > > diff --git a/meta/conf/machine/qemuarm.conf
> > > b/meta/conf/machine/qemuarm.conf
> > > index 04216cdc2e0..881733eb2da 100644
> > > --- a/meta/conf/machine/qemuarm.conf
> > > +++ b/meta/conf/machine/qemuarm.conf
> > > @@ -28,8 +28,4 @@ QB_ROOTFS_OPT = "-drive
> > > id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio
> > > QB_SERIAL_OPT = "-device virtio-serial-device -chardev
> > > null,id=virtcon -device virtconsole,chardev=virtcon"
> > > QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev
> > > socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device
> > > virtconsole,chardev=virtcon"
> > >
> > > -# 6.4 causes Xorg to fail to read the virtio framebuffer so stick
> > > with 6.1 until
> > > -# that is resolved.
> > > -PREFERRED_VERSION_linux-yocto ??= "6.1%"
> > > -
> > > KMACHINE:qemuarm = "qemuarma15"
> > > diff --git a/meta/conf/machine/qemuarmv5.conf
> > > b/meta/conf/machine/qemuarmv5.conf
> > > index deb4869c0aa..f0a86f1e4c7 100644
> > > --- a/meta/conf/machine/qemuarmv5.conf
> > > +++ b/meta/conf/machine/qemuarmv5.conf
> > > @@ -16,5 +16,4 @@ QB_GRAPHICS = "-device virtio-gpu-pci"
> > > QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device
> usb-
> > > kbd"
> > > QB_DTB =
> > >
> "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto',
> > > '4.7', '', 'zImage-versatile-pb.dtb', d)}"
> > >
> > >
> >
> > Removing this bit results in the above line causing an
> > ExpansionError, since
> > PREFERRED_VERSION_linux-yocto isnt defined anywhere anymore (if not
> > using poky.conf)
> >
> > What would be the right approach to solve this issue?, Should QB_DTB
> > be depending on such variable?
>
> 4.7 is old enough we can probably just drop the conditional now?
>
>
> Yep, that should be safe. It hasn't changed name or format in quite
> some time.
>
> (Although there has been some re-organization in 6.5/6.6 around device
> trees, but that shouldn't come into play here).
>
> Bruce
>
>
> Cheers,
>
> Richard
>
Great, thanks for the pointers, sending patch.
Alejandro
>
>
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#188973):https://lists.openembedded.org/g/openembedded-core/message/188973
> Mute This Topic:https://lists.openembedded.org/mt/101795562/4354175
> Group Owner:openembedded-core+owner@lists.openembedded.org
> Unsubscribe:https://lists.openembedded.org/g/openembedded-core/unsub [alhe@linux.microsoft.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
[-- Attachment #2: Type: text/html, Size: 9365 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-10-13 16:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-06 11:36 [PATCH 1/2] cryptodev: Update to latest git for 6.5 kernel fixes Richard Purdie
2023-10-06 11:36 ` [PATCH 2/2] qemux86/qemuarm: Drop kernel version overrides Richard Purdie
2023-10-11 1:11 ` [OE-core] " Alejandro Enedino Hernandez Samaniego
2023-10-11 21:39 ` Richard Purdie
2023-10-11 21:54 ` Bruce Ashfield
2023-10-13 16:21 ` Alejandro Enedino Hernandez Samaniego
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.