All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH] qemu-system-native: Tweak whitespace handling
@ 2026-03-12 17:02 Richard Purdie
  2026-03-12 17:31 ` Bruce Ashfield
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2026-03-12 17:02 UTC (permalink / raw)
  To: meta-virtualization

Avoid a yocto-check-layer issue:

   qemu-system-native:do_recipe_qa: 05c723e48cb4253cb80f1e5dcb63767b266c72cf8a83d3d7ff36a6622e43eb50 -> 7f42888db4f5572303288c58ad79c5267fa81da05a3a71288f91f309b50ed614
      bitbake-diffsigs --task qemu-system-native do_recipe_qa --signature 05c723e48cb4253cb80f1e5dcb63767b266c72cf8a83d3d7ff36a6622e43eb50 7f42888db4f5572303288c58ad79c5267fa81da05a3a71288f91f309b50ed614
      NOTE: Reconnecting to bitbake server...
      basehash changed from 1b770ad4a9b79d38c928331d17651d3d66a6ebc45822c336d7ab98bfa8ebfd94 to 6bc5e5507534603aa6f6ab862ab27ef9c0b9ffcfaa9922d7ef25cb563fab6ab9
      Variable PACKAGECONFIG value changed:
      "fdt alsa kvm pie slirp png pixman sdl     virglrenderer epoxy  {++}" (whitespace changed)

but moving the whitespace into the added option.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 recipes-devtools/qemu/qemu-system-native_%.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/qemu/qemu-system-native_%.bbappend b/recipes-devtools/qemu/qemu-system-native_%.bbappend
index b04b6934..1b77db02 100644
--- a/recipes-devtools/qemu/qemu-system-native_%.bbappend
+++ b/recipes-devtools/qemu/qemu-system-native_%.bbappend
@@ -9,4 +9,4 @@
 # The layer.conf propagates virtualization to DISTRO_FEATURES_NATIVE when
 # vcontainer or virtualization is in the target DISTRO_FEATURES.
 
-PACKAGECONFIG:append = " ${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'virtualization', 'virtfs', '', d)}"
+PACKAGECONFIG:append = "${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'virtualization', ' virtfs', '', d)}"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [meta-virtualization] [PATCH] qemu-system-native: Tweak whitespace handling
  2026-03-12 17:02 [meta-virtualization] [PATCH] qemu-system-native: Tweak whitespace handling Richard Purdie
@ 2026-03-12 17:31 ` Bruce Ashfield
  0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2026-03-12 17:31 UTC (permalink / raw)
  To: richard.purdie; +Cc: meta-virtualization

In message: [meta-virtualization] [PATCH] qemu-system-native: Tweak whitespace handling
on 12/03/2026 Richard Purdie via lists.yoctoproject.org wrote:

> Avoid a yocto-check-layer issue:
> 
>    qemu-system-native:do_recipe_qa: 05c723e48cb4253cb80f1e5dcb63767b266c72cf8a83d3d7ff36a6622e43eb50 -> 7f42888db4f5572303288c58ad79c5267fa81da05a3a71288f91f309b50ed614
>       bitbake-diffsigs --task qemu-system-native do_recipe_qa --signature 05c723e48cb4253cb80f1e5dcb63767b266c72cf8a83d3d7ff36a6622e43eb50 7f42888db4f5572303288c58ad79c5267fa81da05a3a71288f91f309b50ed614
>       NOTE: Reconnecting to bitbake server...
>       basehash changed from 1b770ad4a9b79d38c928331d17651d3d66a6ebc45822c336d7ab98bfa8ebfd94 to 6bc5e5507534603aa6f6ab862ab27ef9c0b9ffcfaa9922d7ef25cb563fab6ab9
>       Variable PACKAGECONFIG value changed:
>       "fdt alsa kvm pie slirp png pixman sdl     virglrenderer epoxy  {++}" (whitespace changed)
> 
> but moving the whitespace into the added option.

merged.

And I've pushed another change, that should get meta-virt passing
check layer again.

Bruce

> 
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>  recipes-devtools/qemu/qemu-system-native_%.bbappend | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-devtools/qemu/qemu-system-native_%.bbappend b/recipes-devtools/qemu/qemu-system-native_%.bbappend
> index b04b6934..1b77db02 100644
> --- a/recipes-devtools/qemu/qemu-system-native_%.bbappend
> +++ b/recipes-devtools/qemu/qemu-system-native_%.bbappend
> @@ -9,4 +9,4 @@
>  # The layer.conf propagates virtualization to DISTRO_FEATURES_NATIVE when
>  # vcontainer or virtualization is in the target DISTRO_FEATURES.
>  
> -PACKAGECONFIG:append = " ${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'virtualization', 'virtfs', '', d)}"
> +PACKAGECONFIG:append = "${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'virtualization', ' virtfs', '', d)}"

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#9649): https://lists.yoctoproject.org/g/meta-virtualization/message/9649
> Mute This Topic: https://lists.yoctoproject.org/mt/118282685/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-03-12 17:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-12 17:02 [meta-virtualization] [PATCH] qemu-system-native: Tweak whitespace handling Richard Purdie
2026-03-12 17:31 ` 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.