diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-08-27 14:10:06 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-30 09:56:13 +0100 |
commit | 33182628b23ca837915fb17a65cc877694f25457 (patch) | |
tree | 1cf9ce638d2202b017788acf97d285678211f6a5 | |
parent | ca098d172823a01e7b1a0d105304a4731c8cd321 (diff) | |
download | poky-33182628b23ca837915fb17a65cc877694f25457.tar.gz |
core-image-ptest: Define a fallback for SUMMARY field
Fixes errors like below seen with bitbake core-image-ptest-fast
WARNING: core-image-ptest-apr-util-1.0-r0 do_recipe_qa: QA Issue: Recipe core-image-ptest-apr-util in /mnt/b/yoe/master/sources/poky/meta/recipes-core/images/core-image-ptest.bb does not contain a SUMMARY. Please a
dd an entry. [missing-metadata]
(From OE-Core rev: 307381c9267eb3a3e687c577a0afd552d44248f7)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/images/core-image-ptest.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/images/core-image-ptest.bb b/meta/recipes-core/images/core-image-ptest.bb index 74cf933b72..b81ab7b7c8 100644 --- a/meta/recipes-core/images/core-image-ptest.bb +++ b/meta/recipes-core/images/core-image-ptest.bb | |||
@@ -5,6 +5,7 @@ require core-image-minimal.bb | |||
5 | require conf/distro/include/ptest-packagelists.inc | 5 | require conf/distro/include/ptest-packagelists.inc |
6 | 6 | ||
7 | DESCRIPTION += "Also including the ${MCNAME} ptest package." | 7 | DESCRIPTION += "Also including the ${MCNAME} ptest package." |
8 | SUMMARY ?= "${MCNAME} ptest image." | ||
8 | HOMEPAGE = "https://www.yoctoproject.org/" | 9 | HOMEPAGE = "https://www.yoctoproject.org/" |
9 | 10 | ||
10 | PTESTS = "${PTESTS_SLOW} ${PTESTS_FAST}" | 11 | PTESTS = "${PTESTS_SLOW} ${PTESTS_FAST}" |