All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/21] meta: add missing summaries for image recipes
@ 2023-07-27 14:36 Alexander Kanavin
  2023-07-27 14:36 ` [PATCH 02/21] insane.bbclass: add do_recipe_qa task Alexander Kanavin
                   ` (19 more replies)
  0 siblings, 20 replies; 35+ messages in thread
From: Alexander Kanavin @ 2023-07-27 14:36 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/recipes-core/images/core-image-minimal-initramfs.bb        | 1 +
 meta/recipes-core/images/core-image-tiny-initramfs.bb           | 1 +
 meta/recipes-core/ovmf/ovmf-shell-image.bb                      | 2 +-
 meta/recipes-extended/images/core-image-full-cmdline.bb         | 2 +-
 .../images/core-image-testcontroller-initramfs.bb               | 2 +-
 meta/recipes-extended/images/core-image-testcontroller.bb       | 2 +-
 meta/recipes-sato/images/core-image-sato.bb                     | 1 +
 7 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-core/images/core-image-minimal-initramfs.bb b/meta/recipes-core/images/core-image-minimal-initramfs.bb
index 0b51187d516..1c08c7fec62 100644
--- a/meta/recipes-core/images/core-image-minimal-initramfs.bb
+++ b/meta/recipes-core/images/core-image-minimal-initramfs.bb
@@ -1,4 +1,5 @@
 # Simple initramfs image. Mostly used for live images.
+SUMMARY = "Small image capable of booting a device."
 DESCRIPTION = "Small image capable of booting a device. The kernel includes \
 the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \
 first 'init' program more efficiently."
diff --git a/meta/recipes-core/images/core-image-tiny-initramfs.bb b/meta/recipes-core/images/core-image-tiny-initramfs.bb
index a1883de0ebe..96b56a2f59b 100644
--- a/meta/recipes-core/images/core-image-tiny-initramfs.bb
+++ b/meta/recipes-core/images/core-image-tiny-initramfs.bb
@@ -1,4 +1,5 @@
 # Simple initramfs image artifact generation for tiny images.
+SUMMARY = "Tiny image capable of booting a device."
 DESCRIPTION = "Tiny image capable of booting a device. The kernel includes \
 the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \
 first 'init' program more efficiently. core-image-tiny-initramfs doesn't \
diff --git a/meta/recipes-core/ovmf/ovmf-shell-image.bb b/meta/recipes-core/ovmf/ovmf-shell-image.bb
index 50c4517da39..4d7958eb5fa 100644
--- a/meta/recipes-core/ovmf/ovmf-shell-image.bb
+++ b/meta/recipes-core/ovmf/ovmf-shell-image.bb
@@ -1,4 +1,4 @@
-DESCRIPTION = "boot image with UEFI shell and tools"
+SUMMARY = "boot image with UEFI shell and tools"
 COMPATIBLE_HOST:class-target='(i.86|x86_64).*'
 
 # For this image recipe, only the wic format with a
diff --git a/meta/recipes-extended/images/core-image-full-cmdline.bb b/meta/recipes-extended/images/core-image-full-cmdline.bb
index 4d69073d9dc..4e1cf58d55b 100644
--- a/meta/recipes-extended/images/core-image-full-cmdline.bb
+++ b/meta/recipes-extended/images/core-image-full-cmdline.bb
@@ -1,4 +1,4 @@
-DESCRIPTION = "A console-only image with more full-featured Linux system \
+SUMMARY = "A console-only image with more full-featured Linux system \
 functionality installed."
 
 IMAGE_FEATURES += "splash ssh-server-openssh"
diff --git a/meta/recipes-extended/images/core-image-testcontroller-initramfs.bb b/meta/recipes-extended/images/core-image-testcontroller-initramfs.bb
index 2bc035a538d..a5b3d10205c 100644
--- a/meta/recipes-extended/images/core-image-testcontroller-initramfs.bb
+++ b/meta/recipes-extended/images/core-image-testcontroller-initramfs.bb
@@ -1,4 +1,4 @@
-DESCRIPTION = "Small image capable of booting a device with custom install scripts, \
+SUMMARY = "Small image capable of booting a device with custom install scripts, \
 adding a second rootfs, used for testing."
 
 # use -testfs live-install scripts
diff --git a/meta/recipes-extended/images/core-image-testcontroller.bb b/meta/recipes-extended/images/core-image-testcontroller.bb
index 20edbd5630c..ff79bde0c5d 100644
--- a/meta/recipes-extended/images/core-image-testcontroller.bb
+++ b/meta/recipes-extended/images/core-image-testcontroller.bb
@@ -1,4 +1,4 @@
-DESCRIPTION = "A test controller image to be deployed on a target useful for testing other images using the OEQA runtime tests"
+SUMMARY = "A test controller image to be deployed on a target useful for testing other images using the OEQA runtime tests"
 
 IMAGE_FEATURES += "ssh-server-openssh package-management"
 
diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb
index e63a229d125..9200ae54401 100644
--- a/meta/recipes-sato/images/core-image-sato.bb
+++ b/meta/recipes-sato/images/core-image-sato.bb
@@ -1,3 +1,4 @@
+SUMMARY = "Image with Sato, a mobile environment and visual style for mobile devices."
 DESCRIPTION = "Image with Sato, a mobile environment and visual style for \
 mobile devices. The image supports X11 with a Sato theme, Pimlico \
 applications, and contains terminal, editor, and file manager."
-- 
2.30.2



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

end of thread, other threads:[~2023-07-31  8:11 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-27 14:36 [PATCH 01/21] meta: add missing summaries for image recipes Alexander Kanavin
2023-07-27 14:36 ` [PATCH 02/21] insane.bbclass: add do_recipe_qa task Alexander Kanavin
2023-07-27 14:36 ` [PATCH 03/21] devtool: do not run recipe_qa task when extracting source Alexander Kanavin
2023-07-27 14:36 ` [PATCH 04/21] insane.bbclass: add a SUMMARY/HOMEPAGE check (oe-core recipes only) Alexander Kanavin
2023-07-27 14:36 ` [PATCH 05/21] insane.bbclass: add a RECIPE_MAINTAINER " Alexander Kanavin
2023-07-27 14:36 ` [PATCH 06/21] librsvg: fix upstream version check Alexander Kanavin
2023-07-27 14:36 ` [PATCH 07/21] acpica: tarball and homepage relocated to intel.com Alexander Kanavin
2023-07-27 14:36 ` [PATCH 08/21] gnu-efi: upgrade 3.0.15 -> 3.0.17 Alexander Kanavin
2023-07-27 16:09   ` [OE-core] " Khem Raj
2023-07-28 10:57     ` Alexander Kanavin
2023-07-28 14:44       ` Khem Raj
2023-07-28 14:47         ` Alexander Kanavin
2023-07-28 14:48           ` Khem Raj
2023-07-27 14:36 ` [PATCH 09/21] gettext-minimal-native: obtain the needed files directly from gettext source tarball Alexander Kanavin
2023-07-27 14:36 ` [PATCH 10/21] kbd: upgrade 2.6.0 -> 2.6.1 Alexander Kanavin
2023-07-27 14:36 ` [PATCH 11/21] systemd: upgrade 253.3 -> 253.7 Alexander Kanavin
2023-07-27 14:36 ` [PATCH 12/21] util-linux: upgrade 2.38.1 -> 2.39.1 Alexander Kanavin
2023-07-28 13:13   ` [OE-core] " Alexandre Belloni
2023-07-28 13:38     ` Alexander Kanavin
     [not found]     ` <17760BA193C3A223.27447@lists.openembedded.org>
2023-07-28 15:25       ` Alexander Kanavin
2023-07-30 20:36         ` Alexandre Belloni
2023-07-31  5:59           ` Alexander Kanavin
     [not found]           ` <1776DE5455DFB899.15684@lists.openembedded.org>
2023-07-31  7:35             ` Alexander Kanavin
     [not found]             ` <1776E39D10B7A347.29388@lists.openembedded.org>
2023-07-31  8:10               ` Alexander Kanavin
2023-07-27 14:36 ` [PATCH 13/21] jquery: upgrade 3.6.3 -> 3.7.0 Alexander Kanavin
2023-07-27 14:36 ` [PATCH 14/21] strace: upgrade 6.3 -> 6.4 Alexander Kanavin
2023-07-27 14:36 ` [PATCH 15/21] sudo: update 1.9.13p3 -> 1.9.14p2 Alexander Kanavin
2023-07-27 14:36 ` [PATCH 16/21] libadwaita: add recipe from meta-gnome Alexander Kanavin
2023-07-27 16:12   ` [OE-core] " Khem Raj
2023-07-28 10:59     ` Alexander Kanavin
2023-07-27 14:36 ` [PATCH 17/21] epiphany: upgrade 43.1 -> 44.5 Alexander Kanavin
2023-07-27 14:36 ` [PATCH 18/21] glibc-locale: use stricter matching for metapackages' runtime dependencies Alexander Kanavin
2023-07-27 14:36 ` [PATCH 19/21] uninative-tarball: install the full set of gconv modules Alexander Kanavin
2023-07-27 14:36 ` [PATCH 20/21] buildtools-extended-tarball: " Alexander Kanavin
2023-07-27 14:36 ` [PATCH 21/21] procps: address failure with gettext 0.22 Alexander Kanavin

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.